/* =========================================================
   ADR Consulting – Design System  (DESIGN.md → CSS)
   ========================================================= */

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

/* ── Design Tokens ────────────────────────────────────── */
:root {
  --primary:            #904d00;
  --primary-cta:        #ff8c00;
  --primary-container:  #ffdcc3;
  --secondary:          #745b00;
  --secondary-cta:      #fecb00;
  --tertiary:           #005bc0;
  --tertiary-container: #7da9ff;
  --surface:            #f4fafd;
  --surface-low:        #eef5f7;
  --surface-mid:        #e8eff1;
  --surface-high:       #e2e9ec;
  --on-surface:         #161d1f;
  --on-surface-var:     #564334;
  --outline:            #897362;
  --outline-var:        #ddc1ae;
  --inverse-surface:    #2b3234;
  --inverse-on:         #ebf2f4;
  --error:              #ba1a1a;
  --white:              #ffffff;

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

  /* Spacing */
  --u:            8px;
  --container:    1280px;
  --gutter:       24px;
  --section-gap:  120px;
  --section-gap-sm: 72px;

  /* Radius */
  --r-sm:  0.125rem;
  --r:     0.25rem;
  --r-md:  0.375rem;
  --r-lg:  0.5rem;
  --r-xl:  0.75rem;
  --r-full:9999px;

  /* Shadows */
  --shadow-card:        0 1px 3px rgba(22,29,31,.08), 0 1px 2px rgba(22,29,31,.06);
  --shadow-card-hover:  0 8px 24px rgba(22,29,31,.13);
  --shadow-nav:         0 1px 12px rgba(22,29,31,.08);

  /* Transitions */
  --t:     250ms ease;
  --t-fast:150ms ease;
  --t-slow:450ms cubic-bezier(.16,1,.3,1);
}

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--on-surface); background: var(--surface); overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ───────────────────────────────────────── */
.display-lg { font-family: var(--font-display); font-size: clamp(36px,5vw,48px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.headline-lg { font-family: var(--font-display); font-size: clamp(24px,3.5vw,32px); font-weight: 700; line-height: 1.25; }
.headline-md { font-family: var(--font-display); font-size: clamp(20px,2.5vw,24px); font-weight: 600; line-height: 1.35; }
.body-lg  { font-size: 18px; line-height: 1.65; }
.body-md  { font-size: 16px; line-height: 1.6; }
.label-md { font-family: var(--font-body); font-size: 14px; font-weight: 600; line-height: 1.45; letter-spacing: .05em; text-transform: uppercase; }
.caption  { font-size: 12px; font-weight: 500; line-height: 1.35; }

/* ── Layout ───────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 64px; }
.section   { padding-block: var(--section-gap); }
.section--sm { padding-block: var(--section-gap-sm); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--u)*6); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: calc(var(--u)*4); }

/* ── Navbar ───────────────────────────────────────────── */
.navbar {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 1000;
  background: rgba(255,255,255,0); backdrop-filter: blur(0);
  transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t);
}
.navbar.scrolled {
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  box-shadow: var(--shadow-nav);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding-inline: 64px; max-width: var(--container); margin-inline: auto;
}
.navbar__logo {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  color: var(--on-surface); letter-spacing: -0.01em; display: flex; align-items: center; gap: 10px;
}
.navbar__logo-mark {
  width: 32px; height: 32px; background: var(--primary-cta); border-radius: var(--r-md);
  display: grid; place-items: center; flex-shrink: 0;
}
.navbar__logo-mark svg { width: 18px; height: 18px; }
.navbar__nav { display: flex; align-items: center; gap: 4px; }
.navbar__link {
  font-size: 14px; font-weight: 500; color: var(--on-surface); padding: 8px 14px;
  border-radius: var(--r); transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.navbar__link::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px;
  background: var(--primary-cta); border-radius: 1px; transform: scaleX(0); transition: transform var(--t);
}
.navbar__link:hover { color: var(--primary-cta); }
.navbar__link:hover::after,
.navbar__link.active::after { transform: scaleX(1); }
.navbar__link.active { color: var(--primary-cta); font-weight: 600; }
.navbar__right { display: flex; align-items: center; gap: 20px; }
.navbar__phone { font-size: 14px; font-weight: 500; color: var(--on-surface-var); }
.navbar__hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.navbar__hamburger span { display: block; width: 22px; height: 2px; background: var(--on-surface); border-radius: 1px; transition: transform var(--t), opacity var(--t); }
.navbar__mobile { display: none; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--r); letter-spacing: .03em;
  transition: all var(--t); white-space: nowrap;
}
.btn--primary {
  background: var(--primary-cta); color: var(--white);
  box-shadow: 0 2px 8px rgba(255,140,0,.3);
}
.btn--primary:hover { background: #e07d00; box-shadow: 0 4px 16px rgba(255,140,0,.4); transform: translateY(-1px); }
.btn--secondary { background: transparent; color: var(--on-surface); border: 1.5px solid var(--outline-var); }
.btn--secondary:hover { border-color: var(--on-surface); background: var(--surface-mid); transform: translateY(-1px); }
.btn--white { background: var(--white); color: var(--primary-cta); }
.btn--white:hover { background: var(--primary-container); transform: translateY(-1px); }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--lg { padding: 18px 40px; font-size: 16px; }
.btn__arrow { transition: transform var(--t); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ── Badges / Chips ───────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-full);
}
.badge--orange { background: rgba(255,140,0,.12); color: #7a3d00; border: 1px solid rgba(255,140,0,.25); }
.badge--blue   { background: rgba(0,91,192,.1);   color: #003c83; border: 1px solid rgba(0,91,192,.2); }
.badge--red    { background: rgba(186,26,26,.1);  color: #93000a; border: 1px solid rgba(186,26,26,.2); }
.badge--yellow { background: rgba(254,203,0,.18); color: #584400; border: 1px solid rgba(254,203,0,.35); }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  background: var(--surface); overflow: hidden; padding-top: 72px;
}
.hero__image {
  position: absolute; inset-block: 0; right: 0; width: 52%;
  background-size: cover; background-position: center left;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
.hero__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--surface) 0%, rgba(244,250,253,.5) 60%, transparent 100%);
}
.hero__content {
  position: relative; z-index: 2; padding-block: 80px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
}
.hero__left { max-width: 580px; }
.hero__badge { margin-bottom: 24px; }
.hero__headline {
  font-family: var(--font-display); font-size: clamp(32px,4vw,48px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--on-surface); margin-bottom: 20px;
}
.hero__subtext { font-size: 17px; line-height: 1.7; color: var(--on-surface-var); margin-bottom: 36px; max-width: 480px; }
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  opacity: .6;
}
.hero__scroll span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--on-surface-var); }
.hero__scroll-line {
  width: 1px; height: 36px; background: linear-gradient(to bottom, var(--outline), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.4)} }

