/* overrides inline body{visibility:hidden} in <head> once this file loads */
body { visibility: visible !important; }

/*
  KUSUMA DIGITAL SOLUTIONS — MASTER STYLESHEET (styles.css)
  ─────────────────────────────────────────────────────────────────
  Author:      Built by Radha for Rana / Kusuma Digital Solutions
  Version:     1.0.0
  Approach:    Mobile-first. Base = 320px. Enhance up.
  Fonts:       Plus Jakarta Sans (headings) / Inter (body)
  Icons:       Lucide Icons via CDN
  Theme:       Load a theme-*.css BEFORE this file — it sets
               all --color-* variables. This file uses them.

  TABLE OF CONTENTS
  ─────────────────────────────────────────────────────────────────
  01. Design Tokens (non-color variables)
  02. Reset & Base
  03. Typography
  04. Layout Utilities
  05. Buttons
  06. Navigation
  07. Hero Section
  08. Trust Strip
  09. Services Section
  10. Why Us Section
  11. How It Works Section
  12. Testimonials Section
  13. Blog Teasers Section
  14. CTA Banner Section
  15. Footer
  16. Cookie Consent Banner
  17. Success Popup / Modal
  ─────────────────────────────────────────────────────────────────
  18. (removed — Amber theme is final)
  19. Animations & Keyframes
  20. Responsive — Tablet (min-width: 768px)
  21. Responsive — Desktop (min-width: 1024px)
  22. Accessibility & Focus States
  23. Print Styles
  ─────────────────────────────────────────────────────────────────
  24. Inner Page Hero
  25. Service Navigation Pills
  26. Service Detail Intro Block
  27. Pricing Cards
  28. Pricing Highlight
  29. FAQ Accordion
  ─────────────────────────────────────────────────────────────────
  30. About Page
  31. Contact Form Inputs
  32. Contact Page Layout & Booking
  33. Thank-You Page
  34. 404 Page
  ─────────────────────────────────────────────────────────────────
*/


/* ═══════════════════════════════════════════════════════════════
   01. DESIGN TOKENS (non-color — colors come from theme files)
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;    /*  12px */
  --text-sm:   0.875rem;   /*  14px */
  --text-base: 1rem;       /*  16px */
  --text-lg:   1.125rem;   /*  18px */
  --text-xl:   1.25rem;    /*  20px */
  --text-2xl:  1.5rem;     /*  24px */
  --text-3xl:  2rem;       /*  32px */
  --text-4xl:  2.75rem;    /*  44px */
  --text-5xl:  3.5rem;     /*  56px */

  /* Font weights */
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semi:    600;
  --weight-bold:    700;
  --weight-black:   800;

  /* Spacing scale (8px base) */
  --space-1:  0.25rem;   /*  4px */
  --space-2:  0.5rem;    /*  8px */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */

  /* Layout */
  --container-max:     1200px;
  --container-pad:     1.25rem;  /* mobile padding */

  /* Border radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.14);

  /* Transitions */
  --ease-fast:   150ms ease;
  --ease-base:   250ms ease;
  --ease-slow:   400ms ease;
  --ease-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Nav height (used for scroll-margin-top on anchor sections) */
  --nav-height: 72px;
}


/* ═══════════════════════════════════════════════════════════════
   02. RESET & BASE
   ═══════════════════════════════════════════════════════════════ */

/* Box model */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Prevent font size inflation on mobile orientation change */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-background);
  /* Prevent any element from causing horizontal page overflow */
  overflow-x: hidden;
  /* Smooth font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Media defaults */
img, video, svg, canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Lists */
ul, ol { list-style: none; }

/* Interactive */
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Form inputs */
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Heading line heights */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: var(--weight-bold);
  color: var(--color-text);
}

/* Horizontal rule */
hr {
  border: none;
  border-top: 1px solid var(--color-border);
}

/* Scroll offset for sticky nav — so anchors don't hide under the nav */
[id] {
  scroll-margin-top: calc(var(--nav-height) + var(--space-8));
}


/* ═══════════════════════════════════════════════════════════════
   03. TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */

