/* ============================================================================
   LinkdSys — Public Pages & Homepage Stylesheet
   ============================================================================ */

/* ─── VARIABLES ────────────────────────────────────────────────────── */
:root {
  --ls-blue:        #0077B5;
  --ls-blue-dark:   #005A8C;
  --ls-blue-deeper: #003D5E;
  --ls-accent:      #00A0DC;
  --ls-bg:          #F8FAFC;
  --ls-white:       #FFFFFF;
  --ls-text:        #1B2432;
  --ls-text-light:  #64748B;
  --ls-border:      #E2E8F0;
  --ls-radius:      12px;
  --ls-radius-lg:   20px;
  --ls-shadow:      0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --ls-shadow-lg:   0 10px 40px rgba(10,102,194,.12), 0 4px 12px rgba(0,0,0,.06);
  --ls-shadow-xl:   0 20px 60px rgba(10,102,194,.15), 0 8px 24px rgba(0,0,0,.08);
  --ls-font:        'Inter', -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ls-transition:  0.3s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET / BASE ─────────────────────────────────────────────────── */
.public-page {
  font-family: var(--ls-font);
  background: var(--ls-bg);
  color: var(--ls-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.public-page *,
.public-page *::before,
.public-page *::after {
  box-sizing: border-box;
}

/* ============================================================================
   PUBLIC NAVBAR
   ============================================================================ */
.pub-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--ls-transition);
}

.pub-nav--scrolled {
  border-bottom-color: var(--ls-border);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}

.pub-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.pub-nav__logo {
  flex-shrink: 0;
}

.pub-nav__logo img {
  display: block;
  height: 36px;
  width: auto;
}

.pub-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.pub-nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--ls-text);
  text-decoration: none;
  transition: color var(--ls-transition);
  position: relative;
}

.pub-nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--ls-blue);
  border-radius: 1px;
  transition: width var(--ls-transition);
}

.pub-nav__link:hover {
  color: var(--ls-blue);
  text-decoration: none;
}

.pub-nav__link:hover::after {
  width: 100%;
}

.pub-nav__link--login {
  color: var(--ls-blue);
  font-weight: 600;
}

.pub-nav__btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--ls-transition);
}

.pub-nav__btn--primary {
  background: linear-gradient(135deg, var(--ls-blue), var(--ls-blue-dark));
  color: white;
  box-shadow: 0 2px 8px rgba(10,102,194,.3);
}

.pub-nav__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10,102,194,.4);
  color: white;
  text-decoration: none;
}

/* Hamburger */
.pub-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.pub-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ls-text);
  border-radius: 2px;
  transition: var(--ls-transition);
}

.pub-nav__toggle--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.pub-nav__toggle--active span:nth-child(2) { opacity: 0; }
.pub-nav__toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero {
  position: relative;
  padding: 160px 24px 100px;
  background: linear-gradient(160deg, var(--ls-blue-deeper) 0%, var(--ls-blue-dark) 30%, var(--ls-blue) 100%);
  overflow: hidden;
  text-align: center;
}

/* Animated background mesh */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,160,220,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(0,65,130,.3) 0%, transparent 50%);
}

/* Floating dot grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00D26A;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(135deg, #00D26A, #00A0DC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 20px;
  color: rgba(255,255,255,.75);
  margin: 0 0 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--ls-transition);
  border: none;
  cursor: pointer;
}

.hero__btn--primary {
  background: white;
  color: var(--ls-blue-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  text-decoration: none;
  color: var(--ls-blue-dark);
}

.hero__btn--secondary {
  background: rgba(255,255,255,.1);
  color: white;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}

.hero__btn--secondary:hover {
  background: rgba(255,255,255,.18);
  text-decoration: none;
  color: white;
}

/* Trust bar */
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero__stat {
  text-align: center;
}

.hero__stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: white;
}

.hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* ============================================================================
   SOCIAL PROOF BAR
   ============================================================================ */
.social-proof {
  padding: 48px 24px;
  text-align: center;
  background: white;
  border-bottom: 1px solid var(--ls-border);
}

.social-proof p {
  font-size: 14px;
  color: var(--ls-text-light);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.social-proof__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: .4;
}

.social-proof__logos span {
  font-size: 18px;
  font-weight: 700;
  color: var(--ls-text);
  letter-spacing: .5px;
}

/* ============================================================================
   FEATURES / TOOLS GRID
   ============================================================================ */
