/* ===================================================
   ZONEWISE HOME — Single-Domain Build
   css/main.css

   Architecture note — future subdomain extraction:
   ─────────────────────────────────────────────────
   Color tokens are scoped to three section wrapper
   classes: .section--lighting, .section--irrigation,
   .section--iot  (not to :root).

   To extract a section to its own standalone subdomain:
     1. Create a per-site theme.css
     2. Copy the matching "══ SECTION: X ══" block below
     3. Change the selector from .section--X  to  :root
     4. All component classes (svc-hero, benefit-card, btn,
        etc.) will pick up the right colors with zero HTML changes
   =================================================== */


/* ── 1. GLOBAL DESIGN TOKENS (:root) ───────────────────────────── */
:root {
  /* Base / global palette — used by main hero, nav, footer, contact form */
  --color-primary:        #1E293B;
  --color-primary-dark:   #0F172A;
  --color-primary-light:  #334155;
  --color-accent:         #A0723A;   /* warm bronze — earthy, ties to lighting brand */
  --color-accent-hover:   #8B5E2C;
  --color-accent-tint:    #FBF3E8;
  --color-accent-rgb:     160, 114, 58;

  /* Text */
  --color-text:           #1E293B;
  --color-text-sec:       #64748B;
  --color-text-muted:     #94A3B8;
  --color-text-on-dark:   #FFFFFF;
  --color-text-on-accent: #FFFFFF;

  /* Surfaces */
  --color-bg:             #FFFFFF;
  --color-bg-alt:         #F8FAFC;
  --color-surface:        #FFFFFF;
  --color-border:         #E2E8F0;

  /* Typography */
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  /* Display serif — used for major headlines to break from generic sans-only look */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Spacing (4-pt grid) */
  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-5:  1.25rem;
  --s-6:  1.5rem;
  --s-8:  2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;

  /* Font scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Radii */
  --radius-sm:   0.25rem;
  --radius:      0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-2xl:  1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow:    0 1px 3px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 10px 15px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.08), 0 20px 25px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);

  /* Transitions */
  --ease:      200ms ease;
  --ease-slow: 350ms ease;

  /* Layout */
  --container-max:    1200px;
  --container-narrow: 760px;
  --header-h:         72px;
}


/* ══════════════════════════════════════════════════════════════════
   ══ SECTION: LIGHTING ══
   To extract: copy this block to theme.css, change selector to :root
   ══════════════════════════════════════════════════════════════════ */
.section--lighting {
  --color-primary:       #1C1917;   /* stone-900 */
  --color-primary-dark:  #0C0A09;   /* stone-950 */
  --color-primary-light: #292524;   /* stone-800 */
  --color-accent:        #D97706;   /* amber-600 */
  --color-accent-hover:  #B45309;   /* amber-700 */
  --color-accent-tint:   #FFFBEB;   /* amber-50  */
  --color-bg-alt:        #FAFAF9;   /* stone-50  */
  --color-accent-rgb:    217, 119, 6;
}
/* ── End LIGHTING section ── */


/* ══════════════════════════════════════════════════════════════════
   ══ SECTION: IRRIGATION ══
   To extract: copy this block to theme.css, change selector to :root
   ══════════════════════════════════════════════════════════════════ */
.section--irrigation {
  --color-primary:       #14532D;   /* green-900  */
  --color-primary-dark:  #052E16;   /* green-950  */
  --color-primary-light: #166534;   /* green-800  */
  --color-accent:        #16A34A;   /* green-600  */
  --color-accent-hover:  #15803D;   /* green-700  */
  --color-accent-tint:   #F0FDF4;   /* green-50   */
  --color-bg-alt:        #F0FDF4;
  --color-accent-rgb:    22, 163, 74;
}
/* ── End IRRIGATION section ── */


/* ══════════════════════════════════════════════════════════════════
   ══ SECTION: IOT / HOME NETWORK ══
   To extract: copy this block to theme.css, change selector to :root
   ══════════════════════════════════════════════════════════════════ */
.section--iot {
  --color-primary:       #0F172A;   /* slate-900  */
  --color-primary-dark:  #020617;   /* slate-950  */
  --color-primary-light: #1E293B;   /* slate-800  */
  --color-accent:        #06B6D4;   /* cyan-500   */
  --color-accent-hover:  #0891B2;   /* cyan-600   */
  --color-accent-tint:   #ECFEFF;   /* cyan-50    */
  --color-bg-alt:        #ECFEFF;
  --color-accent-rgb:    6, 182, 212;
}
/* ── End IOT section ── */