.text-display {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--weight-black);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.text-h1 {
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  letter-spacing: -0.025em;
}

.text-h2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
}

.text-h3 {
  font-size: var(--text-2xl);
  font-weight: var(--weight-semi);
  letter-spacing: -0.01em;
}

.text-h4 {
  font-size: var(--text-xl);
  font-weight: var(--weight-semi);
}

.text-body-lg {
  font-size: var(--text-lg);
  line-height: 1.7;
}

.text-body {
  font-size: var(--text-base);
  line-height: 1.65;
}

.text-sm { font-size: var(--text-sm); }
.text-xs { font-size: var(--text-xs); }

.text-muted  { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }
.text-center { text-align: center; }
.text-upper  { text-transform: uppercase; letter-spacing: 0.08em; }

/* Section label — eyebrow text above headings */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}


/* ═══════════════════════════════════════════════════════════════
   04. LAYOUT UTILITIES
   ═══════════════════════════════════════════════════════════════ */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  width: 100%;
}

/* Standard section padding */
.section {
  padding-block: var(--space-16);
}

.section--sm { padding-block: var(--space-12); }
.section--lg { padding-block: var(--space-24); }

/* Dark section (hero background color, light text) */
.section--dark {
  background-color: var(--color-primary);
  color: var(--color-hero-text);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-hero-text);
}

/* Surface section (slightly off-white background) */
.section--surface { background-color: var(--color-surface); }

/* Section header (eyebrow + heading + optional subtext) */
.section-header {
  margin-bottom: var(--space-12);
}

.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.section-header p {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.6;
}

/* Grids */
.grid-2 { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: var(--space-6); grid-template-columns: repeat(2, 1fr); }


/* ═══════════════════════════════════════════════════════════════
   05. BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color var(--ease-base),
              color var(--ease-base),
              border-color var(--ease-base),
              transform var(--ease-spring),
              box-shadow var(--ease-base);
  white-space: nowrap;
  text-decoration: none;
  /* Minimum touch target — Apple standard 44px */
  min-height: 44px;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0px); }

/* Primary — accent color fill */
.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Ghost — transparent with hero-text border (for dark backgrounds) */
.btn-ghost {
  background-color: transparent;
  color: var(--color-hero-text);
  border-color: var(--color-hero-border);
}

.btn-ghost:hover {
  background-color: var(--color-hero-border);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Outline — on light backgrounds */
.btn-outline {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

/* Sizes */
.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: var(--text-xs);
  min-height: 36px;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--text-base);
  min-height: 52px;
}

/* Icon inside button */
.btn svg, .btn [data-lucide] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   06. NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  /* Start transparent — over the dark hero */
  background-color: transparent;
  transition: background-color var(--ease-base),
              border-color var(--ease-base),
              box-shadow var(--ease-base);
  border-bottom: 1px solid transparent;
}

/* State: user has scrolled past hero */
.nav--scrolled {
  background-color: var(--color-background);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

/* State: mobile menu is open (keep dark bg visible) */
.nav--menu-open { background-color: var(--color-background); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  width: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
  z-index: 1001;
  text-decoration: none;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-weight: var(--weight-black);
  font-size: var(--text-xl);
  letter-spacing: -0.03em;
  color: var(--color-hero-text);
  transition: color var(--ease-base);
}

.nav--scrolled .nav__logo-text,
.nav--menu-open .nav__logo-text {
  color: var(--color-text);
}

/* Desktop links (hidden on mobile) */
.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-hero-text);
  transition: color var(--ease-fast);
  opacity: 0.85;
}

.nav--scrolled .nav__link { color: var(--color-text-muted); opacity: 1; }

.nav__link:hover,
.nav__link.is-active {
  color: var(--color-accent);
  opacity: 1;
}

/* Nav CTA button */
.nav__cta {
  display: none;
}

/* Hamburger (mobile) */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  z-index: 1001;
  background: none;
  border: none;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-hero-text);
  border-radius: 2px;
  transition: transform var(--ease-base), opacity var(--ease-base), background-color var(--ease-base);
}

