/* =========================================================
   webstart.uk — styles
   Modern web-studio identity: Space Grotesk (display) + Inter
   (body), deep-navy ink, vivid indigo brand, mint accent.
   ========================================================= */

/* =========================================
   DESIGN TOKENS
   ========================================= */
:root {
  --bg:          #ffffff;
  --bg-soft:     #f6f7fb;
  --surface:     #ffffff;

  --ink:         #11132a;   /* headings / near-black navy */
  --ink-2:       #2a2d4a;
  --body:        #474c63;   /* body text */
  --muted:       #767c93;

  --brand:       #5a4bff;   /* vivid indigo */
  --brand-deep:  #4338ca;
  --brand-soft:  #eef0ff;
  --accent:      #12b886;   /* mint — "free" / success */
  --accent-soft: #e6f7f1;

  --dark:        #0e1020;   /* dark sections */
  --dark-2:      #171a31;

  --border:      #e7e9f2;
  --border-dark: rgba(255,255,255,0.10);

  --font-display:'Space Grotesk', system-ui, sans-serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --transition:  all 0.22s ease;
  --shadow-sm:   0 2px 14px rgba(17, 19, 42, 0.06);
  --shadow-md:   0 10px 34px rgba(17, 19, 42, 0.10);
  --shadow-lg:   0 24px 64px rgba(17, 19, 42, 0.16);
  --shadow-brand:0 16px 40px rgba(90, 75, 255, 0.28);
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav__logo span { color: var(--brand); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav__links a { color: var(--ink-2); transition: var(--transition); }
.nav__links a:not(.nav__cta):hover { color: var(--brand); }

.nav__cta {
  background: var(--brand);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: var(--shadow-brand);
  transition: var(--transition) !important;
}
.nav__cta:hover { background: var(--brand-deep); transform: translateY(-1px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: var(--transition);
}
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.mobile-link {
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--border);
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link--cta { color: var(--brand); font-weight: 600; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { background: var(--brand-deep); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn--light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.22);
}
.btn--light:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.btn--full { width: 100%; }
.btn--sm { padding: 10px 22px; font-size: 0.85rem; }

/* =========================================
   SECTION HEADERS
   ========================================= */
.section { padding: 100px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--dark); color: #cfd2e6; }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.section--dark .section-eyebrow { color: #9b8cff; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.section--dark .section-header h2 { color: #fff; }
.section-header p {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 1rem;
  color: var(--muted);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(90,75,255,0.10), transparent 70%),
    radial-gradient(50% 40% at 0% 100%, rgba(18,184,134,0.08), transparent 70%),
    var(--bg);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.4vw, 4.1rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero__title em { font-style: normal; color: var(--brand); }

.hero__sub {
  font-size: 1.12rem;
  color: var(--body);
  max-width: 500px;
  margin-bottom: 34px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.hero__trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust span::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* Hero visual — browser mockup */
.hero__visual { position: relative; }

.browser {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(1.4deg);
  transition: var(--transition);
}
.browser:hover { transform: rotate(0deg) translateY(-4px); }
.browser__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.browser__dot { width: 11px; height: 11px; border-radius: 50%; background: #d6d9e6; }
.browser__dot:nth-child(1) { background: #ff6058; }
.browser__dot:nth-child(2) { background: #ffbe2e; }
.browser__dot:nth-child(3) { background: #2aca44; }
.browser__url {
  margin-left: 10px;
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--muted);
  padding: 5px 14px;
}
.browser__body { padding: 26px; }
.browser__hero {
  height: 96px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--brand), #8b7bff);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.browser__hero::after {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.browser__line { height: 11px; border-radius: 6px; background: var(--bg-soft); margin-bottom: 10px; }
.browser__line--lg { width: 70%; height: 15px; background: #e2e4f0; }
.browser__line--sm { width: 45%; }
.browser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.browser__card { height: 54px; border-radius: 10px; background: var(--bg-soft); border: 1px solid var(--border); }

.hero__badge {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__badge strong { font-family: var(--font-display); font-size: 1.4rem; color: #fff; line-height: 1; }
.hero__badge span { font-size: 0.74rem; color: #b9bcd6; }
.hero__badge .hero__badge-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent); color: #06251a;
  display: grid; place-items: center; font-weight: 800;
}

/* =========================================
   LOGO / TRUST STRIP
   ========================================= */
.strip {
  background: var(--dark);
  padding: 30px 0;
}
.strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #9296b5;
}
.strip__inner strong { color: #fff; font-weight: 600; }

/* =========================================
   FEATURE / "WHAT I DO" CARDS
   ========================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #d6d3ff;
}
.feature-card__icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p { font-size: 0.92rem; color: var(--body); }

/* =========================================
   PROCESS (How it works)
   ========================================= */
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.process__step {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  transition: var(--transition);
}
.process__step:hover { transform: translateY(-4px); border-color: rgba(155,140,255,0.45); }
.process__num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #06251a;
  background: var(--accent);
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.process__step p { font-size: 0.9rem; color: #aeb2d0; }
.process__free {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(18,184,134,0.12);
  padding: 4px 10px;
  border-radius: 100px;
}
.process__note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.92rem;
  color: #9296b5;
}
.process__note a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* =========================================
   PROJECTS
   ========================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #d6d3ff;
}
.project-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}
.project-card__media img { width: 100%; height: 100%; object-fit: cover; }

/* Subtle brand tint over the project image on hover */
.project-card__media-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  transition: var(--transition);
}
.project-card:hover .project-card__media-shade { background: rgba(90, 75, 255, 0.06); }
.project-card__media--empty {
  display: grid;
  place-items: center;
  background: linear-gradient(120deg, var(--brand-soft), #f2f0ff);
}
.project-card__media--empty span {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand);
  opacity: 0.5;
}
.project-card__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.project-card__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.project-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: 4px 10px;
  border-radius: 100px;
}
.project-card h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.project-card p { font-size: 0.92rem; color: var(--body); margin-bottom: 18px; flex: 1; }
.project-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
  align-self: flex-start;
}
.project-card__link:hover { color: var(--brand-deep); }

.project-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 24px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--muted);
}
.project-empty a { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.projects-more {
  text-align: center;
  margin-top: 48px;
}
.projects-more p {
  max-width: 540px;
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: 0.96rem;
}

/* =========================================
   FEATURED CASE STUDY (consultancy)
   ========================================= */
.case {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
}
.case__media {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 11;
}
.case__body { padding: 8px 18px 8px 6px; }
.case__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.case__body p { color: var(--body); font-size: 0.97rem; margin-bottom: 18px; }
.case__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: var(--body);
}
.case__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
@media (max-width: 760px) {
  .case { grid-template-columns: 1fr; gap: 24px; }
  .case__body { padding: 4px 10px 12px; }
}

/* =========================================
   PRICE TEASER (homepage)
   ========================================= */
.price-teaser {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.price-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  text-align: center;
  transition: var(--transition);
}
.price-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-pill__label { font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; }
.price-pill__amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-pill__amount small { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.price-pill--accent .price-pill__amount { color: var(--accent); }

/* =========================================
   PRICING PAGE — TABLE
   ========================================= */
.ptable-group { margin-bottom: 56px; }
.ptable-group__head { margin-bottom: 22px; }
.ptable-group__head h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.ptable-group__head p { font-size: 0.92rem; color: var(--muted); margin-top: 4px; }

.ptable {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  transition: var(--transition);
}
.prow:hover { box-shadow: var(--shadow-sm); border-color: #d6d3ff; }
.prow--free { background: var(--accent-soft); border-color: #c4ecde; }
.prow__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.prow__note { font-size: 0.88rem; color: var(--muted); }
.prow__price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-align: right;
}
.prow__price small { font-size: 0.8rem; font-weight: 500; color: var(--muted); }
.prow--free .prow__price { color: var(--accent); }

.pricing-promise {
  background: var(--dark);
  color: #cfd2e6;
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.pricing-promise h2 { font-family: var(--font-display); font-size: 1.6rem; color: #fff; margin-bottom: 12px; }
.pricing-promise p { font-size: 0.96rem; color: #aeb2d0; margin-bottom: 24px; }

/* =========================================
   FAQ
   ========================================= */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q { display: block; margin: 0; }
.faq__btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: var(--transition);
}
.faq__btn:hover { color: var(--brand); }
.faq__btn::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq__btn[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq__a.open { max-height: 340px; padding-bottom: 22px; }
.faq__a p { font-size: 0.95rem; color: var(--body); }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner { padding: 90px 0; }
.cta-banner__inner {
  background: linear-gradient(125deg, var(--brand), var(--brand-deep));
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
}
.cta-banner__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  position: relative;
}
.cta-banner__inner p { font-size: 1.02rem; color: rgba(255,255,255,0.9); margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; }
.cta-banner .btn--primary { background: #fff; color: var(--brand-deep); box-shadow: none; position: relative; }
.cta-banner .btn--primary:hover { background: #f0efff; }

/* =========================================
   PAGE HEADER (inner pages)
   ========================================= */
.page-head {
  padding: 150px 0 60px;
  text-align: center;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(90,75,255,0.08), transparent 70%),
    var(--bg);
}
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.page-head p {
  max-width: 580px;
  margin: 18px auto 0;
  font-size: 1.05rem;
  color: var(--muted);
}

/* =========================================
   ABOUT
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.about-portrait {
  background: linear-gradient(135deg, var(--brand-soft), #f2f0ff);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  position: sticky;
  top: 100px;
}
.about-portrait span {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--brand);
  opacity: 0.55;
}
.about-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin: 32px 0 12px;
  letter-spacing: -0.02em;
}
.about-body h2:first-child { margin-top: 0; }
.about-body p { font-size: 1rem; color: var(--body); margin-bottom: 16px; }
.about-body a { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.about-values { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.about-value { display: flex; gap: 14px; align-items: flex-start; }
.about-value__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 8px; }
.about-value strong { display: block; color: var(--ink); font-size: 0.96rem; }
.about-value span { font-size: 0.9rem; color: var(--muted); }

/* =========================================
   CONTACT + FORMS
   ========================================= */
.contact-tabs {
  display: flex;
  gap: 4px;
  margin: 0 auto 40px;
  max-width: 420px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px;
}
.contact-tab {
  flex: 1;
  padding: 11px 20px;
  border: none;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--muted);
}
.contact-tab:hover { color: var(--ink); }
.contact-tab.active { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }

.contact-tab-panel { display: none; animation: fadeUp 0.3s ease; }
.contact-tab-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.contact__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact__text h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.contact__text > p { font-size: 0.98rem; color: var(--muted); margin-bottom: 28px; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.contact__detail svg { color: var(--brand); flex-shrink: 0; }
.contact__detail a:hover { color: var(--brand); }
.contact__trust { display: flex; flex-direction: column; gap: 18px; }
.contact__trust-item { display: flex; gap: 14px; align-items: flex-start; }
.contact__trust-item .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 7px; }
.contact__trust-item strong { display: block; color: var(--ink); font-size: 0.92rem; }
.contact__trust-item span { font-size: 0.86rem; color: var(--muted); }

.contact__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-group label { font-size: 0.84rem; font-weight: 600; color: var(--ink); }
.form-group label .opt { font-weight: 400; color: var(--muted); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg-soft);
  transition: var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(90, 75, 255, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab; }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-status { min-height: 1.4em; margin-top: 10px; text-align: center; font-size: 0.88rem; }
.form-status.is-success { color: var(--accent); font-weight: 500; }
.form-status.is-error { color: #e0364f; font-weight: 500; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 12px; }

/* =========================================
   QUOTE CALCULATOR
   ========================================= */
.calc-intro { font-size: 0.98rem; color: var(--muted); max-width: 580px; margin: 0 auto 8px; text-align: center; }

.calc-steps { margin: 44px 0 36px; }
.calc-steps__track {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 620px;
  margin: 0 auto;
}
.calc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.calc-step__num {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--muted);
  background: var(--surface);
  transition: var(--transition);
}
.calc-step__label { font-size: 0.74rem; font-weight: 600; color: var(--muted); transition: var(--transition); }
.calc-step.active .calc-step__num,
.calc-step.completed .calc-step__num { background: var(--brand); border-color: var(--brand); color: #fff; }
.calc-step.active .calc-step__label,
.calc-step.completed .calc-step__label { color: var(--ink); }
.calc-step__line { flex: 1; height: 2px; background: var(--border); min-width: 24px; margin: 0 8px 22px; transition: var(--transition); }
.calc-step__line.filled { background: var(--brand); }

.calc-panels { max-width: 680px; margin: 0 auto; }
.calc-panel { display: none; animation: fadeUp 0.3s ease; }
.calc-panel.active { display: block; }
.calc-panel__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.calc-panel__desc { font-size: 0.92rem; color: var(--muted); margin-bottom: 28px; }

/* stepper / option rows */
.calc-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.calc-row__info { flex: 1; min-width: 180px; }
.calc-row__info strong { display: block; font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.calc-row__info span { font-size: 0.86rem; color: var(--muted); }
.calc-row__price { font-family: var(--font-display); font-weight: 700; color: var(--brand); font-size: 1.05rem; white-space: nowrap; }
.calc-row--included {
  background: var(--accent-soft);
  border-color: #c4ecde;
}
.calc-row--included .calc-row__price { color: var(--accent); }

.calc-stepper {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
}
.calc-stepper__btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--surface);
  color: var(--brand);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.calc-stepper__btn:hover { background: var(--brand); color: #fff; }
.calc-stepper__value { min-width: 30px; text-align: center; font-weight: 700; color: var(--ink); }

/* toggle */
.calc-toggle { display: flex; align-items: center; gap: 14px; cursor: pointer; }
.calc-toggle input { display: none; }
.calc-toggle__track { width: 46px; height: 26px; background: var(--border); border-radius: 13px; position: relative; transition: var(--transition); flex-shrink: 0; }
.calc-toggle__thumb { width: 20px; height: 20px; background: #fff; border-radius: 50%; position: absolute; top: 3px; left: 3px; transition: var(--transition); box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.calc-toggle input:checked ~ .calc-toggle__track { background: var(--accent); }
.calc-toggle input:checked ~ .calc-toggle__track .calc-toggle__thumb { left: 23px; }

/* summary */
.calc-summary { margin-bottom: 30px; }
.calc-summary__table { width: 100%; border-collapse: collapse; }
.calc-summary__table th {
  text-align: left;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 2px solid var(--border);
}
.calc-summary__table th:last-child { text-align: right; }
.calc-summary__table td { padding: 13px 0; font-size: 0.92rem; color: var(--body); border-bottom: 1px solid var(--border); }
.calc-summary__table td:last-child { text-align: right; font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.calc-rec { font-size: 0.74rem; color: var(--muted); font-weight: 500; }

.calc-totals { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 30px; }
.calc-total-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  background: var(--surface);
}
.calc-total-card--accent { background: var(--brand-soft); border-color: #d6d3ff; }
.calc-total-card span { font-size: 0.8rem; color: var(--muted); display: block; margin-bottom: 6px; }
.calc-total-card strong { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.calc-total-card--accent strong { color: var(--brand-deep); }

.calc-quote-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.calc-quote-form__heading { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 20px; }

.calc-nav {
  max-width: 680px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.calc-running { display: flex; align-items: baseline; gap: 14px; font-size: 0.84rem; color: var(--muted); }
.calc-running b { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); font-weight: 700; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--dark); padding: 64px 0 32px; color: #9296b5; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border-dark);
}
.footer__brand .nav__logo { color: #fff; }
.footer__brand .nav__logo span { color: #9b8cff; }
.footer__brand p { margin-top: 14px; font-size: 0.9rem; color: #8488a8; max-width: 280px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6d7194;
  margin-bottom: 6px;
}
.footer__links a { font-size: 0.9rem; color: #9296b5; transition: var(--transition); }
.footer__links a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 0.84rem;
  color: #6d7194;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: #fff; }

/* =========================================
   LEGAL PAGES
   ========================================= */
.legal-page { padding: 140px 0 80px; background: var(--bg-soft); }
.legal-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
  box-shadow: var(--shadow-sm);
}
.legal-eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.legal-card h1 {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.legal-updated { font-size: 0.86rem; color: var(--muted); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.legal-card h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-card p { font-size: 0.96rem; color: var(--body); margin-bottom: 16px; }
.legal-card a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.legal-card ul { padding: 0; margin-bottom: 16px; }
.legal-card ul li {
  font-size: 0.96rem;
  color: var(--body);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.legal-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero { padding-top: 120px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 460px; }

  .process__steps { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-portrait { position: static; max-width: 320px; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .form-row { grid-template-columns: 1fr; }
  .calc-totals { grid-template-columns: 1fr; }
  .contact__form { padding: 26px 20px; }
  .calc-step__label { display: none; }
  .calc-step__line { margin-bottom: 0; }
  .prow { grid-template-columns: 1fr; gap: 12px; }
  .prow__price { text-align: left; }
  .calc-nav { flex-wrap: wrap; justify-content: center; }
  .calc-running { order: -1; width: 100%; justify-content: center; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }

  .legal-card { padding: 36px 24px; }
  .hero__badge { left: 12px; bottom: 12px; }
}
