/* =============================================
   ALMOND GROWTH — style.css
   Brand: Navy Blue + Forest Green + Gold (from logo)
   ============================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* === BRAND COLOURS (from logo) === */
  --navy:          #0D1B2E;      /* deep navy bg from logo */
  --navy-mid:      #14253D;      /* slightly lighter navy */
  --navy-light:    #1C3150;      /* card/section navy */
  --navy-pale:     #EEF2F7;      /* very light navy tint for light sections */
  --navy-muted:    #F4F7FA;      /* near-white with navy tint */

  --green:         #2D6A1F;      /* dark forest green (logo icon base) */
  --green-mid:     #3E8A28;      /* mid green */
  --green-bright:  #5DB82E;      /* bright lime green (logo icon top/arrow) */
  --green-pale:    #EBF5E4;      /* light green tint for badges */

  --gold:          #C8A020;      /* gold/yellow accent lines under tagline */
  --gold-light:    #E8BE3A;      /* lighter gold for hover */
  --gold-pale:     #FBF5E0;      /* pale gold for light bg tints */

  --white:         #FFFFFF;
  --text:          #0D1B2E;      /* navy as default text */
  --text-muted:    #3D5270;      /* muted navy-grey */
  --text-light:    #6B829E;      /* lighter muted */
  --border:        rgba(13,27,46,0.12);
  --border-light:  rgba(255,255,255,0.12);

  --shadow:        0 4px 32px rgba(13,27,46,0.10);
  --shadow-lg:     0 12px 60px rgba(13,27,46,0.18);
  --radius:        12px;
  --radius-lg:     20px;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --transition:    0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- UTILITY ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
  color: var(--white);
  border-color: transparent;
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-bright) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(61,138,40,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(13,27,46,0.25);
}
.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
}

.btn--full { width: 100%; justify-content: center; }

/* ---------- SECTION ---------- */
.section { padding: 100px 0; }
.section--alt { background: var(--navy-muted); }

/* Dark section: full navy like logo bg */
.section--dark {
  background: var(--navy);
  color: var(--white);
}

/* CTA section: navy-to-dark-green gradient */
.section--cta {
  background: linear-gradient(135deg, var(--navy) 0%, #0A2010 100%);
  color: var(--white);
}

.section__header { text-align: center; margin-bottom: 64px; }
.section__header--light h2 { color: var(--white); }

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
  border: 1px solid rgba(61,138,40,0.2);
}

.section__label--light {
  color: var(--gold-light);
  background: rgba(200,160,32,0.15);
  border-color: rgba(200,160,32,0.3);
}

.section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}

.section__sub {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 17px;
}

/* ---------- GRIDS ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ---------- NAVBAR ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,27,46,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.nav--scrolled {
  box-shadow: 0 2px 24px rgba(13,27,46,0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.logo-text { color: var(--white); }
.logo-text strong {
  font-weight: 700;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 6px 10px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav__links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav__cta {
  background: linear-gradient(135deg, var(--green), var(--green-bright)) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
}
.nav__cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(61,138,40,0.4) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: var(--navy);
}
.nav__mobile a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav__mobile a:hover { color: var(--white); }
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile.open { display: flex; }
.nav__cta-mobile {
  margin-top: 12px;
  padding: 14px !important;
  text-align: center;
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600 !important;
}

/* ---------- HERO ---------- */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

/* Green glow top-right like logo */
.hero__bg-shape {
  position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(93,184,46,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Extra gold shimmer bottom-left */
.hero::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,160,32,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; }

.hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(200,160,32,0.15);
  border: 1px solid rgba(200,160,32,0.3);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 820px;
}

.hero__headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Ghost button inverted for dark hero */
.hero .btn--ghost {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
  background: transparent;
}
.hero .btn--ghost:hover {
  color: var(--white);
  border-color: var(--green-bright);
  background: rgba(93,184,46,0.1);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 640px;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 24px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(93,184,46,0.1);
  border-color: rgba(93,184,46,0.3);
}

.stat-card__num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-card__unit {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  line-height: 1.4;
}

.hero__scroll-hint {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 40px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- PROBLEM CARDS ---------- */
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61,138,40,0.3);
  border-top: 3px solid var(--green-bright);
}

.problem-card__icon { font-size: 36px; margin-bottom: 16px; }

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.problem-card p { font-size: 15px; color: var(--text-muted); }

.callout {
  background: var(--navy-pale);
  border-left: 4px solid var(--green-bright);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 32px;
  margin-top: 48px;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow);
}

.callout__highlight {
  font-weight: 700;
  color: var(--green);
  font-size: 20px;
}