/* ── Services Section ─────────────────────────────────── */
.services { background: var(--white); }
.section__header { text-align: center; margin-bottom: 56px; }
.section__eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--primary-cta); margin-bottom: 12px; }
.section__title { font-family: var(--font-display); font-size: clamp(26px,3vw,32px); font-weight: 700; color: var(--on-surface); margin-bottom: 14px; }
.section__subtitle { font-size: 16px; color: var(--on-surface-var); max-width: 560px; margin-inline: auto; line-height: 1.6; }

.service-card {
  background: var(--white); border: 1px solid var(--surface-high); border-radius: var(--r-lg);
  overflow: hidden; transition: transform var(--t), box-shadow var(--t);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.service-card__img { position: relative; height: 200px; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.service-card:hover .service-card__img img { transform: scale(1.04); }
.service-card__badge { position: absolute; top: 14px; left: 14px; }
.service-card__body { padding: 28px; }
.service-card__icon {
  width: 44px; height: 44px; border-radius: var(--r-md); background: var(--surface-low);
  display: grid; place-items: center; margin-bottom: 14px; transition: background var(--t);
}
.service-card:hover .service-card__icon { background: rgba(255,140,0,.1); }
.service-card__icon svg { width: 22px; height: 22px; stroke: var(--primary-cta); stroke-width: 1.75; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.service-card__title { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--on-surface); margin-bottom: 10px; }
.service-card__desc { font-size: 15px; color: var(--on-surface-var); line-height: 1.65; margin-bottom: 20px; }
.service-card__link {
  font-size: 14px; font-weight: 600; color: var(--primary-cta);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--t);
}
.service-card__link:hover { gap: 10px; }

/* ── About Section ────────────────────────────────────── */
.about { background: var(--surface); }
.about__heading { font-family: var(--font-display); font-size: clamp(26px,3vw,32px); font-weight: 700; color: var(--on-surface); margin-bottom: 16px; }
.about__text { font-size: 16px; color: var(--on-surface-var); line-height: 1.7; margin-bottom: 36px; }
.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature {
  display: flex; gap: 16px; padding: 20px; border-radius: var(--r-lg);
  background: var(--white); border: 1px solid var(--surface-high);
  transition: border-color var(--t), box-shadow var(--t);
}
.feature:hover { border-color: var(--outline-var); box-shadow: var(--shadow-card); }
.feature__icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--r-md);
  background: rgba(255,140,0,.1); display: grid; place-items: center;
}
.feature__icon svg { width: 20px; height: 20px; stroke: var(--primary-cta); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.feature__title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--on-surface); margin-bottom: 4px; }
.feature__text { font-size: 14px; color: var(--on-surface-var); line-height: 1.65; }

