/* ============================================================
   HortiDisplay — Refined Stylesheet
   Premium Horticultural Trade Supplier
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  /* Brand Colours — Image 2 benchmark */
  --clr-primary:    #063F2A;
  --clr-deep:       #0B2F24;
  --clr-forest:     #0D3520;
  --clr-leaf:       #6F9E2C;
  --clr-olive:      #A6C34D;
  --clr-sage:       #C8D9A0;
  --clr-cream:      #F4F1E8;
  --clr-offwhite:   #FAF8F3;
  --clr-charcoal:   #232826;
  --clr-slate:      #3D4840;
  --clr-midgrey:    #6B706C;
  --clr-lightgrey:  #B8BDB9;
  --clr-white:      #FFFFFF;

  /* Legacy aliases (for backward compat with existing markup) */
  --clr-horti:      #6F9E2C;
  --clr-fresh:      #A6C34D;
  --clr-soft:       #C8D9A0;

  /* Gradients — restrained, purposeful */
  --grad-hero:     linear-gradient(160deg, #0D3520 0%, #063F2A 55%, #0a3826 100%);
  --grad-dark:     linear-gradient(160deg, #0B2F24 0%, #063F2A 100%);
  --grad-accent:   linear-gradient(135deg, #063F2A 0%, #6F9E2C 100%);
  --grad-cream:    linear-gradient(180deg, #FAF8F3 0%, #F4F1E8 100%);
  --grad-card:     linear-gradient(160deg, #0B2F24 0%, #063F2A 100%);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', 'Montserrat', sans-serif;

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

  /* Borders — tighter = more catalogue, less app */
  --radius-sm:   2px;
  --radius-md:   4px;
  --radius-lg:   6px;
  --radius-xl:   8px;
  --radius-2xl:  12px;
  --radius-full: 999px;

  /* Shadows — premium, restrained */
  --shadow-xs: 0 1px 2px rgba(6,63,42,0.06);
  --shadow-sm: 0 1px 4px rgba(6,63,42,0.07), 0 1px 2px rgba(6,63,42,0.05);
  --shadow-md: 0 3px 10px rgba(6,63,42,0.10), 0 1px 3px rgba(6,63,42,0.07);
  --shadow-lg: 0 6px 20px rgba(6,63,42,0.12), 0 2px 6px rgba(6,63,42,0.08);
  --shadow-xl: 0 12px 32px rgba(6,63,42,0.14), 0 4px 10px rgba(6,63,42,0.09);

  /* Transitions */
  --trans-fast: 150ms ease;
  --trans-base: 240ms ease;
  --trans-slow: 340ms ease;

  /* Layout */
  --container-max:  1160px;
  --container-wide: 1360px;
  --header-h:       74px;

  /* Extended spacing tokens */
  --sp-7:  1.75rem;
  --sp-14: 3.5rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--clr-charcoal);
  background-color: var(--clr-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--clr-charcoal); }
p { max-width: 68ch; }

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

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

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

.section--cream    { background-color: var(--clr-offwhite); }
.section--cream-alt { background: var(--grad-cream); }
.section--dark     { background: var(--grad-dark); color: var(--clr-white); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--clr-white); }
.section--dark p   { color: rgba(255,255,255,0.78); }

/* Dividers between white sections */
.section--ruled-top    { border-top: 1px solid rgba(6,63,42,0.08); }
.section--ruled-bottom { border-bottom: 1px solid rgba(6,63,42,0.08); }

.grid { display: grid; gap: var(--sp-6); }
.grid--2 { grid-template-columns: repeat(2,1fr); }
.grid--3 { grid-template-columns: repeat(3,1fr); }
.grid--4 { grid-template-columns: repeat(4,1fr); }
.grid--auto    { grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
.grid--auto-sm { grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); }

.flex          { display: flex; }
.flex--center  { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }

.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ============================================================
   Typography
   ============================================================ */
.display {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.h2 {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.h4  { font-size: 1.05rem; font-weight: 600; }
.lead {
  font-size: clamp(0.975rem, 1.8vw, 1.125rem);
  line-height: 1.72;
  color: var(--clr-midgrey);
}
.label {
  font-size: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-leaf);
}
.label--light { color: var(--clr-olive); }
.label--muted { color: var(--clr-midgrey); }

/* ============================================================
   Buttons — refined, less rounded = more established
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.72rem 1.6rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  border-radius: var(--radius-md);
  transition:
    background-color var(--trans-base),
    color var(--trans-base),
    border-color var(--trans-base),
    box-shadow var(--trans-base),
    transform var(--trans-fast);
  white-space: nowrap;
  cursor: pointer;
}
.btn:focus-visible { outline: 2px solid var(--clr-leaf); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }

/* Primary */
.btn--primary {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  border: 2px solid var(--clr-primary);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background-color: #0a5238;
  border-color: #0a5238;
  box-shadow: var(--shadow-md);
}

/* Secondary outline */
.btn--secondary {
  background-color: transparent;
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
}
.btn--secondary:hover {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

/* Outline white — for dark backgrounds */
.btn--outline-white {
  background-color: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: var(--clr-white);
}

/* Ghost white */
.btn--ghost-white {
  background-color: rgba(255,255,255,0.1);
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.22);
}
.btn--ghost-white:hover {
  background-color: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.45);
}

.btn--lg { padding: 0.9rem 2rem; font-size: 0.92rem; }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.8rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

/* ============================================================
   Header & Navigation
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background-color: var(--clr-white);
  border-bottom: 1px solid rgba(6,63,42,0.1);
  transition: box-shadow var(--trans-base), background-color var(--trans-base);
}
.site-header.is-scrolled {
  box-shadow: 0 1px 12px rgba(6,63,42,0.10);
}
.site-header.header--transparent {
  background-color: transparent;
  border-bottom-color: rgba(255,255,255,0.12);
}
.site-header.header--transparent.is-scrolled {
  background-color: var(--clr-deep);
  border-bottom-color: rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* ---- Logo ---- */
.site-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }

/* Inline SVG logo */
.logo-svg {
  height: 38px;
  width: auto;
  display: block;
}
/* Text fallback / inline logo component */
.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.logo-mark__icon svg {
  width: 100%;
  height: 100%;
}
.logo-mark__wordmark,
.logo-mark__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-mark__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1;
}
.logo-mark__name .word-horti    { color: var(--clr-primary); }
.logo-mark__name .word-display  { color: var(--clr-leaf); }
.logo-mark__tagline {
  font-family: var(--font-heading);
  font-size: 0.47rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-primary);
  opacity: 0.55;
  margin-top: 3px;
}

