/* =============================================
   FARMONE Agro Integrated Limited — Corporate Site
   ============================================= */

:root {
  --green-dark:   #0f3d1f;
  --green:        #1a5c2e;
  --green-mid:    #2e7d42;
  --green-light:  #4caf50;
  --green-pale:   #e8f5e9;
  --gold:         #d4a017;
  --gold-light:   #f5c842;
  --cream:        #fafaf7;
  --white:        #ffffff;
  --gray-100:     #f5f5f4;
  --gray-200:     #e7e5e4;
  --gray-400:     #a8a29e;
  --gray-600:     #78716c;
  --gray-800:     #292524;
  --text:         #1c1917;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:    0 10px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --radius:       8px;
  --radius-lg:    10px;
  --transition:   .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn.full-width { width: 100%; justify-content: center; }

/* ── Section Utilities ───────────────────────── */
.section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 5px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-800);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── Navbar ──────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(15, 61, 31, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.2);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: .02em;
}
.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.3);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .86rem;
  font-weight: 500;
  padding: 7px 11px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--green-dark);
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.nav-mobile a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile.open { display: flex; }

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0a2e14 0%, #1a5c2e 50%, #0d3320 100%);
}
/* Decorative texture pattern */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(76,175,80,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,160,23,.08) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(46,125,50,.1) 0%, transparent 45%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  border: 1px solid rgba(212,160,23,.4);
  padding: 6px 16px;
  border-radius: 8px;
  margin-bottom: 28px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: .4; }
}

/* ── About ───────────────────────────────────── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.about-img-frame {
  position: relative;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(212,160,23,.15) 0%, transparent 60%);
}
.about-logo-big {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.25);
  position: relative;
  z-index: 1;
}
.about-badge-float {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-year {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-dark);
}
.badge-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.about-text .lead {
  font-size: 1.15rem;
  color: var(--gray-800);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-text p {
  color: var(--gray-600);
  margin-bottom: 14px;
  line-height: 1.75;
}
.about-highlights {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-icon .material-icons-round {
  font-size: 1.25rem;
  color: var(--green-mid);
}
.highlight-item strong {
  display: block;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 2px;
}
.highlight-item span {
  font-size: .88rem;
  color: var(--gray-600);
}

/* ── Services ────────────────────────────────── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-icon .material-icons-round {
  font-size: 1.6rem;
  color: var(--green-mid);
}
.service-card:hover .service-icon {
  background: var(--green-mid);
}
.service-card:hover .service-icon .material-icons-round {
  color: var(--white);
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-list {
  border-top: 1px solid var(--gray-200);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: .85rem;
  color: var(--gray-600);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}

/* ── Milestones / Timeline ───────────────────── */
.milestones { background: var(--cream); }
.timeline {
  position: relative;
  margin-top: 64px;
  padding: 0 0 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-mid), var(--gold));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 48px;
  position: relative;
}
.timeline-item[data-side="right"] {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 14px;
  height: 14px;
  background: var(--green-mid);
  border: 3px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 3px var(--green-pale);
  transition: var(--transition);
  z-index: 2;
}
.timeline-dot.active {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,.2);
  width: 18px;
  height: 18px;
  top: 18px;
}
.timeline-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-200);
  max-width: 360px;
  width: 100%;
  transition: var(--transition);
}
.timeline-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.timeline-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
}
.timeline-year {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-mid);
  margin-bottom: 8px;
}
.timeline-card.featured .timeline-year { color: var(--gold); }
.timeline-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.timeline-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── Value Proposition ───────────────────────── */
.value { background: var(--white); }
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.value-left .section-title { margin-bottom: 20px; }
.value-left p {
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.75;
}
.value-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  min-width: 56px;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  transition: var(--transition);
}
.value-item:hover .value-num { color: var(--green-pale); }
.value-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.value-body p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── Operations ──────────────────────────────── */
.operations { background: var(--green-dark); }
.operations .section-tag {
  background: rgba(255,255,255,.1);
  color: var(--gold-light);
}
.operations .section-title { color: var(--white); }
.ops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.ops-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.ops-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(212,160,23,.4);
  transform: translateY(-3px);
}
.ops-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ops-icon .material-icons-round {
  font-size: 1.5rem;
  color: var(--gold-light);
}
.ops-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.ops-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

/* ── Team ────────────────────────────────────── */
.team { background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green-light);
}
.team-card.featured-member { border-color: var(--gold); }
.team-card.placeholder { border-style: dashed; opacity: .75; }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
}
.featured-member .team-avatar {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  width: 90px;
  height: 90px;
  font-size: 1.7rem;
}
.team-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.team-role {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-mid);
  background: var(--green-pale);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
}
.team-card p {
  font-size: .87rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── Next Steps ──────────────────────────────── */
.nextsteps { background: linear-gradient(135deg, var(--green-mid), var(--green-dark)); }
.nextsteps-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.section-title.light { color: var(--white); }
.section-tag.light {
  background: rgba(255,255,255,.15);
  color: var(--gold-light);
}
.light-p { color: rgba(255,255,255,.7); margin-top: 12px; }
.ns-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.ns-item:last-child { border-bottom: none; }
.ns-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ns-check .material-icons-round {
  font-size: 1.1rem;
  color: var(--green-dark);
}
.ns-item p {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  line-height: 1.6;
}

/* ── Contact ─────────────────────────────────── */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon .material-icons-round {
  font-size: 1.4rem;
  color: var(--green-mid);
}
.contact-item h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: .95rem;
  color: var(--gray-800);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--green-mid); }
.contact-coverage h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.coverage-tags span {
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 8px;
  border: 1px solid rgba(46,125,50,.2);
}

/* ── Contact Form ────────────────────────────── */
.contact-form {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46,125,50,.1);
}
.form-group textarea { resize: vertical; }

/* ── Footer ──────────────────────────────────── */
.footer { background: var(--green-dark); padding: 48px 0 28px; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
}
.footer-brand h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.footer-brand p {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.footer-motto {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  font-style: italic;
}
.footer-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); background: rgba(255,255,255,.06); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ── Scroll Reveal ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 300px; margin: 0 auto; }
  .value-grid { grid-template-columns: 1fr; gap: 48px; }
  .nextsteps-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-item[data-side="right"] {
    justify-content: flex-start;
    padding-left: 52px;
    padding-right: 0;
  }
  .timeline-dot { left: 20px; }
  .timeline-card { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}
