/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal:        #1A7A8A;
  --teal-dark:   #135F6C;
  --teal-light:  #E6F4F6;
  --green:       #7DC242;
  --green-dark:  #5E9A2E;
  --green-light: #F0F9E8;
  --text:        #1E2D36;
  --muted:       #5A7080;
  --border:      #D4E6EA;
  --white:       #FFFFFF;
  --bg-light:    #F4F9FA;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(26,122,138,.10);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
/* WordPress admin bar offset */
body.admin-bar #navbar { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar #navbar { top: 46px; } }

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

/* ── Typography helpers ───────────────────────────────────────────────────── */
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); margin-bottom: .5rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--text); line-height: 1.25;
}
.section-title span { color: var(--teal); }
.section-desc { color: var(--muted); max-width: 580px; margin-top: .75rem; }
.text-center { text-align: center; }
.text-center .section-desc { margin-inline: auto; }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container { max-width: 1140px; margin-inline: auto; padding-inline: 1.5rem; }
.section { padding-block: 5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 50px; font-size: .95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent; transition: all .22s ease; white-space: nowrap;
  font-family: inherit;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(125,194,66,.35); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: var(--white); color: var(--teal); border-color: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,122,138,.3); color: var(--white); }

/* ── NAVBAR ───────────────────────────────────────────────────────────────── */
/* ── NAVBAR ───────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding-block: .9rem;
}
#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  padding-block: .6rem;
}

/* Nav inner row */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo block — div wrapper so no nested <a> tags */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.nav-logo-link,
.nav-logo-text-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Logo image — constrained regardless of native image size */
.nav-logo-img {
  display: block;
  height: 40px !important;
  width:  40px !important;
  max-height: 40px;
  max-width:  40px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Logo text */
.nav-logo-text { line-height: 1.2; }
.nav-logo-name {
  font-weight: 800;
  font-size: .9rem;
  color: var(--white);
  transition: color .3s;
  white-space: nowrap;
}
#navbar.scrolled .nav-logo-name { color: var(--teal); }
.nav-logo-tag {
  font-size: .65rem;
  color: rgba(255,255,255,.7);
  font-weight: 400;
  white-space: nowrap;
  transition: color .3s;
}
#navbar.scrolled .nav-logo-tag { color: var(--muted); }

/* Nav links — reset WP menu defaults */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  justify-content: center;
}
.nav-links li {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Remove WP sub-menu dropdowns we don't use */
.nav-links .sub-menu { display: none; }

.nav-links a {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: color .2s;
  position: relative;
  white-space: nowrap;
  padding: .25rem 0;
  text-decoration: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .2s;
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links .current-menu-item > a::after { transform: scaleX(1); }
#navbar.scrolled .nav-links a { color: var(--text); }
#navbar.scrolled .nav-links a:hover { color: var(--teal); }
#navbar.scrolled .nav-links .current-menu-item > a { color: var(--teal); }

/* CTA button */
.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: .6rem 1.25rem; font-size: .82rem; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--white);
  border-radius: 2px;
  transition: background .3s;
}
#navbar.scrolled .nav-burger span { background: var(--text); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, #1FA89C 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(125,194,66,.18) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 40%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding-block: 7rem 4rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.9);
  font-size: .8rem; font-weight: 600; padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 1.25rem; }