.logo-mark--sm .logo-mark__icon { width: 28px; height: 28px; }
.logo-mark--sm .logo-mark__name { font-size: 1.1rem; }

.header--transparent .logo-mark__name .word-horti   { color: var(--clr-white); }
.header--transparent .logo-mark__name .word-display { color: var(--clr-olive); }
.header--transparent .logo-mark__tagline            { color: rgba(255,255,255,0.55); opacity: 1; }

/* Legacy placeholder (pages not yet updated) */
.logo-placeholder {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.logo-placeholder__mark {
  width: 32px; height: 32px;
  background: var(--grad-accent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-placeholder__mark svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 2; }
.logo-placeholder__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--clr-primary);
  letter-spacing: -0.02em;
}
.logo-placeholder__text span { color: var(--clr-leaf); }
.header--transparent .logo-placeholder__text       { color: var(--clr-white); }
.header--transparent .logo-placeholder__text span  { color: var(--clr-olive); }

/* ---- Main Nav ---- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav__item { position: relative; }
.main-nav__link {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0.45rem 0.8rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--clr-slate);
  border-radius: var(--radius-sm);
  transition: color var(--trans-fast), background-color var(--trans-fast);
  white-space: nowrap;
}
.main-nav__link:hover,
.main-nav__link.is-active {
  color: var(--clr-primary);
  background-color: rgba(6,63,42,0.05);
}
.header--transparent .main-nav__link              { color: rgba(255,255,255,0.82); }
.header--transparent .main-nav__link:hover,
.header--transparent .main-nav__link.is-active    { color: var(--clr-white); background-color: rgba(255,255,255,0.08); }

.nav-arrow {
  width: 12px; height: 12px;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform var(--trans-fast);
  opacity: 0.5;
}
.main-nav__item.dropdown-open .nav-arrow { transform: rotate(180deg); opacity: 1; }

/* Dropdown — shown via JS (.dropdown-open class) not CSS :hover */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 230px;
  background-color: var(--clr-white);
  border: 1px solid rgba(6,63,42,0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(6,63,42,0.12), 0 2px 6px rgba(6,63,42,0.07);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 150ms ease, visibility 150ms ease, transform 150ms ease;
  z-index: 200;
}
.main-nav__item.dropdown-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--clr-slate);
  transition: background-color var(--trans-fast), color var(--trans-fast);
}
.nav-dropdown__link:hover { background-color: rgba(6,63,42,0.05); color: var(--clr-primary); }
.nav-dropdown__icon {
  width: 28px; height: 28px;
  background-color: rgba(6,63,42,0.06);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--clr-primary);
}
.nav-dropdown__icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.75; }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-left: var(--sp-3);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--clr-charcoal);
  transition: background-color var(--trans-fast);
}
.nav-toggle:hover { background-color: rgba(6,63,42,0.06); }
.nav-toggle svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
.header--transparent .nav-toggle { color: var(--clr-white); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background-color: var(--clr-deep);
  padding: var(--sp-6);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--trans-slow);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav__close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-white);
  border-radius: var(--radius-sm);
  background-color: rgba(255,255,255,0.08);
}
.mobile-nav__close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.mobile-nav__links { display: flex; flex-direction: column; gap: var(--sp-1); }
.mobile-nav__link {
  display: block; padding: 0.8rem 0.9rem;
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: background-color var(--trans-fast), color var(--trans-fast);
}
.mobile-nav__link:hover { background-color: rgba(255,255,255,0.07); color: var(--clr-white); }
.mobile-nav__sublabel {
  padding: 1.25rem 0.9rem 0.4rem;
  font-size: 0.65rem; font-family: var(--font-heading); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--clr-olive);
}
.mobile-nav__sublink {
  display: block; padding: 0.55rem 0.9rem;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.65);
  border-radius: var(--radius-sm);
  transition: color var(--trans-fast), background-color var(--trans-fast);
}
.mobile-nav__sublink:hover { color: var(--clr-white); background-color: rgba(255,255,255,0.05); }
.mobile-nav__cta { margin-top: var(--sp-8); padding-top: var(--sp-6); border-top: 1px solid rgba(255,255,255,0.08); }