.about__visual { position: relative; }
.about__image { width: 100%; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card-hover); }
.about__image img { width: 100%; height: 480px; object-fit: cover; }
.about__stat-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--on-surface); color: var(--inverse-on);
  padding: 24px 28px; border-radius: var(--r-lg); box-shadow: 0 8px 32px rgba(22,29,31,.25);
  min-width: 240px;
}
.about__stat-value { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--primary-cta); line-height: 1; margin-bottom: 8px; }
.about__stat-label { font-size: 14px; color: rgba(235,242,244,.8); line-height: 1.5; }

/* ── Stats Bar ────────────────────────────────────────── */
.stats-bar { background: var(--inverse-surface); padding-block: 64px; }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 24px; position: relative; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 60%; width: 1px; background: rgba(255,255,255,.12);
}
.stat-item__value { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--primary-cta); line-height: 1; margin-bottom: 8px; }
.stat-item__label { font-size: 14px; color: rgba(235,242,244,.7); letter-spacing: .02em; }

/* ── CTA Banner ───────────────────────────────────────── */
.cta-banner { background: var(--inverse-surface); padding-block: var(--section-gap-sm); text-align: center; }
.cta-banner__headline { font-family: var(--font-display); font-size: clamp(24px,3vw,36px); font-weight: 700; color: var(--inverse-on); margin-bottom: 16px; }
.cta-banner__subtext { font-size: 16px; color: rgba(235,242,244,.75); margin-bottom: 40px; max-width: 520px; margin-inline: auto; line-height: 1.7; }

/* ── Page Hero (inner pages) ──────────────────────────── */
.page-hero {
  background: var(--inverse-surface); padding-top: 72px; padding-bottom: 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 70% 50%, rgba(255,140,0,.08) 0%, transparent 70%);
}
.page-hero__content { position: relative; z-index: 2; padding-top: 60px; }
.page-hero__breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.page-hero__breadcrumb a { font-size: 13px; color: rgba(235,242,244,.5); transition: color var(--t-fast); }
.page-hero__breadcrumb a:hover { color: var(--inverse-on); }
.page-hero__breadcrumb span { font-size: 13px; color: rgba(235,242,244,.3); }
.page-hero__title { font-family: var(--font-display); font-size: clamp(32px,4vw,44px); font-weight: 700; color: var(--inverse-on); margin-bottom: 14px; letter-spacing: -0.02em; }
.page-hero__subtitle { font-size: 17px; color: rgba(235,242,244,.7); max-width: 540px; line-height: 1.7; }