.nav--scrolled .nav__hamburger span,
.nav--menu-open .nav__hamburger span {
  background-color: var(--color-text);
}

/* Animated hamburger → X */
.nav--menu-open .nav__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav--menu-open .nav__hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav--menu-open .nav__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.nav__mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--color-background);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-base);
}

.nav__mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile-link {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  transition: color var(--ease-fast);
}

.nav__mobile-link:hover { color: var(--color-accent); }

.nav__mobile-divider {
  width: 40px;
  height: 2px;
  background-color: var(--color-border);
  margin-block: var(--space-2);
}

.nav__mobile-cta { margin-top: var(--space-4); }


/* ═══════════════════════════════════════════════════════════════
   07. HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  background-color: var(--color-hero-bg);
  color: var(--color-hero-text);
  padding-top: calc(var(--nav-height) + var(--space-20));
  padding-bottom: var(--space-20);
  overflow: hidden;
}

/* Decorative geometric element — large circle, CSS-only, no image needed */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60vw;
  max-width: 600px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-geo-accent) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Second geometric element — smaller, bottom-left */
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40vw;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-geo-accent) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

/* Location badge above headline */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-hero-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-hero-muted);
  margin-bottom: var(--space-6);
}

.hero__badge [data-lucide] {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
}

/* Main headline */
.hero__headline {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-hero-text);
  margin-bottom: var(--space-6);
}

/* Highlighted word in headline */
.hero__headline .accent { color: var(--color-accent); }

/* Subheadline */
.hero__sub {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--color-hero-muted);
  max-width: 580px;
  margin-bottom: var(--space-10);
}

/* CTA button group */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}


/* ═══════════════════════════════════════════════════════════════
   08. TRUST STRIP
   ═══════════════════════════════════════════════════════════════ */

.trust-strip {
  background-color: var(--color-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: var(--space-5);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--color-hero-muted);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-align: center;
}

/* Founding-rate promo pill inside the trust strip */
.trust-strip__promo {
  text-align: center;
  margin-top: var(--space-3);
}

.trust-strip__promo a {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  color: var(--color-accent);
  background-color: var(--color-accent-subtle);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  text-decoration: none;
  transition: background-color var(--ease-base), transform var(--ease-spring);
}

.trust-strip__promo a:hover {
  background-color: rgba(245, 158, 11, 0.25);
  transform: translateY(-1px);
}

.trust-strip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
  display: none;
}


/* ═══════════════════════════════════════════════════════════════
   09. SERVICES SECTION
   ═══════════════════════════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.service-card {
  padding: var(--space-8);
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-border);
  transition: border-left-color var(--ease-base),
              box-shadow var(--ease-base),
              transform var(--ease-spring);
  position: relative;
}

.service-card:hover {
  border-left-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.section--surface .service-card {
  background-color: var(--color-background);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--color-accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: background-color var(--ease-base), transform var(--ease-spring);
}

.service-card__icon [data-lucide] {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}

.service-card:hover .service-card__icon {
  background-color: var(--color-accent);
  transform: scale(1.08);
}

.service-card:hover .service-card__icon [data-lucide] {
  color: var(--color-primary);
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-semi);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  color: var(--color-accent);
  transition: gap var(--ease-fast);
}

.service-card__link:hover { gap: var(--space-3); }

.service-card__link [data-lucide] {
  width: 14px;
  height: 14px;
  transition: transform var(--ease-base);
}

.service-card:hover .service-card__link [data-lucide] {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .service-card:hover .service-card__icon,
  .service-card:hover .service-card__link [data-lucide] {
    transform: none;
  }
}


/* ═══════════════════════════════════════════════════════════════
   10. WHY US SECTION
   ═══════════════════════════════════════════════════════════════ */

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.why-item {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.why-item__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--color-accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item__icon [data-lucide] {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.why-item__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-semi);
  margin-bottom: var(--space-2);
}