/* ── 2. BASE ELEMENT STYLES ─────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
}

p { line-height: 1.7; }

a:hover { opacity: 0.85; }


/* ── 3. LAYOUT / CONTAINERS ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--s-6);
}

.container--narrow { max-width: var(--container-narrow); }


/* ── 4. HEADER / NAV ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--color-primary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-shrink: 0;
  opacity: 1 !important;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--color-accent);
  color: var(--color-text-on-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-sm);
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-lg);
  color: #fff;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-1);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--radius);
  transition: var(--ease);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
  background: rgba(255,255,255,0.08);
  opacity: 1;
}

.nav-links a.is-active { color: var(--color-accent); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: var(--s-2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  width: 40px;
  height: 40px;
  transition: var(--ease);
}
.nav-toggle:hover { background: rgba(255,255,255,0.16); }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: var(--radius-full);
  transition: var(--ease);
  pointer-events: none;
}


/* ── 5. BUTTONS ─────────────────────────────────────────────────── */
/* Inherit accent from parent section — works automatically */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  line-height: 1;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { opacity: 1; }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-text-on-accent);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(var(--color-accent-rgb), 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-text-on-accent);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.btn-white:hover {
  background: #f0f4f8;
  transform: translateY(-1px);
}

.btn-sm { font-size: var(--text-sm); padding: 0.55rem 1.1rem; }
.btn-lg { font-size: var(--text-lg); padding: 1.1rem 2.25rem; }


/* ── 6. BADGE ───────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--radius-full);
}

.badge--on-dark {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}

.badge--accent {
  background: rgba(var(--color-accent-rgb), 0.15);
  color: var(--color-accent);
}

.badge--dot::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}


/* ── 7. TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--color-primary-dark);
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.trust-item svg { width: 15px; height: 15px; color: var(--color-accent); flex-shrink: 0; }

.trust-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }


/* ── 8. MAIN SITE HERO ──────────────────────────────────────────── */
/* Uses global :root palette (base slate + blue) */
.main-hero {
  background: var(--color-primary);
  color: #fff;
  padding: var(--s-20) 0 var(--s-16);  /* slightly tighter — less cavernous */
  position: relative;
  overflow: hidden;
}

/* no glow overlay — the dark primary background reads clearly on its own */

.main-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--color-accent-rgb), 0.4), transparent);
}

.main-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
}

/* Hero image column */
.main-hero-img {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.main-hero-img img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.main-hero-img figcaption {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  margin-top: var(--s-2);
  font-style: italic;
  text-align: right;
  letter-spacing: 0.02em;
}

.main-hero-label  { margin-bottom: var(--s-5); }

.main-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--s-6);
}

.main-hero-headline em {
  font-style: normal;
  color: var(--color-accent);
}

.main-hero-sub {
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: var(--s-10);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  align-items: center;
}

/* Service anchor nav below main hero */
.hero-service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

.hero-service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: var(--s-2) var(--s-3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  transition: var(--ease);
}

.hero-service-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  opacity: 1;
}

.hero-service-link svg { width: 14px; height: 14px; }


/* ── 9. SERVICE SECTION WRAPPER ─────────────────────────────────── */
/* Contains all per-service content; scopes the color variables */
.service-section {
  /* no padding here — child blocks handle their own */
}

/* Visual separator between sections */
.service-section + .service-section {
  border-top: 1px solid rgba(0,0,0,0.06);
}


/* ── 10. SERVICE SECTION MINI-HERO (svc-hero) ───────────────────── */
/* Dark background, uses section's --color-primary */
.svc-hero {
  background: var(--color-primary);
  color: #fff;
  padding: var(--s-20) 0 var(--s-16);
  position: relative;
  overflow: hidden;
}

/* generic glow removed — lighting section keeps its own intentional amber glow below */

/* Lighting: amber glow rises from the bottom — more dramatic */
.section--lighting .svc-hero::before {
  background: radial-gradient(
    ellipse 90% 70% at 60% 120%,
    rgba(217, 119, 6, 0.22) 0%,
    rgba(217, 119, 6, 0.06) 50%,
    transparent 75%
  );
}

.svc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.svc-label { margin-bottom: var(--s-5); }

.svc-headline {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4.5vw, var(--text-4xl));
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: var(--s-5);
}

.svc-headline em {
  font-style: normal;
  color: var(--color-accent);
}

.svc-sub {
  font-size: clamp(var(--text-base), 1.8vw, var(--text-lg));
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--s-8);
}

.svc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  align-items: center;
}

/* Lighting: stacked dual-CTA layout */
.svc-actions--split {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-3);
}
.svc-actions--split .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  align-items: center;
}
.svc-actions--split .cta-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}


/* ── 11. SECTION BODY (alt bg) ──────────────────────────────────── */
.svc-body {
  background: var(--color-bg-alt);
  padding: var(--s-16) 0 var(--s-20);  /* bottom slightly more open */
}