/* ── Service Detail (services page) ──────────────────── */
.service-detail { padding-block: var(--section-gap-sm); }
.service-detail:nth-child(even) { background: var(--white); }
.service-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-detail:nth-child(even) .service-detail__grid { direction: rtl; }
.service-detail:nth-child(even) .service-detail__grid > * { direction: ltr; }
.service-detail__image { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card-hover); }
.service-detail__image img { width: 100%; height: 380px; object-fit: cover; }
.service-detail__badge { margin-bottom: 16px; }
.service-detail__title { font-family: var(--font-display); font-size: clamp(22px,2.5vw,28px); font-weight: 700; color: var(--on-surface); margin-bottom: 14px; }
.service-detail__text { font-size: 15px; color: var(--on-surface-var); line-height: 1.75; margin-bottom: 28px; }
.feature-list--inline { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.check-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--on-surface-var); }
.check-item svg { width: 18px; height: 18px; stroke: var(--primary-cta); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── Process Steps ────────────────────────────────────── */
.process { background: var(--surface); }
.process__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.process-step { text-align: center; padding: 32px 20px; }
.process-step__num {
  width: 56px; height: 56px; border-radius: var(--r-full); background: rgba(255,140,0,.1);
  display: grid; place-items: center; margin-inline: auto; margin-bottom: 20px;
  font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--primary-cta);
  border: 1px solid rgba(255,140,0,.2);
}
.process-step__title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--on-surface); margin-bottom: 8px; }
.process-step__text { font-size: 14px; color: var(--on-surface-var); line-height: 1.65; }

/* ── Pricing ──────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.pricing-card {
  background: var(--white); border: 1.5px solid var(--surface-high); border-radius: var(--r-lg);
  padding: 40px 36px; display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.pricing-card--highlighted {
  background: var(--on-surface); border-color: transparent;
  box-shadow: 0 8px 40px rgba(22,29,31,.3);
  transform: translateY(-8px);
}
.pricing-card--highlighted:hover { transform: translateY(-12px); }
.pricing-card__badge { align-self: flex-start; margin-bottom: 24px; }
.pricing-card--highlighted .pricing-card__badge { background: rgba(255,140,0,.2); color: var(--primary-cta); border-color: rgba(255,140,0,.3); }
.pricing-card__name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--on-surface); margin-bottom: 6px; }
.pricing-card--highlighted .pricing-card__name { color: var(--inverse-on); }
.pricing-card__desc { font-size: 14px; color: var(--on-surface-var); margin-bottom: 28px; }
.pricing-card--highlighted .pricing-card__desc { color: rgba(235,242,244,.6); }
.pricing-card__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 32px; }
.pricing-card__amount { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--on-surface); line-height: 1; }
.pricing-card--highlighted .pricing-card__amount { color: var(--primary-cta); }
.pricing-card__unit { font-size: 14px; color: var(--on-surface-var); }
.pricing-card--highlighted .pricing-card__unit { color: rgba(235,242,244,.6); }
.pricing-card__features { flex: 1; list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pricing-card__feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--on-surface-var); }
.pricing-card--highlighted .pricing-card__feature { color: rgba(235,242,244,.8); }
.pricing-card__feature svg { width: 16px; height: 16px; stroke: var(--primary-cta); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 720px; margin-inline: auto; }
.faq-item { background: var(--white); border: 1px solid var(--surface-high); border-radius: var(--r-lg); overflow: hidden; }
.faq-item__question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; font-family: var(--font-display); font-size: 16px; font-weight: 600;
  color: var(--on-surface); text-align: left; transition: color var(--t-fast);
}
.faq-item__question:hover { color: var(--primary-cta); }
.faq-item__icon { width: 24px; height: 24px; flex-shrink: 0; transition: transform var(--t); stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height var(--t-slow), padding var(--t); }
.faq-item.open .faq-item__answer { max-height: 300px; }
.faq-item__answer p { padding: 0 28px 22px; font-size: 15px; color: var(--on-surface-var); line-height: 1.7; }

/* ── Team Cards ───────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card {
  background: var(--white); border: 1px solid var(--surface-high); border-radius: var(--r-lg);
  overflow: hidden; transition: transform var(--t), box-shadow var(--t);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.team-card__img { height: 260px; overflow: hidden; }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.team-card:hover .team-card__img img { transform: scale(1.03); }
.team-card__body { padding: 24px; }
.team-card__name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--on-surface); margin-bottom: 4px; }
.team-card__role { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--primary-cta); margin-bottom: 12px; }
.team-card__bio { font-size: 14px; color: var(--on-surface-var); line-height: 1.65; }

/* ── Values ───────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card {
  padding: 32px; background: var(--white); border: 1px solid var(--surface-high);
  border-radius: var(--r-lg); transition: border-color var(--t), box-shadow var(--t);
}
.value-card:hover { border-color: var(--outline-var); box-shadow: var(--shadow-card); }
.value-card__num { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--surface-high); line-height: 1; margin-bottom: 16px; }
.value-card__title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--on-surface); margin-bottom: 10px; }
.value-card__text { font-size: 14px; color: var(--on-surface-var); line-height: 1.7; }

/* ── Contact Form ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--on-surface); margin-bottom: 6px; letter-spacing: .02em; }
.form-input {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--surface-high);
  border-radius: var(--r-md); font-family: var(--font-body); font-size: 15px;
  color: var(--on-surface); background: var(--white); transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.form-input:focus { border-color: var(--tertiary); box-shadow: 0 0 0 3px rgba(0,91,192,.1); }
.form-input::placeholder { color: var(--outline); }
textarea.form-input { resize: vertical; min-height: 140px; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23897362' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--white); border: 1px solid var(--surface-high); border-radius: var(--r-lg);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start;
}
.contact-card__icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--r-md);
  background: rgba(255,140,0,.1); display: grid; place-items: center;
}
.contact-card__icon svg { width: 20px; height: 20px; stroke: var(--primary-cta); stroke-width: 1.75; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.contact-card__label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--outline); margin-bottom: 4px; }
.contact-card__value { font-size: 15px; font-weight: 500; color: var(--on-surface); }

/* ── Footer ───────────────────────────────────────────── */
.footer { background: var(--inverse-surface); padding-block: 64px 40px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 32px; }
.footer__brand-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--inverse-on); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer__tagline { font-size: 14px; color: rgba(235,242,244,.55); line-height: 1.7; max-width: 280px; }
.footer__heading { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(235,242,244,.4); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { font-size: 14px; color: rgba(235,242,244,.65); transition: color var(--t-fast); }
.footer__link:hover { color: var(--inverse-on); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: 13px; color: rgba(235,242,244,.4); }
.footer__admin-link { font-size: 12px; color: rgba(235,242,244,.25); transition: color var(--t-fast); }
.footer__admin-link:hover { color: rgba(235,242,244,.5); }

/* ── Scroll Animations ────────────────────────────────── */
[data-animate] { opacity: 0; transition: opacity .65s ease, transform .65s cubic-bezier(.16,1,.3,1); }
[data-animate="fade-up"]    { transform: translateY(28px); }
[data-animate="fade-in"]    { transform: none; }
[data-animate="slide-left"] { transform: translateX(-36px); }
[data-animate="slide-right"]{ transform: translateX(36px); }
[data-animate].in-view      { opacity: 1; transform: none; }

/* Hero load animations */
.animate-load { opacity: 0; transform: translateY(20px); }
.animate-load.loaded { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1); }