.why-item__desc {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════════
   11. HOW IT WORKS SECTION
   ═══════════════════════════════════════════════════════════════ */

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

.step {
  padding: var(--space-8) 0;
  padding-left: var(--space-16);
  position: relative;
  border-left: 2px solid var(--color-border);
  margin-left: var(--space-6);
}

.step:last-child {
  border-left-color: transparent;
}

.step__number {
  position: absolute;
  left: calc(-1 * var(--space-6) - 1px);
  top: var(--space-8);
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: var(--weight-black);
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--color-background);
}

.step__icon {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.step__icon [data-lucide] {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
}

.step__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-semi);
  margin-bottom: var(--space-3);
}

.step__desc {
  color: var(--color-text-muted);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════════
   12. TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════════ */

.testimonials-placeholder {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-xl);
  max-width: 480px;
  margin-inline: auto;
}

.testimonials-placeholder [data-lucide] {
  width: 40px;
  height: 40px;
  color: var(--color-text-faint);
  margin-inline: auto;
  margin-bottom: var(--space-5);
}

.testimonials-placeholder p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.65;
}

.testimonials-placeholder strong {
  color: var(--color-text);
  font-weight: var(--weight-semi);
}


/* ═══════════════════════════════════════════════════════════════
   13. BLOG TEASERS SECTION
   ═══════════════════════════════════════════════════════════════ */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.blog-card {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--ease-base), transform var(--ease-spring);
}

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

.blog-card__img {
  height: 160px;
  background-color: var(--color-accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__img [data-lucide] {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  opacity: 0.5;
}

.blog-card__body {
  padding: var(--space-6);
}

.blog-card__tag {
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.blog-card__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-semi);
  line-height: 1.3;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
  transition: color var(--ease-fast);
}

.blog-card:hover .blog-card__title { color: var(--color-accent); }

.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  color: var(--color-accent);
  transition: gap var(--ease-fast);
}

.blog-card__read-more:hover { gap: var(--space-3); }
.blog-card__read-more [data-lucide] { width: 14px; height: 14px; }

/* Blog section bottom CTA */
.blog-cta {
  text-align: center;
  margin-top: var(--space-10);
}


/* ═══════════════════════════════════════════════════════════════
   14. CTA BANNER SECTION
   ═══════════════════════════════════════════════════════════════ */

.cta-banner {
  text-align: center;
  padding-block: var(--space-20);
  background-color: var(--color-primary);
  color: var(--color-hero-text);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-geo-accent) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__inner { position: relative; z-index: 1; }

.cta-banner__headline {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-black);
  letter-spacing: -0.025em;
  color: var(--color-hero-text);
  margin-bottom: var(--space-4);
}

.cta-banner__sub {
  font-size: var(--text-lg);
  color: var(--color-hero-muted);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

.cta-banner__note {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-hero-muted);
}


/* ═══════════════════════════════════════════════════════════════
   15. FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
  background-color: var(--color-primary);
  color: var(--color-hero-muted);
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand column */
.footer__brand-logo {
  font-family: var(--font-heading);
  font-weight: var(--weight-black);
  font-size: var(--text-xl);
  color: var(--color-hero-text);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}

.footer__brand-logo span { color: var(--color-accent); }

.footer__brand-tagline {
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
  transition: color var(--ease-fast);
}

.footer__contact-item:hover { color: var(--color-hero-text); }

.footer__contact-item [data-lucide] {
  width: 15px;
  height: 15px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Footer nav columns */
.footer__col-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-hero-text);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--color-hero-muted);
  transition: color var(--ease-fast);
}

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

/* Footer bottom bar */
.footer__bottom {
  padding-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-hero-muted);
  opacity: 0.6;
}

