:root {
  --bg: #f3f1ea;
  --bg-soft: #fbf8f2;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #10233f;
  --muted: #667085;
  --line: rgba(12, 35, 64, 0.12);
  --navy: #0c2340;
  --navy-soft: #16375d;
  --navy-deep: #081728;
  --amber: #c99700;
  --amber-bright: #ffcd00;
  --amber-strong: #ac8400;
  --amber-glow: #f5d086;
  --ring-soft: rgba(201, 151, 0, 0.25);
  --shadow-soft: 0 12px 36px rgba(12, 35, 64, 0.08);
  --shadow-card: 0 20px 50px rgba(12, 35, 64, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --content-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 10%, rgba(201, 151, 0, 0.24), transparent 28%),
    radial-gradient(circle at 12% 22%, rgba(12, 35, 64, 0.08), transparent 24%),
    radial-gradient(circle at 5% 92%, rgba(12, 35, 64, 0.07), transparent 26%),
    linear-gradient(160deg, #fcfbf7 0%, #f5f0e3 46%, var(--bg) 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: min(100% - 2rem, var(--content-width));
  margin: 0 auto;
  padding-bottom: 3rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: rgba(252, 251, 247, 0.8);
  border-bottom: 1px solid rgba(12, 35, 64, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(201, 151, 0, 0.18));
}

.brand-words {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem;
  border: 1px solid rgba(12, 35, 64, 0.07);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 24px rgba(12, 35, 64, 0.05);
}

.nav a {
  padding: 0.58rem 0.95rem;
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.nav a:hover,
.nav a.is-current {
  color: var(--text);
  background: rgba(12, 35, 64, 0.08);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 0;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.nav-cta,
.button-primary {
  color: var(--navy);
  background: linear-gradient(110deg, var(--amber-strong), var(--amber), var(--amber-bright));
  box-shadow: 0 12px 26px rgba(172, 132, 0, 0.24);
  font-weight: 700;
}

.nav-login {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy) !important;
  font-weight: 700;
}

.nav-login:hover {
  background: rgba(255, 255, 255, 0.96) !important;
}

.nav-cta {
  padding: 0.85rem 1.25rem;
}

.button {
  min-height: 3.15rem;
  padding: 0.92rem 1.4rem;
  font-weight: 700;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
}

.stacked-actions {
  display: grid;
  gap: 0.85rem;
}

.hero,
.page-hero {
  position: relative;
  padding: 5rem 0 2.5rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1.5rem;
  align-items: stretch;
}

.page-hero {
  max-width: 58rem;
}

.hero-copy,
.hero-card-panel,
.service-card,
.benefit-card,
.review-card,
.contact-card,
.process-card,
.detail-card,
.faq-card,
.request-form {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 3rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 251, 243, 0.84));
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 151, 0, 0.18), transparent 66%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-strong);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 7vw, 5.9rem);
}

.page-hero h1 {
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.4rem;
}

.hero-text,
.section-heading p,
.service-card p,
.benefit-card p,
.review-card p,
.contact-card p,
.process-card p,
.detail-card p,
.faq-card p,
.footer p,
.proof-card span {
  color: var(--muted);
  line-height: 1.6;
}

.hero-text {
  max-width: 60ch;
  margin: 1.5rem 0 0;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.hero-highlights,
.detail-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 600;
}

.hero-highlights li::before,
.detail-list li::before {
  content: "";
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  margin-right: 0.7rem;
  border-radius: 50%;
  background: var(--amber);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.proof-card {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(12, 35, 64, 0.09);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.56);
}

.proof-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  color: var(--navy);
}

.hero-card {
  display: flex;
}

.hero-card-panel {
  width: 100%;
  padding: 2.1rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 205, 0, 0.12), transparent 28%),
    linear-gradient(160deg, #112b48 0%, var(--navy-deep) 100%);
  color: #f0ede4;
  border-color: rgba(201, 151, 0, 0.22);
  box-shadow: var(--shadow-card);
}

.hero-card-panel h2,
.hero-card-panel p,
.hero-card-panel span {
  color: inherit;
}

.hero-card-logo {
  height: 3.3rem;
  width: auto;
  max-width: 17rem;
  margin-bottom: 1.75rem;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.16));
}

.panel-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.42rem 0.78rem;
  border-radius: var(--radius-pill);
  background: rgba(201, 151, 0, 0.15);
  border: 1px solid rgba(201, 151, 0, 0.25);
  color: var(--amber-glow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.stat-grid article {
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.stat-grid strong {
  display: block;
  font-size: 1.18rem;
  color: var(--amber-glow);
}

.stat-grid span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(240, 237, 228, 0.7);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.54);
  text-align: center;
  font-weight: 700;
  color: var(--navy);
}