.hero-title .accent { color: var(--green); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 520px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15); }
.hero-stat-val { font-size: 1.75rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: .25rem; }
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-card-wrap { position: relative; width: 100%; max-width: 420px; }
.hero-logo-card { background: rgba(255,255,255,.12); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.2); border-radius: 24px; padding: 2.5rem; text-align: center; }
.hero-logo-card img, .hero-logo-card .custom-logo-link img { height: 140px; width: auto; margin-inline: auto; }
.hero-logo-card-title { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-top: 1.25rem; }
.hero-logo-card-sub { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .25rem; }
.hero-float-badge {
  position: absolute; background: var(--white); border-radius: var(--radius); padding: .75rem 1rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .6rem; font-size: .8rem; font-weight: 600; color: var(--text);
}
.hero-float-badge .icon { width: 32px; height: 32px; background: var(--green-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.badge-top-right { top: -1rem; right: -1rem; }
.badge-bottom-left { bottom: -1rem; left: -1rem; }

/* ── TRUST BAR ────────────────────────────────────────────────────────────── */
#trust { background: var(--teal-dark); padding-block: 1.25rem; }
.trust-inner { display: flex; align-items: center; gap: 3rem; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.85); font-size: .875rem; font-weight: 500; }
.trust-item .icon { color: var(--green); font-size: 1.1rem; }

/* ── ABOUT ────────────────────────────────────────────────────────────────── */
#about { background: var(--white); }
.about-placeholder { width: 100%; height: 420px; background: linear-gradient(135deg, var(--teal-light), #D0EEF2); border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.about-placeholder img, .about-placeholder .custom-logo-link img { height: 100px; width: auto; opacity: .7; }
.about-placeholder p { color: var(--teal); font-weight: 500; font-size: .9rem; }
.about-badge-stat { position: absolute; bottom: 1.5rem; right: -1rem; background: var(--teal); color: var(--white); border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow); text-align: center; min-width: 130px; }
.about-badge-stat .val { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge-stat .lbl { font-size: .75rem; opacity: .8; margin-top: .2rem; }
.about-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .85rem; }
.about-list-item { display: flex; align-items: flex-start; gap: .75rem; }
.check-icon { width: 22px; height: 22px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .15rem; }
.check-icon::after { content: '✓'; color: var(--green-dark); font-size: .7rem; font-weight: 700; }
.about-list-item p { color: var(--muted); font-size: .95rem; }
.about-list-item strong { color: var(--text); }
.about-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── STATS ────────────────────────────────────────────────────────────────── */
#stats { background: var(--teal); padding-block: 3.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-num { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: var(--white); line-height: 1; }
.stat-num span { color: var(--green); }
.stat-label { font-size: .875rem; color: rgba(255,255,255,.7); margin-top: .4rem; }

/* ── SERVICES ─────────────────────────────────────────────────────────────── */
#services { background: var(--bg-light); }
.services-header { margin-bottom: 3rem; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .25s, box-shadow .25s, border-color .25s; height: 100%; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(26,122,138,.14); border-color: var(--teal); }
.service-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.25rem; }
.service-icon.teal { background: var(--teal-light); }
.service-icon.green { background: var(--green-light); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.service-card p { color: var(--muted); font-size: .9rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.service-tag { background: var(--bg-light); color: var(--teal); font-size: .75rem; font-weight: 600; padding: .25rem .7rem; border-radius: 50px; border: 1px solid var(--border); }

/* ── PROCESS ──────────────────────────────────────────────────────────────── */
#process { background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; margin-top: 3rem; }
.process-steps::before { content: ''; position: absolute; top: 2rem; left: calc(16.67% + 1rem); right: calc(16.67% + 1rem); height: 2px; background: linear-gradient(90deg, var(--teal), var(--green)); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num { width: 64px; height: 64px; border-radius: 50%; background: var(--teal); color: var(--white); font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-bottom: 1.5rem; box-shadow: 0 0 0 8px var(--teal-light); }
.process-step:nth-child(3) .process-num { background: var(--green); box-shadow: 0 0 0 8px var(--green-light); }
.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.process-step p { color: var(--muted); font-size: .9rem; }

/* ── ROLES ────────────────────────────────────────────────────────────────── */
#roles { background: var(--bg-light); }
.roles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.role-pill { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; align-items: center; gap: .75rem; font-size: .9rem; font-weight: 500; color: var(--text); transition: border-color .2s, box-shadow .2s; }
.role-pill:hover { border-color: var(--teal); box-shadow: 0 4px 12px rgba(26,122,138,.1); }
.role-pill .dot { width: 10px; height: 10px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* ── CLIENTS ──────────────────────────────────────────────────────────────── */
#clients { background: var(--white); padding-block: 4rem; }
.clients-inner { display: flex; flex-direction: column; align-items: center; }
.clients-label { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2rem; }
.clients-logos { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.client-logo-item { font-size: 1.1rem; font-weight: 700; color: var(--muted); opacity: .6; transition: opacity .2s, color .2s; padding: .75rem 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); }
.client-logo-item:hover { opacity: 1; color: var(--teal); border-color: var(--teal); }

/* ── TESTIMONIALS ─────────────────────────────────────────────────────────── */
#testimonials { background: var(--bg-light); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); border: 1px solid var(--border); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 1rem; right: 1.5rem; font-size: 4rem; font-family: Georgia, serif; color: var(--teal-light); line-height: 1; }
.testimonial-stars { display: flex; gap: .2rem; margin-bottom: 1rem; color: var(--green); }
.testimonial-card p { color: var(--muted); font-size: .9rem; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: .875rem; }
.author-role { color: var(--muted); font-size: .8rem; }

/* ── VACANCIES ────────────────────────────────────────────────────────────── */
#vacancies { background: var(--white); }
.vacancy-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; transition: border-color .2s, box-shadow .2s; margin-bottom: 1rem; }
.vacancy-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.vacancy-info h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.no-vacancies { text-align: center; padding: 3rem; color: var(--muted); background: var(--bg-light); border-radius: var(--radius); border: 1px dashed var(--border); }

/* ── CONTACT ──────────────────────────────────────────────────────────────── */
#contact { background: var(--teal); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 1rem; }
.contact-info p { color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { width: 42px; height: 42px; background: rgba(255,255,255,.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-label { font-size: .75rem; color: rgba(255,255,255,.6); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.contact-item-value { color: var(--white); font-weight: 500; font-size: .95rem; margin-top: .15rem; }
.contact-item-value a { color: var(--white); }
.contact-item-value a:hover { color: var(--green); }
.contact-form-wrap { background: var(--white); border-radius: 20px; padding: 2.5rem; box-shadow: 0 8px 40px rgba(0,0,0,.12); }
.contact-form-wrap h3 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: 8px; font-family: inherit; font-size: .9rem; color: var(--text); background: var(--white); outline: none; transition: border-color .2s, box-shadow .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,122,138,.12); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success { display: none; text-align: center; padding: 2rem; color: var(--teal); }
.form-success .icon { font-size: 2.5rem; margin-bottom: .75rem; }
.form-success h4 { font-size: 1.1rem; font-weight: 700; }
.form-success p { color: var(--muted); font-size: .9rem; margin-top: .3rem; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
#footer { background: var(--text); color: rgba(255,255,255,.7); padding-block: 3.5rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo img, .footer-logo .custom-logo-link img { height: 44px; width: 44px; object-fit: contain; }
.footer-logo-name { font-weight: 700; color: var(--white); font-size: .95rem; line-height: 1.3; }
.footer-logo-name span { font-weight: 400; font-size: .8rem; opacity: .7; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: .875rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; padding: 0; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: .5rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; padding: 0; }
.footer-bottom-links li { list-style: none; }
.footer-bottom-links a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--green); }
.footer-domains { display: flex; gap: .75rem; flex-wrap: wrap; }
.footer-domain-tag { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.6); font-size: .75rem; padding: .2rem .7rem; border-radius: 50px; }

/* ── Scroll-to-top ────────────────────────────────────────────────────────── */
#scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; background: var(--teal); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; box-shadow: 0 4px 14px rgba(26,122,138,.3); z-index: 999; border: none; }
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { transform: translateY(-3px); }

/* ── Inner pages ──────────────────────────────────────────────────────────── */
.ldc-page-hero { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%); padding: 6rem 0 3rem; color: var(--white); }
.ldc-page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.ldc-single-post img { border-radius: var(--radius); margin-bottom: 1.5rem; }
.single-post-content { max-width: 720px; }
.single-post-content p, .single-post-content li { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.single-post-content h2, .single-post-content h3 { color: var(--text); margin: 1.5rem 0 .75rem; }

/* ── Mobile navigation ────────────────────────────────────────────────────── */
.nav-mobile { position: fixed; inset: 0; background: var(--teal-dark); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transform: translateX(-100%); transition: transform .3s ease; }
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a { font-size: 1.5rem; font-weight: 600; color: var(--white); transition: color .2s; }
.nav-mobile a:hover { color: var(--green); }
.nav-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  /* Tighten nav on medium screens */
  .nav-links { gap: 1rem; }
  .nav-logo-tag { display: none; }
}
@media (max-width: 900px) {
  /* Switch to hamburger below 900px */
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 768px) {
  .section { padding-block: 3.5rem; }
  .grid-2, .hero-content { grid-template-columns: 1fr; }
  .hero-content { padding-block: 6rem 3rem; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-right { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-badge-stat { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-stats { gap: 1.5rem; }
  .clients-logos { gap: 1.5rem; }
}