/* ============================================================
   Hero Section — Premium Trade Catalogue Feel
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
}
.hero--medium { min-height: 62vh; padding-block: var(--sp-20); }
.hero--short  { min-height: 46vh; padding-block: var(--sp-16); }

/* Decorative elements — must be absolute so they don't participate in flex flow */
.hero__bg-pattern {
  display: none;
}
.hero__leaf-1,
.hero__leaf-2 {
  position: absolute;
  pointer-events: none;
  fill: white;
  stroke: none;
}
.hero__leaf-1 {
  top: -15%; right: 10%; width: 38%;
  opacity: 0.04;
}
.hero__leaf-2 {
  bottom: -25%; right: -5%; width: 26%;
  opacity: 0.025;
}

/* Subtle texture overlay */
.hero__overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 75% 45%, rgba(111,158,44,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 15% 75%, rgba(6,63,42,0.5) 0%, transparent 60%);
}

/* Decorative botanical lines — refined */
.hero__botanical {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.055;
}
.hero__botanical svg {
  width: 100%; height: 100%;
  stroke: white;
  fill: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-block: var(--sp-20);
}

/* Eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--sp-5);
  font-size: 0.7rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clr-olive);
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background-color: var(--clr-olive);
  opacity: 0.6;
}

/* Main headline */
.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
}
.hero__headline em {
  font-style: normal;
  color: var(--clr-olive);
}

/* Subheadline */
.hero__subheadline {
  font-size: clamp(0.95rem, 1.7vw, 1.1rem);
  line-height: 1.72;
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--sp-8);
  max-width: 54ch;
}