.footer__legal {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.footer__legal-link {
  font-size: var(--text-xs);
  color: var(--color-hero-muted);
  opacity: 0.6;
  transition: opacity var(--ease-fast), color var(--ease-fast);
}

.footer__legal-link:hover { opacity: 1; color: var(--color-accent); }


/* ═══════════════════════════════════════════════════════════════
   16. COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: var(--color-primary);
  color: var(--color-hero-muted);
  padding: var(--space-5) var(--space-6);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform var(--ease-slow);
}

.cookie-banner.is-visible { transform: translateY(0); }

.cookie-banner__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cookie-banner__text {
  font-size: var(--text-sm);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.cookie-banner__accept {
  padding: var(--space-2) var(--space-5);
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  cursor: pointer;
  border: none;
  font-family: inherit;
  min-height: 36px;
  transition: background-color var(--ease-fast);
}

.cookie-banner__accept:hover { background-color: var(--color-accent-dark); }

.cookie-banner__decline {
  padding: var(--space-2) var(--space-5);
  background-color: transparent;
  color: var(--color-hero-muted);
  border: 1px solid var(--color-hero-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  cursor: pointer;
  font-family: inherit;
  min-height: 36px;
  transition: color var(--ease-fast), border-color var(--ease-fast);
}

.cookie-banner__decline:hover {
  color: var(--color-hero-text);
  border-color: rgba(255, 255, 255, 0.3);
}


/* ═══════════════════════════════════════════════════════════════
   17. SUCCESS POPUP / MODAL
   ═══════════════════════════════════════════════════════════════ */

.popup {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-base);
}

.popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.popup__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.popup__card {
  position: relative;
  z-index: 1;
  background-color: var(--color-background);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-10);
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(10px);
  transition: transform var(--ease-spring);
}

.popup.is-visible .popup__card {
  transform: scale(1) translateY(0);
}

.popup__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.popup__icon [data-lucide] {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}

.popup__title {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-3);
}

.popup__message {
  color: var(--color-text-muted);
  line-height: 1.65;
  font-size: var(--text-base);
}



/* ═══════════════════════════════════════════════════════════════
   24. INNER PAGE HERO (compact variant for non-homepage pages)
   ═══════════════════════════════════════════════════════════════ */

.hero--sm {
  padding-top: calc(var(--nav-height) + var(--space-12));
  padding-bottom: var(--space-12);
}


/* ═══════════════════════════════════════════════════════════════
   25. SERVICE NAVIGATION PILLS
   ═══════════════════════════════════════════════════════════════ */

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.service-nav__link {
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  transition: color var(--ease-fast),
              border-color var(--ease-fast),
              background-color var(--ease-fast);
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

.service-nav__link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background-color: var(--color-accent-subtle);
}


/* ═══════════════════════════════════════════════════════════════
   26. SERVICE DETAIL INTRO BLOCK
   ═══════════════════════════════════════════════════════════════ */

.service-intro {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  margin-bottom: var(--space-10);
}

.service-intro__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background-color: var(--color-accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-intro__icon [data-lucide] {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.service-intro__content { flex: 1; }

.service-intro__desc {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 680px;
}

/* Feature list inside service intro */
.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--color-text-muted);
}

.service-feature [data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════════════
   27. PRICING CARDS (tiered pricing — 2 or 3 tiers)
   ═══════════════════════════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.pricing-card {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--ease-base), transform var(--ease-spring);
}

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

/* Featured tier — accent border */
.pricing-card--featured {
  border-color: var(--color-accent);
  border-width: 2px;
}

/* "Most Popular" / "Best Value" badge */
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Tier label e.g. "Starter" */
/* Founding client rate badge — present-tense claim, no fake former price */
.founding-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  background-color: var(--color-accent-subtle);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  margin-bottom: var(--space-3);
}

/* Founding-rate note — services hero + homepage services header */
.founding-note {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: var(--weight-semi);
  margin-top: var(--space-4);
}

.founding-note a {
  color: var(--color-accent);
  text-decoration: underline;
}

.founding-note a:hover { opacity: 0.8; }

.pricing-card__name {
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

/* Price number */
.pricing-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  color: var(--color-text);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* The + in from-pricing */
.pricing-card__price-from {
  font-size: var(--text-2xl);
  font-weight: var(--weight-semi);
  vertical-align: super;
}

/* Billing period */
.pricing-card__period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
  margin-bottom: var(--space-6);
}

/* Divider between price and feature list */
.pricing-card__divider {
  height: 1px;
  background-color: var(--color-border);
  margin-bottom: var(--space-6);
}

/* Feature list */
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
  margin-bottom: var(--space-8);
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--color-text-muted);
}