/* Falls back to global --color-bg-alt (#F8FAFC) if section
   doesn't define its own; each service section overrides this */


/* ── 12. SECTION HEADER (title block) ───────────────────────────── */
.sec-header {
  text-align: left;
  margin-bottom: var(--s-12);
}
.sec-header--center { text-align: center; }
.sec-header--left   { text-align: left; }

.sec-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-3);
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-4);
  color: var(--color-text);
}

.sec-body {
  font-size: var(--text-lg);
  color: var(--color-text-sec);
  max-width: 600px;
  line-height: 1.7;
}
.sec-header--center .sec-body { margin-inline: auto; }

/* On dark backgrounds */
.on-dark .sec-label { color: var(--color-accent); }
.on-dark .sec-title { color: #fff; }
.on-dark .sec-body  { color: rgba(255,255,255,0.6); }


/* ── 13. STEPS ──────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-accent-tint),
    rgba(var(--color-accent-rgb), 0.3),
    var(--color-accent-tint)
  );
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--s-4);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-text-on-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-5);
  box-shadow: 0 0 0 6px var(--color-accent-tint);
}

.step-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--s-3);
}

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


/* ── 14. BENEFIT CARDS ──────────────────────────────────────────── */
/* Inherits section color variables automatically */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.benefit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);   /* sharper — 0.5rem, not the template 1rem */
  border-top: 3px solid transparent;
  padding: var(--s-8);
  transition: var(--ease-slow);
}

.benefit-card:nth-child(1) { border-top-color: var(--color-accent); }

.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(var(--color-accent-rgb), 0.3);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  background: var(--color-accent-tint);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
  color: var(--color-accent);
}
.benefit-icon svg { width: 26px; height: 26px; }

.benefit-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--s-3);
  line-height: 1.2;
}

.benefit-body {
  font-size: var(--text-base);
  color: var(--color-text-sec);
  line-height: 1.7;
}


/* ── 15. "COMING SOON" GALLERY PLACEHOLDER ──────────────────────── */
.svc-gallery {
  padding: var(--s-16) 0;
  background: var(--color-bg);
}

.coming-soon-card {
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--color-primary-dark, #0C0A09) 0%, var(--color-primary) 100%);
  border: 1px solid rgba(var(--color-accent-rgb), 0.18);
  padding: var(--s-16) var(--s-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-5);
  max-width: 680px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}

/* no overlay on dark gradient card — clean enough on its own */

.coming-soon-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: rgba(var(--color-accent-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  position: relative;
  z-index: 1;
}
.coming-soon-icon svg { width: 32px; height: 32px; }

.coming-soon-badge {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  position: relative;
  z-index: 1;
}

.coming-soon-headline {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.coming-soon-copy {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 400px;
  position: relative;
  z-index: 1;
}

.coming-soon-card .btn {
  position: relative;
  z-index: 1;
}


/* ── 16. FEATURE CALLOUT (IoT runbook) ──────────────────────────── */
.feature-callout {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--s-10) var(--s-12);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-10);
  align-items: start;
}

.feature-callout-left { display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-4); }

.feature-callout-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.feature-callout-icon svg { width: 36px; height: 36px; }

.fc-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-2);
}

.fc-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--s-4);
  line-height: 1.2;
}

.fc-body {
  font-size: var(--text-base);
  color: var(--color-text-sec);
  line-height: 1.75;
  margin-bottom: var(--s-5);
}

.fc-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.fc-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: var(--text-sm);
  color: var(--color-text-sec);
}

.fc-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 11px no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}


/* ── 17. PRICING NOTE ───────────────────────────────────────────── */
.pricing-note {
  background: var(--color-primary);
  border-radius: var(--radius-2xl);
  padding: var(--s-10) var(--s-12);
  display: flex;
  gap: var(--s-8);
  align-items: center;
  max-width: 820px;
  margin-inline: auto;
}

.pricing-note-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-xl);
  background: rgba(var(--color-accent-rgb), 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}
.pricing-note-icon svg { width: 34px; height: 34px; }

.pricing-note-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--s-2);
}

.pricing-note-body {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
}


/* ── 18. SECTION CTA BANNER ─────────────────────────────────────── */
.svc-cta {
  background: var(--color-primary);
  padding: var(--s-16) 0;
  position: relative;
  overflow: hidden;
}

/* radial glow removed — accent border top is the visual anchor instead */
.svc-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-accent);
  opacity: 0.7;
  pointer-events: none;
}

.svc-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.svc-cta-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: var(--s-4);
  letter-spacing: -0.015em;
}

