/* ================================================================
   GroeiPunt Akademie — style.css
   Palette : Sage Green + Off-white + Dark Charcoal
   Fonts   : Cormorant Garamond (headings) + Jost (body)
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

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

:root {
  --green:         #52B49A;
  --green-light:   #C0DED5;
  --green-dark:    #3A8F78;
  --green-bg:      #EDF6F3;
  --green-footer:  #7fb89d;
  --charcoal:      #3C3A38;
  --charcoal-lt:   #5A5856;
  --white:         #FFFFFF;
  --bg:            #FAFAFA;
  --bg-alt:        #F4F5F3;
  --text:          #1C1C1A;
  --text-sec:      #55554F;
  --text-light:    #9A9A94;
  --border:        rgba(0,0,0,0.09);
  --nav-h:         72px;
  --topbar-h:      40px;
  --max-w:         1160px;
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:        12px;
  --radius-sm:     8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ================================================================
   TYPOGRAPHY
================================================================ */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-sec);
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: block;
  margin-bottom: 10px;
}

/* ================================================================
   LAYOUT
================================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(82,180,154,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--text);
}
.btn-white:hover {
  background: var(--bg-alt);
  transform: translateY(-1px);
}

/* ================================================================
   TOP BAR
================================================================ */
.topbar {
  background: var(--green-footer);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--charcoal);
}

.topbar__item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--green-dark);
}

.topbar__item img {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ================================================================
   NAVIGATION
================================================================ */
#nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--nav-h);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-text span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}

.nav__logo-text span:last-child {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 7px 14px;
  border-radius: 6px;
  color: var(--text-sec);
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--green-dark);
  background: var(--green-bg);
}

.nav__cta { display: flex; align-items: center; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px 20px;
  gap: 2px;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-size: 0.9rem;
  font-weight: 400;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-sec);
  transition: all 0.2s;
}

.nav__mobile a:hover { background: var(--green-bg); color: var(--green-dark); }

.nav__mobile .btn { margin-top: 10px; align-self: flex-start; }

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
  background: var(--green-bg);
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero p {
  margin-top: 14px;
  font-size: 1.05rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================================
   SECTION HEADER
================================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 { margin-bottom: 12px; }

.section-header p {
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ================================================================
   HERO (home page)
================================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  padding: calc(60px + var(--nav-h)) 0 60px;
  margin-top: calc(-1 * var(--nav-h));
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/Background_2.png');
  background-size: cover;
  background-position: center right;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.93) 42%, rgba(255,255,255,0.25) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 0;
}

.hero__logo-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.hero__logo-img {
  height: clamp(130px, 18vw, 200px);
  width: auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-bg);
  border: 1px solid var(--green-light);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero__title { margin-bottom: 22px; }

.hero__title em {
  color: var(--green);
  font-style: normal;
}

.hero__subtitle {
  margin-bottom: 36px;
  font-size: 1.02rem;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-sec);
  font-weight: 400;
}

.hero__phone svg { width: 16px; height: 16px; color: var(--green); }
.hero__phone img { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; }

/* ================================================================
   SERVICES GRID
================================================================ */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 46px;
  height: 46px;
  background: var(--green-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--green-dark);
}

.service-card__icon--img {
  background: transparent;
  border-radius: 0;
  width: 54px;
  height: 54px;
}

.service-card__icon--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

/* ================================================================
   ABOUT SPLIT
================================================================ */
.about { background: var(--bg-alt); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--green-light);
  /* Replace with: <img src="images/about.jpg" alt="..."> */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.82rem;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__copy { display: flex; flex-direction: column; gap: 18px; }
.about__copy p { font-size: 0.97rem; }

/* ================================================================
   VISION
================================================================ */
.vision { background: var(--white); }

.vision__inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
}

.vision__icon {
  width: 160px;
  height: 160px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vision__icon svg {
  width: 72px;
  height: 72px;
  color: var(--green);
  opacity: 0.9;
}

.vision__icon--img {
  background: transparent;
  border-radius: 0;
}

.vision__icon--img img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.vision__copy { display: flex; flex-direction: column; gap: 14px; padding-top: 8px; }

/* ================================================================
   MISSION
================================================================ */
.mission { background: var(--bg-alt); }

.mission__box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 52px;
  max-width: 820px;
  margin: 0 auto;
}

.mission__intro {
  text-align: center;
  margin-bottom: 44px;
}

.mission__intro p {
  font-size: 1.02rem;
  max-width: 580px;
  margin: 14px auto 0;
}

.mission__divider {
  width: 40px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 14px auto 0;
}

.ons-doen {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 32px;
  display: block;
}