.pricing-card__feature [data-lucide] {
  width: 15px;
  height: 15px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Full-width CTA inside card */
.pricing-card .btn { width: 100%; }

/* Keep cards white on surface-background sections */
.section--surface .pricing-card { background-color: var(--color-background); }


/* ═══════════════════════════════════════════════════════════════
   28. PRICING HIGHLIGHT (single-price services)
   ═══════════════════════════════════════════════════════════════ */

.pricing-highlight {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-10);
}

.pricing-highlight__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding: var(--space-8);
  background-color: var(--color-background);
}

.pricing-highlight__price {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: var(--space-2);
}

.pricing-highlight__unit {
  font-size: var(--text-2xl);
  font-weight: var(--weight-semi);
}

.pricing-highlight__period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.pricing-highlight__note {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

/* Keep highlight white on surface-background sections */
.section--surface .pricing-highlight__inner { background-color: var(--color-background); }


/* ═══════════════════════════════════════════════════════════════
   29. FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 720px;
  margin-inline: auto;
  margin-top: var(--space-2);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--color-background);
  transition: box-shadow var(--ease-base);
}

.faq-item.is-open {
  box-shadow: inset 3px 0 0 var(--color-accent), var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-semi);
  text-align: left;
  cursor: pointer;
  border: none;
  transition: color var(--ease-fast), background-color var(--ease-fast);
  min-height: 44px;
}

.faq-question:hover { color: var(--color-accent); }

.faq-item.is-open .faq-question {
  color: var(--color-accent);
  background-color: var(--color-accent-subtle);
}

.faq-question [data-lucide] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform var(--ease-spring), color var(--ease-fast);
}

.faq-item.is-open .faq-question [data-lucide] {
  transform: rotate(180deg);
  color: var(--color-accent);
}

/* Height transition — smooth open/close */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.is-open .faq-answer { max-height: 600px; }

.faq-item.is-open .faq-answer__inner {
  opacity: 1;
  transform: none;
}

.faq-answer__inner {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
  padding: var(--space-5) var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
}


/* ═══════════════════════════════════════════════════════════════
   30. ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */

/* Opening story prose */
.about-story {
  max-width: 680px;
}

.about-story p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}

.about-story p:last-child { margin-bottom: 0; }

/* Three-value grid */
.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-top: var(--space-2);
}

.about-value {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.about-value__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--color-accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-value__icon [data-lucide] {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}

.about-value__title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semi);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.about-value__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Photo + working-with layout */
.about-work {
  display: block;
}

/* Low-key intro — round avatar + name (Option D) */
.about-avatar {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.about-avatar img {
  width: 132px;
  height: 132px;
  border-radius: var(--radius-full);
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--color-accent);
  flex-shrink: 0;
}

.about-avatar__who {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
  color: var(--color-text);
}

.about-avatar__who span {
  display: block;
  font-family: var(--font-body);
  color: var(--color-accent-dark);
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  margin-top: var(--space-1);
}

.accent-word { color: var(--color-accent); }

.about-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: var(--color-surface-2);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 380px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-8);
  color: var(--color-text-faint);
  text-align: center;
}

.about-photo__placeholder [data-lucide] {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

.about-photo__placeholder p {
  font-size: var(--text-sm);
  line-height: 1.5;
  opacity: 0.6;
}

.about-work__content {
  max-width: 860px;
  margin-inline: auto;
}

.about-work__content h3 {
  font-size: var(--text-2xl);
  font-weight: var(--weight-semi);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.about-work__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.about-work__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-muted);
}

.about-work__item [data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════════════
   31. CONTACT FORM INPUTS
   ═══════════════════════════════════════════════════════════════ */

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

/* Required field asterisk */
.form-label__req {
  color: var(--color-accent);
  margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
  display: block;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-surface-2);
  border-radius: var(--radius-md);
  background-color: var(--color-input-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.5;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  min-height: 48px;
  box-shadow: var(--shadow-xs);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-faint);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-subtle);
}

.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px var(--color-error-subtle);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

.form-select { cursor: pointer; }