/* ---------- SERVICE CARDS ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61,138,40,0.25);
}

.service-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green-mid);
  background: var(--green-pale);
  border: 1px solid rgba(61,138,40,0.2);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.service-card__icon { font-size: 32px; margin-bottom: 12px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 16px; }

.service-card ul { padding: 0; }
.service-card ul li {
  font-size: 14px;
  color: var(--text-light);
  padding: 4px 0 4px 20px;
  position: relative;
}
.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 700;
}

/* ---------- PROCESS ---------- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.process-step:last-child { border-bottom: none; }

.process-step__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(61,138,40,0.15);
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
  padding-top: 4px;
}

.process-step__content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step__content p { color: var(--text-muted); font-size: 15px; margin-bottom: 14px; }

.process-step__deliverable {
  display: inline-block;
  background: var(--green-pale);
  border: 1px solid rgba(61,138,40,0.25);
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
}

/* ---------- INDUSTRIES ---------- */
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-bright);
  border-top: 3px solid var(--green-bright);
}

.industry-card__icon { font-size: 40px; margin-bottom: 16px; }

.industry-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.industry-card p { font-size: 14px; color: var(--text-muted); }

.industry-cta {
  text-align: center;
  margin-top: 52px;
  padding: 40px;
  background: var(--navy-pale);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.industry-cta p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(93,184,46,0.3);
}

/* Featured: gold-tinted like the logo gold accents */
.testimonial-card--featured {
  background: rgba(200,160,32,0.08);
  border: 1px solid rgba(200,160,32,0.35);
  grid-column: 1 / -1;
}

.testimonial-card__stars {
  color: var(--gold-light);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Featured testimonial: gold avatar */
.testimonial-card--featured .testimonial-card__avatar {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  color: var(--white);
}

.testimonial-card__author span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.testimonial-card__result {
  display: inline-block;
  background: rgba(93,184,46,0.15);
  border: 1px solid rgba(93,184,46,0.35);
  color: var(--green-bright);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

.testimonial-card--featured .testimonial-card__result {
  background: rgba(200,160,32,0.15);
  border-color: rgba(200,160,32,0.4);
  color: var(--gold-light);
}

/* ---------- STORY ---------- */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.story-text p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 20px;
}

.story-quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--green);
  border-left: 4px solid var(--green-bright);
  padding: 16px 24px;
  background: var(--green-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 24px;
  line-height: 1.5;
}

.story-team { display: flex; flex-direction: column; gap: 24px; }

.team-card {
  display: flex;
  gap: 20px;
  background: var(--navy-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  align-items: flex-start;
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: rgba(61,138,40,0.25);
}

.team-card__img-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy-pale);
  border: 3px solid rgba(61,138,40,0.25);
}

.team-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.team-card__info span {
  display: block;
  font-size: 12px;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.team-card__info p { font-size: 14px; color: var(--text-muted); }

/* ---------- CTA / SIGNUP ---------- */
.cta-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-block > p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}

.cta-checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 40px;
}

.cta-checklist li {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.cta-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: left;
}

.cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
  margin-bottom: 12px;
}

.cta-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235DB82E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: rgba(255,255,255,0.07);
}

.cta-form select option { background: var(--navy); color: #fff; }
.cta-form input::placeholder { color: rgba(255,255,255,0.4); }
.cta-form input:focus,
.cta-form select:focus {
  border-color: var(--green-bright);
  background: rgba(93,184,46,0.08);
}

.cta-form__note {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  margin-top: 12px;
}

.cta-success { text-align: center; padding: 40px; }
.cta-success__icon { font-size: 48px; margin-bottom: 16px; }
.cta-success h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-success p { color: rgba(255,255,255,0.7); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* Gold divider accent under brand (mirrors logo tagline lines) */
.footer__brand::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 20px;
}

.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  padding: 4px 0;
  transition: var(--transition);
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  text-align: center;
  padding: 24px;
}

.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ---------- ANIMATIONS ---------- */
.fade-in { opacity: 0; transform: translateY(24px); animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.5s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); }
  .story-layout { grid-template-columns: 1fr; }
  .story-team { flex-direction: row; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { padding: 120px 0 80px; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .cta-form__row { grid-template-columns: 1fr; }
  .story-team { flex-direction: column; }
  .footer__links { grid-template-columns: 1fr; }
  .process-step { flex-direction: column; gap: 12px; }
  .process-step__num { font-size: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { grid-column: auto; }
}

/* ===== CTA ERROR STATE ===== */
.cta-error {
  text-align: center;
  padding: 32px;
  background: rgba(220,60,60,0.1);
  border: 1px solid rgba(220,60,60,0.3);
  border-radius: var(--radius-lg);
  margin-top: 16px;
}
.cta-error .cta-success__icon { font-size: 40px; margin-bottom: 12px; }
.cta-error h3 { font-family: var(--font-display); font-size: 20px; color: #fff; margin-bottom: 8px; }
.cta-error p  { color: rgba(255,255,255,0.7); font-size: 15px; }


/* ===== TESTIMONIAL PHOTO (optional, when real photo is available) ===== */
.testimonial-card__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(200,160,32,0.4);
  flex-shrink: 0;
}
