/* ===== COMPONENT STYLES ===== */
/* Based on professional_depth_theme_sample.html structure */

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(214, 222, 255, 0.38));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(118, 134, 193, 0.14);
  box-shadow: 0 18px 36px rgba(13, 18, 38, 0.07);
  transition: background var(--transition-slow), border-color var(--transition-slow), box-shadow var(--transition-slow);
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(248, 250, 255, 0.86), rgba(226, 232, 255, 0.62));
  border-bottom-color: rgba(98, 116, 186, 0.2);
  box-shadow: 0 22px 42px rgba(12, 18, 36, 0.12);
}


.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  min-height: 72px;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--text-dark);
  font-weight: 600;
}

.nav .cta-btn {
  color: #fff;
}

.mobile-menu .cta-btn {
  color: #fff;
}

/* ===== LOGO ===== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1;
}

.logo-image {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-small);
  background: var(--grad-gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

@media (max-width: 1024px) {
  header {
    min-height: 68px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(214, 222, 255, 0.34));
  }

  .nav {
    padding: 12px 0;
    gap: 14px;
  }
}

@media (max-width: 767px) {
  header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(206, 218, 255, 0.28));
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
  }

  .logo-image {
    height: 36px;
  }

  .nav {
    padding: 10px 0;
  }

  .nav .desktop-menu {
    display: none;
  }
}

/* ===== BUTTONS ===== */
.cta-btn {
  padding: 10px 16px;
  border-radius: 14px;
  background: var(--grad);
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(58, 102, 255, .25);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(58, 102, 255, .35);
}

.btn-outline {
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-medium);
  font-weight: 700;
  background: #fff;
  color: var(--text-dark);
  display: inline-block;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--grad-soft);
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding: 66px 0 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f6eeff;
  color: var(--brand-1);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .2px;
}

.headline {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.05;
  font-size: clamp(36px, 6vw, 60px);
  margin: 14px 0;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 56ch;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.mock {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #0f1226, #1b1f3b);
  box-shadow: var(--shadow);
  min-height: 340px;
  display: grid;
  place-items: center;
}

.mock .play {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  border: 3px solid rgba(245, 197, 66, .8);
  display: grid;
  place-items: center;
  animation: pulse 2.5s infinite;
  cursor: pointer;
}

.mock .play::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid var(--gold);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}

/* ===== SECTION HEADERS ===== */
.section-h {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
}

/* ===== ABOUT ===== */
.about-section .about-grid {
  align-items: center;
  gap: 40px;
}

.about-section .mock {
  min-height: 320px;
}

.about-media {
  order: 1;
}

.about-copy {
  order: 2;
}

@media (max-width: 767px) {
  .about-media {
    order: 2;
  }

  .about-copy {
    order: 1;
  }
}

.kicker {
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 14px;
}

.title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  margin: 6px 0 0;
}

/* ===== CARDS ===== */
.card {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
  background: rgba(230, 234, 241, 0.1);
}

.thumb {
  height: 160px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(106, 0, 255, .2), rgba(58, 102, 255, .2)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="400"><rect width="100%" height="100%" fill="%23f7f7fb"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-family="Arial" font-size="24" fill="%239aa1c7">Placeholder</text></svg>') center/cover no-repeat;
  margin-top: 14px;
}

.card h4 {
  margin: 14px 0 6px;
  font-weight: 800;
  color: var(--ink);
}

.card p {
  margin: 0;
  color: var(--muted);
}

/* ===== EXPERTISE BAND ===== */
.band {
  background: linear-gradient(90deg, rgba(106, 0, 255, .08), rgba(58, 102, 255, .08));
  border: 1px solid rgba(106, 0, 255, .15);
  padding: 16px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.pill {
  background: #fff;
  border: 1px dashed var(--border-light);
  border-radius: 999px;
  padding: 10px 12px;
  text-align: center;
  font-weight: 700;
  color: #1a1f45;
}

/* ===== PROCESS STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.step {
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.step .n {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.step h5 {
  margin: 10px 0 6px;
  color: var(--ink);
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* ===== PRICING ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tier {
  position: relative;
  border-radius: 22px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 26px;
  border: 1px solid var(--border-light);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #3b3006;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
}

.price {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -.5px;
  margin: 6px 0;
  color: var(--ink);
}

.ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0;
  color: var(--ink);
}

.ul li::before {
  content: "✓";
  font-weight: 900;
  color: var(--gold);
}

/* ===== CTA SECTION ===== */
.cta {
  background: var(--grad-cta);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(64px, 12vh, 120px) 0;
}

.cta .title {
  color: var(--text-dark);
  font-size: clamp(34px, 5vw, 48px);
}

.cta-wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: stretch;
}