/* Inline validation error (rendered by form.js) */
.field-error {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-2);
}

.form-hint {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
  line-height: 1.5;
}

/* Full-width submit */
.form-submit { width: 100%; justify-content: center; }

/* Contact preference checkboxes */
.form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.form-fieldset legend {
  display: block;
  width: 100%;
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-text);
  user-select: none;
  padding: var(--space-2) var(--space-4);
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--radius-full);
  transition: border-color var(--ease-fast), background-color var(--ease-fast);
  min-height: 36px;
}

.form-checkbox-label:hover {
  border-color: var(--color-accent);
  background-color: var(--color-accent-subtle);
}

.form-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* Sidebar "what to expect" list */
.contact-expect {
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}

.contact-expect__title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.contact-expect__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-expect__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.contact-expect__item [data-lucide] {
  width: 15px;
  height: 15px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════════════
   32. CONTACT PAGE LAYOUT & BOOKING CARD
   ═══════════════════════════════════════════════════════════════ */

/* Two-column layout: form | contact details */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: start;
}

/* Contact detail items in sidebar */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-detail {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--color-accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon [data-lucide] {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

.contact-detail__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semi);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.contact-detail__value {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--color-text);
  line-height: 1.4;
}

.contact-detail__value a {
  color: var(--color-accent);
  transition: opacity var(--ease-fast);
}

.contact-detail__value a:hover { opacity: 0.75; }

/* Booking card — Google Calendar appointment schedule */
.booking-card {
  max-width: 540px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
  padding: var(--space-12) var(--space-8);
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease-base), transform var(--ease-spring);
}

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

.booking-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--color-accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: booking-pulse 3s ease-in-out infinite;
}

.booking-card__icon [data-lucide] {
  width: 34px;
  height: 34px;
  color: var(--color-accent);
}

.booking-card__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-semi);
  letter-spacing: -0.01em;
}

.booking-card__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 380px;
}

.booking-card__hint {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

@keyframes booking-pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 var(--color-accent-subtle); }
  50%      { transform: scale(1.06); box-shadow: 0 0 0 12px rgba(245, 158, 11, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .booking-card__icon { animation: none; }
  .booking-card:hover { transform: none; }
}


/* ═══════════════════════════════════════════════════════════════
   33. THANK-YOU PAGE
   ═══════════════════════════════════════════════════════════════ */

.confirm-card {
  max-width: 540px;
  margin-inline: auto;
  text-align: center;
  padding: var(--space-12) var(--space-8);
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.confirm-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--color-accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.confirm-card__icon [data-lucide] {
  width: 36px;
  height: 36px;
  color: var(--color-accent);
}

.confirm-card__title {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.confirm-card__message {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-8);
}

.confirm-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}


/* ═══════════════════════════════════════════════════════════════
   34. 404 PAGE
   ═══════════════════════════════════════════════════════════════ */

.error-block {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
}

.error-code {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: var(--weight-black);
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-4);
}

.error-block__title {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.error-block__message {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-10);
}

.error-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}



/* ═══════════════════════════════════════════════════════════════
   35. PROSE / LEGAL CONTENT
       Used by: privacy.html  terms.html  blog posts (post-1/2/3)
   ═══════════════════════════════════════════════════════════════ */

.prose {
  max-width: 720px;
  margin-inline: auto;
}

.prose p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.prose h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.prose h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semi);
  color: var(--color-text);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.prose ul,
.prose ol {
  padding-left: var(--space-6);
  margin-bottom: var(--space-5);
}

.prose li {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.prose a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease-fast);
}

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

.prose strong {
  font-weight: var(--weight-semi);
  color: var(--color-text);
}

.prose-meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}

.prose-section-break {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-10) 0;
}


/* ═══════════════════════════════════════════════════════════════
   19. ANIMATIONS & KEYFRAMES
   ═══════════════════════════════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero staggered entrance */
.hero__badge     { animation: fadeUp 0.5s ease both; animation-delay: 0.05s; }
.hero__headline  { animation: fadeUp 0.6s ease both; animation-delay: 0.15s; }
.hero__sub       { animation: fadeUp 0.6s ease both; animation-delay: 0.28s; }
.hero__ctas      { animation: fadeUp 0.6s ease both; animation-delay: 0.40s; }