.section {
  padding: 100px 24px;
}

.section--gray {
  background: var(--ls-bg);
}

.section--white {
  background: white;
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ls-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section__title {
  font-size: 40px;
  font-weight: 800;
  color: var(--ls-text);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -.5px;
}

.section__desc {
  font-size: 18px;
  color: var(--ls-text-light);
  line-height: 1.6;
  margin: 0;
}

/* Tools grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tool-card {
  background: white;
  border: 1px solid var(--ls-border);
  border-radius: var(--ls-radius-lg);
  padding: 36px 28px;
  transition: all var(--ls-transition);
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ls-blue), var(--ls-accent));
  opacity: 0;
  transition: opacity var(--ls-transition);
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ls-shadow-xl);
  border-color: transparent;
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(10,102,194,.08), rgba(0,160,220,.06));
}

.tool-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ls-text);
  margin: 0 0 10px;
}

.tool-card__desc {
  font-size: 14px;
  color: var(--ls-text-light);
  line-height: 1.6;
  margin: 0 0 20px;
}

.tool-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.tool-card__tag--free {
  background: #ECFDF5;
  color: #059669;
}

.tool-card__tag--pro {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E;
}

/* ============================================================================
   HOW IT WORKS
   ============================================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  counter-reset: step;
}

.step {
  text-align: center;
  counter-increment: step;
  position: relative;
}

.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ls-blue), var(--ls-blue-dark));
  color: white;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(10,102,194,.3);
}

.step__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ls-text);
  margin: 0 0 10px;
}

.step__desc {
  font-size: 15px;
  color: var(--ls-text-light);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================================
   STATS BAR
   ============================================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--ls-blue-dark), var(--ls-blue));
  padding: 64px 24px;
}

.stats-bar__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.stats-bar__item {
  text-align: center;
}

.stats-bar__num {
  font-size: 44px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.stats-bar__label {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */
.cta-section {
  padding: 100px 24px;
  text-align: center;
  background: var(--ls-bg);
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--ls-blue-deeper), var(--ls-blue-dark), var(--ls-blue));
  border-radius: var(--ls-radius-lg);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0,160,220,.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.05) 0%, transparent 40%);
}

.cta-box__content {
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin: 0 0 16px;
  line-height: 1.2;
}

.cta-box p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin: 0 0 32px;
}

.cta-box .hero__btn--primary {
  font-size: 17px;
  padding: 18px 42px;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.pub-footer {
  background: var(--ls-text);
  color: rgba(255,255,255,.7);
  padding: 64px 24px 0;
}

.pub-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.pub-footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0;
  color: rgba(255,255,255,.5);
}

.pub-footer__logo img {
  filter: brightness(0) invert(1);
  opacity: .9;
  height: 30px;
  width: auto;
}

.pub-footer__social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.pub-footer__social a {
  color: rgba(255,255,255,.45);
  transition: color var(--ls-transition);
}

.pub-footer__social a:hover {
  color: white;
}

.pub-footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pub-footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  padding: 5px 0;
  transition: color var(--ls-transition);
}

.pub-footer__col a:hover {
  color: white;
  text-decoration: none;
}

.pub-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.pub-footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin: 0;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 44px;
  }
  .section__title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  /* Navbar */
  .pub-nav__toggle {
    display: flex;
    margin-left: auto;
  }

  .pub-nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--ls-border);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }

  .pub-nav__links--open {
    display: flex;
  }

  .pub-nav__btn {
    text-align: center;
    justify-content: center;
  }

  /* Hero */
  .hero {
    padding: 130px 20px 70px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero__sub {
    font-size: 17px;
  }

  .hero__trust {
    gap: 24px;
  }

  .hero__stat-num {
    font-size: 22px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__btn {
    width: 100%;
    justify-content: center;
  }

  /* Grid */
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Footer */
  .pub-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pub-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Section */
  .section {
    padding: 60px 20px;
  }

  .section__header {
    margin-bottom: 40px;
  }

  .stats-bar__num {
    font-size: 32px;
  }

  .stats-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .cta-box h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero__trust {
    flex-direction: column;
    gap: 16px;
  }

  .stats-bar__inner {
    flex-direction: column;
  }
}

/* ============================================================================
   AUTH PAGES (Login, Register, Forgot, Reset, Verify)
   ============================================================================ */
.auth-page {
  padding-top: 72px;
}

.auth-wrapper {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: linear-gradient(160deg, var(--ls-bg) 0%, #EEF2F7 100%);
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: white;
  border-radius: var(--ls-radius-lg);
  box-shadow: var(--ls-shadow-lg);
  padding: 48px 40px;
}

.auth-card__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  text-decoration: none;
}

.auth-card__logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--ls-blue), var(--ls-blue-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: 800;
}