.section {
  padding: 5rem 0 0;
}

.section-alt {
  margin-top: 5rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(12, 35, 64, 0.05) 0%, rgba(201, 151, 0, 0.08) 100%);
  border: 1px solid rgba(12, 35, 64, 0.08);
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.section-heading.compact {
  margin-bottom: 1.5rem;
}

.service-grid,
.review-grid,
.process-grid,
.service-detail-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

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

.founder-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1.25rem;
  align-items: stretch;
}

.founder-card {
  padding: 1.75rem;
  border: 1px solid rgba(12, 35, 64, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 205, 0, 0.12), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 238, 0.88));
  box-shadow: var(--shadow-soft);
}

.founder-quote {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--navy);
}

.product-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-shot-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.product-shot-wide {
  grid-column: 1 / -1;
}

.product-shot img {
  width: 100%;
  height: auto;
  background: rgba(12, 35, 64, 0.04);
}

.product-shot figcaption {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.1rem 1.15rem;
}

.product-shot figcaption strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  color: var(--navy);
}

.product-shot figcaption span {
  color: var(--muted);
  line-height: 1.55;
}

.service-card,
.benefit-card,
.review-card,
.contact-card,
.process-card,
.detail-card,
.faq-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.benefit-card:hover,
.review-card:hover,
.contact-card:hover,
.process-card:hover,
.detail-card:hover,
.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(12, 35, 64, 0.11);
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.5rem;
  align-items: start;
}

.benefit-list {
  display: grid;
  gap: 1rem;
}

.process-card {
  background: rgba(255, 255, 255, 0.66);
}

.process-number {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(201, 151, 0, 0.1);
  border: 1px solid rgba(201, 151, 0, 0.2);
  color: var(--amber-strong);
  font-weight: 700;
}

.plan-price {
  margin: 0.75rem 0 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}

.review-card footer {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--text);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.area-pill {
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-weight: 700;
}

.cta-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.contact-phone {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.contact-card-strong {
  background:
    radial-gradient(circle at top right, rgba(255, 205, 0, 0.12), transparent 30%),
    linear-gradient(160deg, #112b48 0%, var(--navy-deep) 100%);
  color: #f0ede4;
  border-color: rgba(201, 151, 0, 0.22);
}

.contact-card-strong p,
.contact-card-strong a,
.contact-card-strong span,
.contact-card-strong strong {
  color: inherit;
}

.contact-card-strong .contact-phone {
  color: var(--amber-glow);
}

.contact-card-strong .eyebrow {
  color: rgba(245, 208, 134, 0.72);
}

.contact-meta {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-meta strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.88);
}

.request-form-scheduler {
  grid-template-columns: 1fr;
}

.scheduler-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.request-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 700;
}

.request-form label.full,
.request-form .section-heading,
.request-form .form-actions,
.request-form .form-output {
  grid-column: 1 / -1;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: none;
  border-color: rgba(201, 151, 0, 0.45);
  box-shadow: 0 0 0 4px var(--ring-soft);
}

.request-form textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-output {
  min-height: 7rem;
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(12, 35, 64, 0.2);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted);
  white-space: pre-line;
}

.contact-card .detail-list {
  margin: 1rem 0 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(12, 35, 64, 0.08);
}

.footer p {
  margin: 0;
}

.footer-title {
  margin: 0 0 0.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero,
  .page-hero,
  .split-section,
  .cta-section,
  .contact-layout,
  .service-grid,
  .review-grid,
  .process-grid,
  .service-detail-grid,
  .founder-grid,
  .faq-list,
  .product-shot-grid,
  .product-shot-grid-two,
  .trust-band,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 1.25rem;
    background: rgba(255, 252, 245, 0.97);
    box-shadow: 0 16px 34px rgba(12, 35, 64, 0.08);
  }

  .nav-login,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav.is-open {
    display: flex;
  }

  .hero,
  .page-hero {
    padding-top: 2rem;
  }

  .hero-copy {
    padding: 2rem;
  }

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

  .product-shot-wide {
    grid-column: auto;
  }

  h1,
  .page-hero h1 {
    max-width: none;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 1rem, var(--content-width));
  }

  .brand-tagline {
    display: none;
  }

  .hero-copy,
  .hero-card-panel,
  .contact-card,
  .request-form,
  .section-alt {
    padding: 1.5rem;
  }

  .hero-actions,
  .form-actions,
  .footer-links {
    flex-direction: column;
  }

  .button,
  .button-secondary,
  .button-primary {
    width: 100%;
  }

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

  .request-form label,
  .request-form label.full,
  .request-form .section-heading,
  .request-form .form-actions,
  .request-form .form-output {
    grid-column: auto;
  }
}