.svc-cta-body {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--s-8);
  line-height: 1.65;
}

.svc-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-4);
}


/* ── 19. CONTACT FORM SECTION ───────────────────────────────────── */
/* Uses global base palette — not inside any service section */
.contact-section {
  padding: var(--s-20) 0;
  background: var(--color-bg-alt);
  scroll-margin-top: var(--header-h);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: var(--s-16);
  align-items: start;
}

.contact-info-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-3);
}

.contact-info-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--s-4);
  line-height: 1.2;
}

.contact-info-body {
  font-size: var(--text-base);
  color: var(--color-text-sec);
  line-height: 1.7;
  margin-bottom: var(--s-6);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: var(--text-sm);
  color: var(--color-text-sec);
  margin-bottom: var(--s-3);
}
.contact-detail svg { width: 17px; height: 17px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }

.contact-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--s-10);
  box-shadow: var(--shadow-md);
}

.contact-form { display: flex; flex-direction: column; gap: var(--s-5); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }

.form-group { display: flex; flex-direction: column; gap: var(--s-2); }

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.form-label .req { color: var(--color-accent); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-base);
  transition: var(--ease);
  line-height: 1.5;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-text-muted); }

.form-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 18px;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-submit { width: 100%; padding: 1rem; font-size: var(--text-base); font-weight: 700; }

.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.6;
}


/* ── 20. FOOTER ─────────────────────────────────────────────────── */
/*
  Footer bg is one shade deeper than the base primary.
  Base primary = #1E293B → one shade deeper = #0F172A
  (If the footer is ever placed inside a service section wrapper,
   var(--color-primary-dark) will pick up that section's dark shade automatically)
*/
.site-footer {
  background: #0F172A;
  color: rgba(255,255,255,0.55);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: var(--s-16);
  padding: var(--s-16) 0 var(--s-12);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.38);
  margin-top: var(--s-3);
  line-height: 1.6;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--s-4);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--s-3); }

.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.48);
  transition: var(--ease);
}
.footer-col a:hover { color: #fff; opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-5) 0;
  gap: var(--s-4);
  flex-wrap: wrap;
}

.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.3); }

.footer-badges { display: flex; gap: var(--s-3); }

.footer-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--s-1) var(--s-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.35);
}


/* ── 21. RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .feature-callout {
    grid-template-columns: 1fr;
    padding: var(--s-8);
    gap: var(--s-6);
  }
  .contact-layout { grid-template-columns: 1fr; gap: var(--s-10); }
  .footer-inner   { grid-template-columns: 1fr; gap: var(--s-10); }
  .footer-cols    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --s-24: 4rem;
    --s-20: 3rem;
    --s-16: 2.5rem;
    --s-12: 2rem;
  }

  .container { padding-inline: var(--s-5); }

  /* Mobile nav */
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-primary);
    padding: var(--s-4) var(--s-5) var(--s-5);
    gap: var(--s-1);
    display: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: var(--s-3) var(--s-4); }
  .nav-links .btn { margin-top: var(--s-2); justify-content: center; }

  /* Grids → single column */
  .benefits-grid,
  .steps { grid-template-columns: 1fr; }

  .steps::before { display: none; }

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

  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

  /* Hero sizes + layout */
  .main-hero-inner { grid-template-columns: 1fr; }
  .main-hero-img   { order: -1; max-height: 260px; }   /* image above headline on mobile, capped height */
  .main-hero-img img { aspect-ratio: auto; max-height: 260px; }
  .main-hero-headline { font-size: clamp(var(--text-2xl), 7vw, var(--text-4xl)); }

  .svc-actions--split { align-items: stretch; }
  .svc-actions--split .cta-row { flex-direction: column; }
  .svc-actions--split .cta-row .btn { text-align: center; justify-content: center; }

  .coming-soon-card { padding: var(--s-10) var(--s-6); }

  .pricing-note {
    flex-direction: column;
    text-align: center;
    padding: var(--s-8);
    gap: var(--s-5);
  }

  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: var(--s-3); padding-inline: var(--s-5); }
  .trust-sep { display: none; }

  .hero-service-nav { display: none; }
}


/* ── 22. PORTFOLIO IMAGE PAIR ────────────────────────────────────────── */
.portfolio-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

.portfolio-pair-fig {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: 0;
  aspect-ratio: 4/3;
}

.portfolio-pair-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.portfolio-pair:hover .portfolio-pair-fig img {
  transform: scale(1.03);
}

.portfolio-pair-fig figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--s-6) var(--s-5) var(--s-3);
}

@media (max-width: 600px) {
  .portfolio-pair { grid-template-columns: 1fr; }
  .portfolio-pair-fig { aspect-ratio: 3/2; }
}