.auth-card__logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--ls-text);
}

.auth-card__tagline {
  font-size: 14px;
  color: var(--ls-text-light);
  margin-bottom: 32px;
}

.auth-card__linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--ls-blue), var(--ls-blue-dark));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ls-transition);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(10,102,194,.25);
}

.auth-card__linkedin:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10,102,194,.35);
  color: white;
  text-decoration: none;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--ls-text-light);
  font-size: 13px;
  font-weight: 500;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ls-border);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ls-text);
  margin-bottom: 6px;
}

.auth-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--ls-border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ls-text);
  transition: all var(--ls-transition);
  background: var(--ls-bg);
}

.auth-field input:focus {
  border-color: var(--ls-blue);
  box-shadow: 0 0 0 3px rgba(10,102,194,.1);
  background: white;
  outline: none;
}

.auth-field input::placeholder {
  color: #94A3B8;
}

.auth-extras {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.auth-extras a {
  color: var(--ls-blue);
  font-weight: 600;
  text-decoration: none;
}

.auth-extras a:hover {
  text-decoration: underline;
}

.auth-extras label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--ls-text-light);
  font-size: 13px;
  margin: 0;
}

.auth-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--ls-blue), var(--ls-blue-dark));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ls-transition);
  box-shadow: 0 2px 8px rgba(10,102,194,.25);
}

.auth-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10,102,194,.35);
}

.auth-footer {
  text-align: center;
  font-size: 13px;
  color: var(--ls-text-light);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--ls-border);
}

.auth-footer a {
  color: var(--ls-blue);
  font-weight: 700;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.auth-alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
}

.auth-alert--error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
}

.auth-alert--success {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #16A34A;
}

/* ============================================================================
   CONTENT PAGES (About, Contact, Support, Privacy, Terms)
   ============================================================================ */
.content-page {
  padding-top: 72px;
}

.content-hero {
  background: linear-gradient(160deg, var(--ls-blue-deeper), var(--ls-blue-dark), var(--ls-blue));
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.content-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(0,160,220,.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.04) 0%, transparent 40%);
}

.content-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.content-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: white;
  margin: 0 0 16px;
  letter-spacing: -.5px;
}

.content-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin: 0;
  line-height: 1.6;
}

.content-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}

.content-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ls-text);
  margin: 40px 0 16px;
}

.content-body h2:first-child {
  margin-top: 0;
}

.content-body p,
.content-body li {
  font-size: 16px;
  color: var(--ls-text-light);
  line-height: 1.7;
}

.content-body ul {
  padding-left: 24px;
  margin: 16px 0;
}

.content-body li {
  margin-bottom: 8px;
}

/* Contact / Support form card */
.form-card {
  background: white;
  border-radius: var(--ls-radius-lg);
  box-shadow: var(--ls-shadow-lg);
  padding: 48px 40px;
  max-width: 640px;
  margin: -40px auto 0;
  position: relative;
  z-index: 5;
}

.form-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ls-text);
  margin: 0 0 8px;
}

.form-card .form-desc {
  font-size: 15px;
  color: var(--ls-text-light);
  margin: 0 0 32px;
}

/* About page team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  background: white;
  border: 1px solid var(--ls-border);
  border-radius: var(--ls-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--ls-transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ls-shadow-lg);
}

.team-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(10,102,194,.1), rgba(0,160,220,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
  color: var(--ls-blue);
  font-weight: 700;
}

.team-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--ls-text);
  margin: 0 0 4px;
}

.team-card__role {
  font-size: 14px;
  color: var(--ls-blue);
  font-weight: 600;
  margin: 0 0 12px;
}

.team-card__desc {
  font-size: 14px;
  color: var(--ls-text-light);
  line-height: 1.5;
  margin: 0;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  gap: 16px;
}

.value-item__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(10,102,194,.08), rgba(0,160,220,.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.value-item__text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ls-text);
  margin: 0 0 4px;
}

.value-item__text p {
  font-size: 14px;
  color: var(--ls-text-light);
  margin: 0;
  line-height: 1.5;
}

/* Pricing page */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle span {
  font-size: 14px;
  color: var(--ls-text-light);
  font-weight: 500;
}