.mission__pillars { display: flex; flex-direction: column; gap: 26px; }

.mission__pillar {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}

.mission__pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--green-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission__pillar-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green-dark);
}

.mission__pillar-icon--img {
  background: transparent;
  border-radius: 0;
}
.mission__pillar-icon--img img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.mission__pillar h4 { margin-bottom: 5px; }
.mission__pillar p { font-size: 0.92rem; }

/* ================================================================
   WHY SECTION
================================================================ */
.why { background: var(--white); }

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--green-light);
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.82rem;
}

.why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why__list { display: flex; flex-direction: column; gap: 22px; }

.why__item { display: flex; gap: 16px; align-items: flex-start; }

.why__check {
  width: 28px;
  height: 28px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why__check svg { width: 14px; height: 14px; color: var(--green-dark); }

.why__check--img { background: transparent; }
.why__check--img img { width: 28px; height: 28px; object-fit: contain; }

.why__item h4 { margin-bottom: 4px; }
.why__item p { font-size: 0.92rem; }

/* ================================================================
   HOW WE WORK
================================================================ */
.how { background: var(--bg-alt); }

.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.how__step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.how__step-number {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.how__step p { font-size: 0.9rem; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.star { color: var(--green); font-size: 1rem; }

.testimonial-star { width: 18px; height: 18px; object-fit: contain; display: inline-block; }

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}

.testimonial-author {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-sec);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ================================================================
   CTA BANNER
================================================================ */
.cta-banner {
  background: var(--charcoal);
  padding: 80px 0;
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-banner__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

.cta-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__copy { display: flex; flex-direction: column; gap: 22px; }

.cta-banner__copy h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.cta-banner__list { display: flex; flex-direction: column; gap: 12px; }

.cta-banner__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}

.cta-banner__list li svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

/* ================================================================
   CONTACT
================================================================ */
.contact { background: var(--bg-alt); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact__info { display: flex; flex-direction: column; gap: 32px; }

.contact__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__logo-icon { width: 50px; height: 50px; }

.contact__logo-img { height: 50px; width: auto; }

.contact__details { display: flex; flex-direction: column; gap: 16px; }

.contact__item { display: flex; align-items: flex-start; gap: 14px; }

.contact__item-icon {
  width: 40px;
  height: 40px;
  background: var(--green-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__item-icon svg { width: 18px; height: 18px; color: var(--green-dark); }

.contact__item-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 3px;
}

.contact__item-value {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}

.contact__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}

.contact__whatsapp:hover { background: #1DB954; transform: translateY(-1px); }
.contact__whatsapp svg { width: 18px; height: 18px; }

/* Form */
.contact__form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.contact__form-wrapper h3 { margin-bottom: 28px; font-size: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-sec);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(82,180,154,0.12);
}

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

.contact__form-actions {
  display: flex;
  gap: 12px;
}

/* Map placeholder */
.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 20px;
  text-align: center;
}

.map-placeholder svg { width: 28px; height: 28px; opacity: 0.35; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--green-footer);
  padding: 52px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 44px;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-sm);
  width: 200px;
  height: 200px;
}

.footer__logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer__logo-text span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer__logo-text span:last-child {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.footer__tagline {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 340px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 4px;
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer__contact-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.footer__contact-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  line-height: 1.5;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 16px 0;
  text-align: center;
}

.footer__bottom p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer__bottom a { color: rgba(255,255,255,0.85); }

/* ================================================================
   FADE-UP ANIMATION
================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up.d1 { transition-delay: 0.08s; }
.fade-up.d2 { transition-delay: 0.16s; }
.fade-up.d3 { transition-delay: 0.24s; }
.fade-up.d4 { transition-delay: 0.32s; }
.fade-up.d5 { transition-delay: 0.40s; }
.fade-up.d6 { transition-delay: 0.48s; }

/* ================================================================
   DIVIDER ACCENT
================================================================ */
.accent-line {
  width: 40px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .how__steps    { grid-template-columns: repeat(2, 1fr); }
  .cta-banner__image { display: none; }
  .cta-banner__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .topbar { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero { min-height: 100svh; }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.7) 100%);
  }

  .about__inner,
  .why__inner,
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }

  .about__image,
  .why__image { aspect-ratio: 16/9; position: static; }

  .services-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .how__steps       { grid-template-columns: 1fr 1fr; }

  .vision__inner { grid-template-columns: 1fr; text-align: center; }
  .vision__icon  { margin: 0 auto 8px; }

  .mission__box { padding: 28px 22px; }
  .mission__pillar { grid-template-columns: 42px 1fr; gap: 14px; }

  .cta-banner { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form-wrapper { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .how__steps { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}