.cta-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-eyebrow {
  background: rgba(15, 22, 45, 0.65);
  color: #f4f7ff;
  box-shadow: 0 10px 24px rgba(15, 22, 45, 0.25);
}

.cta-lead {
  color: var(--text-dark);
  font-size: 18px;
  max-width: 60ch;
}

.cta-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.cta-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(13, 23, 52, 0.95);
  font-weight: 600;
}

.cta-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(63, 92, 201, 0.24);
  color: #0d1d45;
  font-weight: 800;
}

.cta-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 22px 40px rgba(15, 18, 38, 0.12);
  border: 1px solid rgba(16, 24, 44, 0.05);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: #0f172f;
}

.metric-label {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 11px;
  color: rgba(28, 36, 72, 0.82);
}

.cta-box {
  background: var(--saturn-mid);
  border: 1px solid var(--gold);
  color: var(--ink);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow-strong);
  display: flex;
  flex-direction: column;
}

.cta-box h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--ink);
}

.cta-sub {
  margin: 0;
  color: #cfd3ff;
  font-weight: 500;
}

.cta-inputs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.input {
  flex: 1;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(149, 163, 219, 0.7);
  background: rgba(18, 27, 56, 0.58);
  color: #f5f7ff;
  font-family: var(--font-body);
  font-size: 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.input::placeholder {
  color: rgba(207, 213, 255, 0.7);
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

select.input {
  appearance: none;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.12), rgba(58, 102, 255, 0.12));
}

.cta-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(240, 244, 255, 0.88);
}

.cta-consent input {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  accent-color: var(--brand-1);
}

.cta-privacy {
  font-size: 13px;
  color: rgba(230, 234, 255, 0.78);
  margin: 6px 0 0;
  flex-basis: 100%;
}

.cta-privacy a {
  color: rgba(152, 178, 255, 0.95);
  font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  background: var(--saturn-dark);
  color: var(--ink);
  border-top: 1px solid var(--gold);
  padding: 72px 0 36px;
}

.foot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.foot h5 {
  margin: 0 0 10px;
  color: #fff;
}

.foot a {
  color: rgba(199, 204, 238, 0.9);
  display: block;
  margin-bottom: 8px;
  transition: var(--transition-fast);
}

.foot a:hover {
  color: var(--accent);
}

.foot-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.foot-links-grid div {
  display: grid;
  gap: 8px;
}

.foot-links-single {
  display: grid;
  gap: 8px;
}

.made {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c2c7ff;
}

.brand-badge strong {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #fff;
  display: block;
}

.brand-badge span {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(199, 204, 238, 0.65);
}

.foot-copy {
  color: #9aa1c7;
  max-width: 52ch;
  margin: 18px 0 26px;
  line-height: 1.7;
}

.foot-contact-grid {
  display: grid;
  gap: 18px;
}

.foot-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: rgba(199, 204, 238, 0.6);
  margin-bottom: 8px;
}

.foot-contact-grid address {
  font-style: normal;
  color: rgba(199, 204, 238, 0.9);
  line-height: 1.6;
}

.foot-contact-grid a {
  font-weight: 600;
}

.foot-social .social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(33, 45, 74, 0.85);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 1.6;
}

.social-link:hover {
  background: rgba(58, 102, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(58, 102, 255, 0.4);
}

.social-link:hover svg {
  stroke: #fff;
}

.social-link svg rect,
.social-link svg circle {
  fill: rgba(255, 255, 255, 0.14);
  stroke: none;
}

.foot-hours {
  color: rgba(199, 204, 238, 0.75);
  font-size: 13px;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 48px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #9aa1c7;
  font-size: 14px;
}

.foot-bottom-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.foot-bottom-right a {
  color: inherit;
  margin: 0;
}

.foot-status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: rgba(25, 32, 58, 0.75);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(199, 204, 238, 0.85);
}

.foot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #55d48a;
  box-shadow: 0 0 10px rgba(85, 212, 138, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 990px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .pricing {
    grid-template-columns: 1fr;
  }

  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .cta-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-points {
    grid-template-columns: 1fr;
  }

  .foot {
    grid-template-columns: 1fr 1fr;
  }

  .foot-links-grid {
    grid-template-columns: 1fr;
  }
  
  .band {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 620px) {
  .grid {
    grid-template-columns: 1fr;
  }

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

  .foot {
    grid-template-columns: 1fr;
  }
  
  .band {
    grid-template-columns: 1fr 1fr;
  }
  
  .section-h {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cta-metrics {
    grid-template-columns: 1fr;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}