.pricing-toggle__switch {
  position: relative;
  width: 50px; height: 28px;
  background: var(--ls-blue);
  border-radius: 20px;
  cursor: pointer;
  border: none;
  padding: 0;
}

.pricing-toggle__switch::after {
  content: '';
  position: absolute;
  top: 2px; right: 2px;
  width: 24px; height: 24px;
  background: white;
  border-radius: 50%;
  transition: var(--ls-transition);
}

.pricing-toggle__switch.monthly::after {
  right: auto;
  left: 2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background: white;
  border: 1px solid var(--ls-border);
  border-radius: var(--ls-radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--ls-transition);
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ls-shadow-xl);
}

.price-card--featured {
  border: 2px solid var(--ls-blue);
  transform: scale(1.04);
  box-shadow: var(--ls-shadow-lg);
}

.price-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.price-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--ls-blue), var(--ls-blue-dark));
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--ls-text);
  margin: 0 0 8px;
}

.price-card__desc {
  font-size: 14px;
  color: var(--ls-text-light);
  margin: 0 0 24px;
}

.price-card__amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--ls-blue);
  margin: 0;
  line-height: 1;
}

.price-card__period {
  font-size: 15px;
  color: var(--ls-text-light);
  font-weight: 400;
  margin-bottom: 24px;
  display: block;
}

.price-card__btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all var(--ls-transition);
  margin-bottom: 32px;
  border: none;
  cursor: pointer;
}

.price-card__btn--primary {
  background: linear-gradient(135deg, var(--ls-blue), var(--ls-blue-dark));
  color: white;
  box-shadow: 0 2px 8px rgba(10,102,194,.25);
}

.price-card__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10,102,194,.35);
  color: white;
  text-decoration: none;
}

.price-card__btn--outline {
  background: white;
  color: var(--ls-blue);
  border: 2px solid var(--ls-blue);
}

.price-card__btn--outline:hover {
  background: rgba(10,102,194,.04);
  color: var(--ls-blue);
  text-decoration: none;
}

.price-card__features {
  text-align: left;
  border-top: 1px solid var(--ls-border);
  padding-top: 24px;
  list-style: none;
  margin: 0;
  padding-left: 0;
  padding-top: 24px;
}

.price-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ls-text);
  padding: 8px 0;
}

.price-card__features li.disabled {
  color: var(--ls-text-light);
  opacity: .5;
}

.price-card__features .check {
  color: #059669;
  font-weight: 700;
  font-size: 16px;
}

.price-card__features .cross {
  color: #CBD5E1;
  font-weight: 700;
  font-size: 16px;
}

/* FAQ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 1px solid var(--ls-border);
  border-radius: var(--ls-radius);
  padding: 24px;
  cursor: pointer;
  transition: all var(--ls-transition);
}

.faq-item:hover {
  box-shadow: var(--ls-shadow);
}

.faq-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ls-text);
  margin: 0 0 8px;
}

.faq-item p {
  font-size: 14px;
  color: var(--ls-text-light);
  margin: 0;
  line-height: 1.6;
}

/* Tools page hero */
.tools-hero {
  background: linear-gradient(160deg, var(--ls-blue-deeper), var(--ls-blue-dark), var(--ls-blue));
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tools-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,160,220,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 40%);
}

.tools-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.tools-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin: 0 0 16px;
  letter-spacing: -.5px;
}

.tools-hero p {
  font-size: 20px;
  color: rgba(255,255,255,.75);
  margin: 0;
  line-height: 1.6;
}

/* Tools categories */
.tools-category {
  margin-bottom: 64px;
}

.tools-category h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ls-text);
  margin: 0 0 8px;
}

.tools-category > p {
  font-size: 16px;
  color: var(--ls-text-light);
  margin: 0 0 32px;
}

/* Tool card link overlay */
.tool-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.tool-card--link:hover {
  text-decoration: none;
  color: inherit;
}

.tool-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ls-blue);
  margin-top: 8px;
}

.tool-card__cta svg {
  transition: transform var(--ls-transition);
}

.tool-card:hover .tool-card__cta svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }
  .content-hero h1 { font-size: 32px; }
  .tools-hero h1 { font-size: 34px; }
  .form-card { padding: 32px 24px; margin-top: -24px; }
  .auth-card { padding: 32px 24px; }
}