/* Capability bar — replaces SaaS stats */
.hero__capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__cap-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
}
.hero__cap-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background-color: var(--clr-olive);
  flex-shrink: 0;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--grad-hero);
  padding-block: var(--sp-20);
  padding-top: calc(var(--header-h) + var(--sp-14));
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(111,158,44,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero__content { position: relative; z-index: 2; max-width: 680px; }
.page-hero .label  { color: var(--clr-olive); margin-bottom: var(--sp-3); }
.page-hero .h1     { color: var(--clr-white); margin-bottom: var(--sp-5); }
.page-hero .lead   { color: rgba(255,255,255,0.75); max-width: 56ch; margin-bottom: var(--sp-8); }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.breadcrumb__item { font-size: 0.78rem; color: rgba(255,255,255,0.48); font-family: var(--font-heading); font-weight: 500; }
.breadcrumb__item a { color: rgba(255,255,255,0.6); transition: color var(--trans-fast); }
.breadcrumb__item a:hover { color: var(--clr-olive); }
.breadcrumb__sep { width: 10px; height: 10px; stroke: rgba(255,255,255,0.3); fill: none; stroke-width: 2; }

/* ============================================================
   Section Headers
   ============================================================ */
.section-header { margin-bottom: var(--sp-10); }
.section-header--center { text-align: center; margin-inline: auto; max-width: 600px; }
.section-header .label  { margin-bottom: var(--sp-3); }
.section-header .h2     { margin-bottom: var(--sp-4); }
.section-header .lead   { max-width: 58ch; margin-inline: auto; }

/* ============================================================
   Product Cards — Premium Trade Catalogue Panels
   ============================================================ */
.product-card {
  background-color: var(--clr-white);
  border: 1px solid rgba(6,63,42,0.09);
  border-radius: var(--radius-xl);
  padding: var(--sp-7, 1.75rem);
  transition: box-shadow var(--trans-base), transform var(--trans-base), border-color var(--trans-base);
  display: flex;
  flex-direction: column;
  position: relative;
}
/* Subtle left-edge accent on hover */
.product-card::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 2px;
  background: var(--clr-leaf);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity var(--trans-base);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(6,63,42,0.16);
}
.product-card:hover::before { opacity: 1; }

.product-card__icon {
  width: 44px; height: 44px;
  color: var(--clr-primary);
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
}
.product-card__icon svg {
  width: 100%; height: 100%;
  stroke: currentColor; fill: none; stroke-width: 1.4;
}
.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.product-card__desc {
  font-size: 0.875rem;
  color: var(--clr-midgrey);
  line-height: 1.68;
  flex: 1;
  margin-bottom: var(--sp-5);
}
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.82rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--clr-primary);
  transition: gap var(--trans-fast), color var(--trans-fast);
  margin-top: auto;
}
.product-card__link:hover { gap: var(--sp-3); color: var(--clr-leaf); }
.product-card__link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* Dark product card */
.product-card--dark {
  background: var(--grad-card);
  border-color: rgba(255,255,255,0.07);
}
.product-card--dark::before { background: var(--clr-olive); }
.product-card--dark .product-card__icon { color: var(--clr-olive); }
.product-card--dark .product-card__title { color: var(--clr-white); }
.product-card--dark .product-card__desc { color: rgba(255,255,255,0.66); }
.product-card--dark .product-card__link { color: var(--clr-olive); }
.product-card--dark:hover { border-color: rgba(198,211,160,0.25); box-shadow: 0 6px 24px rgba(0,0,0,0.25); }

/* ============================================================
   Sector Cards
   ============================================================ */
.sector-card {
  background-color: var(--clr-white);
  border: 1px solid rgba(6,63,42,0.09);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  transition: box-shadow var(--trans-base), transform var(--trans-base), border-color var(--trans-base);
}
.sector-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(6,63,42,0.18);
}
.sector-card__icon {
  width: 52px; height: 52px;
  background: rgba(6,63,42,0.05);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-3);
  color: var(--clr-primary);
}
.sector-card__icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.sector-card__name { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; color: var(--clr-charcoal); }

/* ============================================================
   Feature Rows
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-14, 3.5rem);
  align-items: center;
}
.feature-row--reverse  { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }

.feature-row__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--clr-cream);
  box-shadow: var(--shadow-lg);
}
.feature-row__image img { width: 100%; height: 100%; object-fit: cover; }

.feature-row__content .label    { margin-bottom: var(--sp-3); }
.feature-row__content .h2       { margin-bottom: var(--sp-5); }
.feature-row__content p         { margin-bottom: var(--sp-4); color: var(--clr-midgrey); font-size: 0.95rem; }

.feature-list { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-7, 1.75rem); }
.feature-list__item {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: 0.9rem; color: var(--clr-charcoal);
}
.feature-list__item::before {
  content: '';
  width: 18px; height: 18px; min-width: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='8.5' stroke='%236F9E2C' stroke-width='1.5'/%3E%3Cpath d='M6.5 10L9 12.5L13.5 8' stroke='%236F9E2C' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}

/* ============================================================
   Why Points
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: var(--sp-5); }
.why-item {
  padding: var(--sp-6);
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: background-color var(--trans-base), border-color var(--trans-base);
}
.why-item:hover { background-color: rgba(255,255,255,0.09); border-color: rgba(198,211,160,0.22); }
.why-item__num {
  font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 800;
  color: var(--clr-olive); line-height: 1;
  margin-bottom: var(--sp-4); opacity: 0.45;
}
.why-item__title  { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--clr-white); margin-bottom: var(--sp-2); }
.why-item__text   { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  background: var(--grad-accent);
  border-radius: var(--radius-xl);
  padding: var(--sp-12) var(--sp-10);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -40%; right: -8%; width: 50%; height: 180%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.cta-banner .h2 { color: var(--clr-white); margin-bottom: var(--sp-4); }
.cta-banner p   { color: rgba(255,255,255,0.78); margin-bottom: var(--sp-7, 1.75rem); margin-inline: auto; max-width: 52ch; }

/* ============================================================
   Trust / Capability Strip
   ============================================================ */