/* Scroll-triggered reveal (class added by IntersectionObserver in main.js) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* Reduce motion if user prefers */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}


/* ═══════════════════════════════════════════════════════════════
   20. RESPONSIVE — TABLET (min-width: 768px)
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  :root {
    --container-pad: 2rem;
  }

  /* Navigation */
  .nav__links { display: flex; }
  .nav__cta   { display: inline-flex; }
  .nav__hamburger { display: none; }

  /* Hero */
  .hero__headline { font-size: var(--text-5xl); }
  .hero__sub { font-size: var(--text-xl); }

  /* Trust strip */
  .trust-strip__dot { display: block; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why Us */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-10); }
  .why-item { flex-direction: column; }

  /* How It Works */
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    border-left: none;
  }
  .step {
    border-left: none;
    border-top: 2px solid var(--color-border);
    padding-top: var(--space-10);
    padding-left: 0;
    margin-left: 0;
  }
  .step:last-child { border-top-color: var(--color-border); }
  .step__number {
    left: 0;
    top: calc(-1 * var(--space-6));
    transform: translateY(-50%) translateX(0);
  }

  /* Blog grid */
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  /* Cookie banner */
  .cookie-banner__inner { flex-direction: row; align-items: center; }
  .cookie-banner__text  { flex: 1; }
  .cookie-banner__actions { flex-shrink: 0; }

  /* Footer */
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* CTA Banner */
  .cta-banner__headline { font-size: var(--text-4xl); }

  /* Pricing grids */
  .pricing-grid--2col { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid--3col { grid-template-columns: repeat(3, 1fr); }

  /* Pricing highlight — side by side on tablet+ */
  .pricing-highlight__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-10);
  }

  .pricing-highlight__left {
    flex-shrink: 0;
    min-width: 180px;
  }

  .pricing-highlight__right { flex: 1; }

  /* About page */
  .about-values { grid-template-columns: repeat(3, 1fr); }
  .about-work   { grid-template-columns: 300px 1fr; align-items: start; }

  /* Contact page */
  .contact-layout { grid-template-columns: 1fr 320px; }
}


/* ═══════════════════════════════════════════════════════════════
   21. RESPONSIVE — DESKTOP (min-width: 1024px)
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 1024px) {
  :root {
    --container-pad: 2.5rem;
  }

  /* Services */
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  /* Why Us */
  .why-grid { grid-template-columns: repeat(3, 1fr); }

  /* Blog */
  .blog-grid { grid-template-columns: repeat(3, 1fr); }

  /* Footer */
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

  /* About */
  /* Contact */
  .contact-layout { grid-template-columns: 1fr 340px; }
}


/* ═══════════════════════════════════════════════════════════════
   22. ACCESSIBILITY & FOCUS STATES
   ═══════════════════════════════════════════════════════════════ */

/* Remove default outline, add custom one */
:focus { outline: none; }

/* Keyboard focus ring — visible, branded */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Skip to main content link (keyboard users) */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-weight: var(--weight-semi);
  font-size: var(--text-sm);
  z-index: 9999;
  transition: top var(--ease-fast);
}

.skip-link:focus { top: var(--space-4); }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}



/* ═══════════════════════════════════════════════════════════════
   23. PRINT STYLES
   ═══════════════════════════════════════════════════════════════ */

@media print {
  /* Hide non-essential elements */
  .nav,
  .cookie-banner,
  .popup,
  .hero__ctas,
  .cta-banner,
  .blog-teasers { display: none !important; }

  /* Black text on white background */
  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  a { text-decoration: underline; color: #000; }

  /* Show URL after links */
  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 10pt;
    color: #555;
  }

  /* Avoid page breaks inside cards */
  .service-card,
  .blog-card,
  .why-item,
  .step { page-break-inside: avoid; }

  /* Remove shadows and transforms */
  * {
    box-shadow: none !important;
    transform: none !important;
  }
}