/* ── Divider ──────────────────────────────────────────── */
.divider { height: 1px; background: var(--surface-high); }

/* ── Notice Toast ─────────────────────────────────────── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  background: var(--on-surface); color: var(--inverse-on);
  padding: 16px 24px; border-radius: var(--r-lg); box-shadow: var(--shadow-card-hover);
  font-size: 14px; font-weight: 500; transform: translateY(80px); opacity: 0;
  transition: transform var(--t), opacity var(--t); pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.toast--success { border-left: 3px solid #4caf50; }
.toast.toast--error   { border-left: 3px solid var(--error); }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding-inline: 40px; }
  .navbar__inner { padding-inline: 40px; }
  .hero__content { grid-template-columns: 1fr; }
  .hero__image { width: 100%; clip-path: none; opacity: .12; }
  .grid-2 { grid-template-columns: 1fr; }
  .about__stat-card { right: 0; bottom: -16px; }
  .stats-bar__grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 72px; --section-gap-sm: 48px; }
  .container { padding-inline: 20px; }
  .navbar__inner { padding-inline: 20px; }
  .navbar__nav, .navbar__phone { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__mobile {
    display: flex; flex-direction: column; gap: 0;
    background: var(--white); border-top: 1px solid var(--surface-high);
    padding: 12px 0;
  }
  .navbar__mobile .navbar__link { padding: 14px 24px; border-radius: 0; }
  .grid-3, .services__grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--highlighted { transform: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .service-detail__grid, .service-detail:nth-child(even) .service-detail__grid { grid-template-columns: 1fr; direction: ltr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__left { max-width: 100%; }
  .about__stat-card { position: static; margin-top: 16px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .btn { justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
}