.capability-strip {
  background-color: var(--clr-cream);
  border-top: 1px solid rgba(6,63,42,0.08);
  border-bottom: 1px solid rgba(6,63,42,0.08);
  padding: var(--sp-5) 0;
}
.capability-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.capability-strip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-6);
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--clr-slate);
  border-right: 1px solid rgba(6,63,42,0.1);
}
.capability-strip__item:last-child { border-right: none; }
.capability-strip__item svg {
  width: 14px; height: 14px;
  stroke: var(--clr-leaf); fill: none; stroke-width: 1.75;
  flex-shrink: 0;
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-list   { display: flex; flex-direction: column; gap: var(--sp-2); max-width: 780px; margin-inline: auto; }
.faq-item   { background-color: var(--clr-white); border: 1px solid rgba(6,63,42,0.09); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item.is-open { border-color: rgba(6,63,42,0.18); box-shadow: var(--shadow-xs); }
.faq-item__trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-heading); font-size: 0.925rem; font-weight: 600;
  color: var(--clr-charcoal); text-align: left; cursor: pointer;
  transition: background-color var(--trans-fast);
}
.faq-item__trigger:hover { background-color: rgba(6,63,42,0.02); }
.faq-item__icon {
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(6,63,42,0.06); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-primary);
  transition: background-color var(--trans-fast);
}
.faq-item__icon svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform var(--trans-base); }
.faq-item.is-open .faq-item__icon { background-color: var(--clr-primary); color: var(--clr-white); }
.faq-item.is-open .faq-item__icon svg { transform: rotate(45deg); }
.faq-item__body { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-item.is-open .faq-item__body { max-height: 360px; }
.faq-item__content { padding: 0 var(--sp-6) var(--sp-5); font-size: 0.9rem; color: var(--clr-midgrey); line-height: 1.72; }

/* ============================================================
   Contact Form
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  color: var(--clr-charcoal); letter-spacing: 0.03em;
}
.form-label .required { color: var(--clr-leaf); margin-left: 2px; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid rgba(6,63,42,0.18);
  border-radius: var(--radius-md);
  font-size: 0.925rem;
  font-family: var(--font-body);
  color: var(--clr-charcoal);
  background-color: var(--clr-white);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(6,63,42,0.09);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--clr-lightgrey); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%236B706C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 2.25rem;
}
.form-file-label {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  padding: var(--sp-5);
  border: 1.5px dashed rgba(6,63,42,0.2);
  border-radius: var(--radius-md);
  color: var(--clr-midgrey); cursor: pointer;
  transition: border-color var(--trans-fast), background-color var(--trans-fast);
  font-size: 0.85rem; text-align: center;
}
.form-file-label:hover { border-color: var(--clr-primary); background-color: rgba(6,63,42,0.02); color: var(--clr-primary); }
.form-file-label svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }
input[type="file"] { display: none; }
.form-note { font-size: 0.78rem; color: var(--clr-midgrey); margin-top: var(--sp-1); }

/* ============================================================
   Product Hub Cards
   ============================================================ */
.products-hub { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: var(--sp-5); }
.hub-card {
  display: flex; flex-direction: column;
  background-color: var(--clr-white);
  border: 1px solid rgba(6,63,42,0.09);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow var(--trans-base), transform var(--trans-base), border-color var(--trans-base);
}
.hub-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(6,63,42,0.18); }
.hub-card__image {
  aspect-ratio: 16/9;
  background-color: var(--clr-cream);
  overflow: hidden;
  position: relative;
}
.hub-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hub-card:hover .hub-card__image img { transform: scale(1.03); }
.hub-card__body { padding: var(--sp-5) var(--sp-6); flex: 1; display: flex; flex-direction: column; }
.hub-card__cat { font-size: 0.7rem; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clr-leaf); margin-bottom: var(--sp-2); }
.hub-card__title { font-family: var(--font-heading); font-size: 1.0rem; font-weight: 700; color: var(--clr-charcoal); margin-bottom: var(--sp-3); }
.hub-card__desc { font-size: 0.85rem; color: var(--clr-midgrey); line-height: 1.62; flex: 1; margin-bottom: var(--sp-4); }
.hub-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: var(--sp-3); border-top: 1px solid rgba(6,63,42,0.07); }
.hub-card__more { font-size: 0.82rem; font-family: var(--font-heading); font-weight: 700; color: var(--clr-primary); display: flex; align-items: center; gap: var(--sp-2); }
.hub-card__more svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform var(--trans-fast); }
.hub-card:hover .hub-card__more svg { transform: translateX(3px); }

/* ============================================================
   Stats / Highlight Row (dark)
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  background: var(--grad-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stat-item {
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background-color var(--trans-base);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background-color: rgba(255,255,255,0.04); }
.stat-item__value { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--clr-olive); line-height: 1; margin-bottom: var(--sp-2); }
.stat-item__label { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* ============================================================
   Seasonal Campaign Cards
   ============================================================ */
.season-card {
  border-radius: var(--radius-xl);
  padding: var(--sp-7, 1.75rem);
  position: relative;
  overflow: hidden;
  transition: transform var(--trans-base), box-shadow var(--trans-base);
}
.season-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }
.season-card--spring { background: linear-gradient(135deg, #1B5E20, #388E3C); }
.season-card--summer { background: linear-gradient(135deg, #1565C0, #1976D2); }
.season-card--autumn { background: linear-gradient(135deg, #BF360C, #E64A19); }
.season-card--winter { background: linear-gradient(135deg, #1A237E, #283593); }
.season-card--mothers { background: linear-gradient(135deg, #880E4F, #AD1457); }
.season-card--easter  { background: linear-gradient(135deg, #4A148C, #6A1B9A); }
.season-card__label { font-size: 0.68rem; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.65); margin-bottom: var(--sp-3); }
.season-card__title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--clr-white); margin-bottom: var(--sp-3); }
.season-card__desc  { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.62; }

/* ============================================================
   Image Placeholders
   ============================================================ */
.img-placeholder {
  width: 100%; height: 100%; min-height: 220px;
  background: rgba(6,63,42,0.05);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--sp-3); color: var(--clr-midgrey);
}
.img-placeholder svg { width: 36px; height: 36px; opacity: 0.35; }
.img-placeholder span { font-size: 0.78rem; opacity: 0.55; font-family: var(--font-heading); }

/* ============================================================
   Chip List Container
   ============================================================ */
.chip-list {
  display: flex;
  flex-wrap: wrap;
}

/* ============================================================
   Chips
   ============================================================ */
.chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 0.35rem 0.8rem;
  background-color: rgba(6,63,42,0.06);
  border: 1px solid rgba(6,63,42,0.1);
  border-radius: var(--radius-full);
  font-size: 0.8rem; font-family: var(--font-heading); font-weight: 600; color: var(--clr-primary);
}
.chip::before { content: ''; width: 5px; height: 5px; min-width: 5px; border-radius: 50%; background-color: var(--clr-leaf); }
.chip--light { background-color: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.14); color: rgba(255,255,255,0.85); }
.chip--light::before { background-color: var(--clr-olive); }

/* ============================================================
   Contact
   ============================================================ */
.contact-info { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-item { display: flex; align-items: flex-start; gap: var(--sp-4); padding: var(--sp-5); background-color: rgba(6,63,42,0.04); border-radius: var(--radius-lg); }
.contact-item__icon { width: 40px; height: 40px; min-width: 40px; background: var(--grad-dark); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: white; }
.contact-item__icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.75; }
.contact-item__label { font-size: 0.7rem; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clr-midgrey); margin-bottom: var(--sp-1); }
.contact-item__value { font-size: 0.9rem; font-weight: 500; color: var(--clr-charcoal); line-height: 1.5; }
.contact-item__value a { color: var(--clr-primary); transition: color var(--trans-fast); }
.contact-item__value a:hover { color: var(--clr-leaf); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background-color: var(--clr-deep); color: rgba(255,255,255,0.7); padding-top: var(--sp-16); }
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr repeat(3,1fr);
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand__logo { margin-bottom: var(--sp-4); }
.footer-brand__tagline { font-family: var(--font-heading); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--clr-olive); margin-bottom: var(--sp-4); }
.footer-brand__desc { font-size: 0.845rem; color: rgba(255,255,255,0.48); line-height: 1.72; max-width: 28ch; }
.footer-col__title { font-family: var(--font-heading); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin-bottom: var(--sp-4); }
.footer-col__links { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col__link { font-size: 0.845rem; color: rgba(255,255,255,0.6); transition: color var(--trans-fast); }
.footer-col__link:hover { color: var(--clr-olive); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-block: var(--sp-5); gap: var(--sp-4); flex-wrap: wrap; }
.footer-bottom__copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom__note { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom__note a { color: rgba(255,255,255,0.45); transition: color var(--trans-fast); }
.footer-bottom__note a:hover { color: var(--clr-olive); }

/* Footer logo */
.footer-logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--clr-white); letter-spacing: -0.02em; }
.footer-logo-text span { color: var(--clr-olive); }

/* ============================================================
   Intro band / split layout
   ============================================================ */
.intro-band { background-color: var(--clr-offwhite); border-bottom: 1px solid rgba(6,63,42,0.08); }
.intro-band .container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12); align-items: center; padding-block: var(--sp-16); }

/* ============================================================
   Sector detail cards
   ============================================================ */
.sector-detail-card {
  background: var(--clr-white);
  border: 1px solid rgba(6,63,42,0.09);
  border-radius: var(--radius-xl);
  padding: var(--sp-7, 1.75rem);
  transition: box-shadow var(--trans-base), border-color var(--trans-base), transform var(--trans-base);
}
.sector-detail-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(6,63,42,0.18); transform: translateY(-2px); }
.sector-detail-card__header { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-4); }
.sector-detail-card__icon { width: 44px; height: 44px; min-width: 44px; background: rgba(6,63,42,0.06); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--clr-primary); }
.sector-detail-card__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.sector-detail-card__title { font-family: var(--font-heading); font-size: 1.0rem; font-weight: 700; color: var(--clr-charcoal); }
.sector-detail-card__desc { font-size: 0.875rem; color: var(--clr-midgrey); line-height: 1.68; margin-bottom: var(--sp-4); }
.sector-products { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.sector-product-tag { display: inline-block; padding: 0.28rem 0.7rem; background: rgba(6,63,42,0.05); border-radius: var(--radius-full); font-size: 0.75rem; font-family: var(--font-heading); font-weight: 600; color: var(--clr-primary); }

/* ============================================================
   Utility
   ============================================================ */
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.mx-auto { margin-inline: auto; }

/* ============================================================
   Responsive — Tablet ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .main-nav, .header-cta .btn { display: none; }
  .nav-toggle  { display: flex; }
  .mobile-nav  { display: block; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .feature-row { grid-template-columns: 1fr; gap: var(--sp-8); }
  .feature-row--reverse { direction: ltr; }
  .intro-band .container { grid-template-columns: 1fr; }

  /* Content blocks */
  .content-block { grid-template-columns: 1fr; gap: var(--sp-8); }
  .content-block:nth-child(even) { direction: ltr; }
}

/* ============================================================
   Responsive — Mobile ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .section     { padding-block: var(--sp-12); }
  .section--lg { padding-block: var(--sp-16); }
  .container   { padding-inline: var(--sp-4); }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .hero { min-height: 88dvh; }
  .hero__content { padding-block: var(--sp-12); padding-top: calc(var(--header-h) + var(--sp-8)); }
  .hero__capabilities { gap: var(--sp-2); }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }

  .footer-top    { grid-template-columns: 1fr; gap: var(--sp-7); }
  .footer-bottom { flex-direction: column; text-align: center; gap: var(--sp-2); }

  .capability-strip__item { padding: var(--sp-2) var(--sp-3); font-size: 0.72rem; border-right: none; }

  .cta-banner { padding: var(--sp-8) var(--sp-5); }
  .page-hero { padding-bottom: var(--sp-10); }

  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.45s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
