:root {
  --color-green: #0B5D34;
  --color-green-dark: #073D22;
  --color-gold: #C9A02C;
  --color-gold-light: #E8C766;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F7F7F5;
  --color-text: #1A1A1A;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 10px;
  --shadow: 0 8px 24px rgba(11, 93, 52, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.18;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-green-dark);
  box-shadow: 0 6px 18px rgba(201, 160, 44, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn-outline-green {
  background: transparent;
  border-color: var(--color-green);
  color: var(--color-green);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  color: var(--color-green-dark);
  box-shadow: 0 4px 18px rgba(7, 61, 34, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 48px; width: auto; border-radius: 6px; background: #fff; padding: 2px; }
.brand span { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--color-green-dark); }
.site-header .brand span { display: none; }
.site-header .brand img { height: 56px; }


.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-weight: 500;
  color: var(--color-green-dark);
  position: relative;
  padding: 6px 0;
}
.nav a.active, .nav a:hover { color: var(--color-green); }
.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-gold);
}

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: flex;
  border: 1px solid rgba(11, 93, 52, 0.35);
  border-radius: 20px;
  overflow: hidden;
}
.lang-toggle button {
  background: transparent;
  border: none;
  color: var(--color-green-dark);
  padding: 5px 12px;
  font-size: 0.8rem;
  cursor: pointer;
  font-weight: 600;
}
.lang-toggle button.active {
  background: var(--color-gold);
  color: var(--color-green-dark);
}

.whatsapp-btn {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-green-dark);
  padding: 10px 18px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-green-dark);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7,61,34,0.92) 0%, rgba(11,93,52,0.75) 55%, rgba(201,160,44,0.35) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 640px; padding: 80px 24px; }
.hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.hero-content p { font-size: 1.1rem; margin-bottom: 32px; color: #f2f2f2; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.page-hero {
  position: relative;
  padding: 120px 24px 60px;
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, var(--color-green-dark), var(--color-green));
}
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.page-hero p { color: #e8e8e8; max-width: 640px; margin: 0 auto; }

/* Stats bar */
.stats-bar {
  background: var(--color-bg-alt);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-icon { color: var(--color-gold); margin: 0 auto 10px; }
.stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-green);
}
.stat-label { font-size: 0.85rem; color: #555; margin-top: 4px; }

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-header { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--color-green-dark); }
.section-header p { margin-top: 14px; color: #555; }

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card img { height: 190px; object-fit: cover; }
.services-grid-expanded { grid-template-columns: repeat(5, 1fr); }
.service-card-expanded img { height: 170px; }
.service-card-expanded .card-body { padding: 20px; }
.service-card-expanded .btn { padding: 11px 16px; font-size: 0.82rem; }
.visual-proof {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.visual-proof img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.visual-proof .eyebrow {
  display: inline-block;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.visual-proof h2 { color: var(--color-green-dark); font-size: clamp(1.55rem, 3vw, 2.15rem); margin-bottom: 14px; }
.visual-proof p { color: #555; }
.card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-icon { color: var(--color-green); }
.card-body h3 { font-size: 1.15rem; color: var(--color-green-dark); }
.card-body p { color: #555; font-size: 0.92rem; flex: 1; }
.card-body .btn { align-self: flex-start; margin-top: 6px; }

/* Zigzag (services detail) */
.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}
.zigzag-row:last-child { border-bottom: none; }
.zigzag-row.reverse .zigzag-media { order: 2; }
.zigzag-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.zigzag-text .eyebrow {
  color: var(--color-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
}
.zigzag-text h2 { color: var(--color-green-dark); font-size: 1.7rem; margin: 10px 0 16px; }
.zigzag-text p { color: #555; margin-bottom: 24px; }

/* About */
.about-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-block img { border-radius: var(--radius); box-shadow: var(--shadow); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.value-card .card-icon { margin: 0 auto 14px; }
.value-card h3 { color: var(--color-green-dark); font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { color: #555; font-size: 0.9rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--color-green-dark); }
.form-group input, .form-group textarea {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-green);
}
.form-status { font-size: 0.9rem; }
.form-status.success { color: var(--color-green); }
.form-status.error { color: #b3261e; }

.contact-info-list { display: flex; flex-direction: column; gap: 22px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .card-icon { flex-shrink: 0; }
.contact-info-item h4 { color: var(--color-green-dark); font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p { color: #555; font-size: 0.9rem; }
.map-frame { margin-top: 24px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: none; width: 100%; height: 260px; }

/* Footer */
.site-footer { background: var(--color-green-dark); color: #eee; padding: 60px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 42px; background: #fff; border-radius: 6px; padding: 2px; }
.footer-brand span { font-family: var(--font-heading); font-weight: 700; color: #fff; }
.site-footer p { color: #cfcfcf; font-size: 0.9rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #cfcfcf; font-size: 0.9rem; }
.footer-links a:hover { color: var(--color-gold-light); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.social-links a:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-green-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #aaa;
}


/* Sales sections */
.promise-band {
  background: var(--color-green-dark);
  color: #fff;
  padding: 42px 0;
}
.promise-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}
.promise-grid h2,
.split-content h2,
.trust-panel h2,
.cta-strip h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
.promise-grid .eyebrow,
.split-content .eyebrow,
.cta-strip .eyebrow,
.trust-panel .eyebrow {
  display: inline-block;
  color: var(--color-gold-light);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.promise-grid p { color: #e8efe9; font-size: 1.02rem; }

.split-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.split-content h2,
.trust-panel h2 { color: var(--color-green-dark); margin-bottom: 16px; }
.split-content p { color: #555; margin-bottom: 24px; }
.feature-list { display: grid; gap: 16px; }
.feature-item {
  border-left: 4px solid var(--color-gold);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.feature-item strong { display: block; color: var(--color-green-dark); margin-bottom: 6px; }
.feature-item span { color: #555; font-size: 0.93rem; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.audience-card,
.benefit-card {
  background: #fff;
  border: 1px solid #ece8dc;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}
.audience-card h3,
.benefit-card h3,
.process-step h3 { color: var(--color-green-dark); font-size: 1.05rem; margin-bottom: 8px; }
.audience-card p,
.benefit-card p,
.process-step p { color: #555; font-size: 0.92rem; }

.section-process {
  background:
    linear-gradient(180deg, rgba(11,93,52,0.05), rgba(201,160,44,0.08));
}
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px;
  border-top: 4px solid var(--color-green);
  box-shadow: var(--shadow);
}
.process-step span {
  display: inline-flex;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.benefit-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.trust-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 38px;
}
.trust-panel p { color: #555; }
.trust-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.trust-facts div {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  border: 1px solid #eee;
}
.trust-facts strong {
  display: block;
  color: var(--color-green);
  font-family: var(--font-heading);
  font-size: 1.55rem;
}
.trust-facts span { color: #555; font-size: 0.88rem; }

.cta-strip {
  background: linear-gradient(135deg, var(--color-green-dark), var(--color-green));
  color: #fff;
  padding: 58px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-strip p { color: #e8efe9; margin-top: 10px; max-width: 620px; }

@media (max-width: 1200px) {
  .services-grid-expanded { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1100px) {
  .audience-grid,
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .promise-grid,
  .split-content,
  .trust-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cta-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .audience-grid,
  .process-list,
  .benefit-grid { grid-template-columns: 1fr; }
  .trust-panel { padding: 28px 22px; }
}


/* Icon service boxes */
.promise-band { padding: 76px 0; }
.promise-band + .section,
.promise-band + .section + .section-alt { padding: 110px 0; }

.icon-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  align-items: stretch;
}
.icon-service-box {
  background: #fff;
  border: 1px solid rgba(11, 93, 52, 0.12);
  border-radius: var(--radius);
  padding: 28px 22px;
  min-height: 252px;
  box-shadow: 0 10px 30px rgba(7, 61, 34, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.icon-service-box:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 160, 44, 0.55);
  box-shadow: 0 16px 38px rgba(7, 61, 34, 0.12);
}
.icon-service-mark {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
  background: linear-gradient(145deg, rgba(201, 160, 44, 0.18), rgba(11, 93, 52, 0.08));
  margin-bottom: 18px;
}
.icon-service-box h3 {
  color: var(--color-green-dark);
  font-size: 1.02rem;
  margin-bottom: 10px;
}
.icon-service-box p {
  color: #555;
  font-size: 0.91rem;
  line-height: 1.58;
}

@media (max-width: 1200px) {
  .icon-services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .promise-band,
  .promise-band + .section,
  .promise-band + .section + .section-alt { padding: 78px 0; }
  .icon-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .icon-services-grid { grid-template-columns: 1fr; }
  .icon-service-box { min-height: auto; padding: 24px 20px; }
}


/* Final content polish */
.nav a {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav a::after { transition: transform 0.18s ease, opacity 0.18s ease; transform: scaleX(0); opacity: 0; }
.nav a.active::after,
.nav a:hover::after { transform: scaleX(1); opacity: 1; }
.nav a:hover { transform: translateY(-1px); }

.section:nth-of-type(even) { background: var(--color-bg-alt); }
.section:nth-of-type(odd) { background: #fff; }
.visual-proof-section { background: #eef5ef; }
.section-process { background: linear-gradient(180deg, rgba(11,93,52,0.08), rgba(201,160,44,0.12)); }
.project-talk-section {
  background: #fff;
  padding-top: 110px;
  padding-bottom: 110px;
}
.project-talk > p {
  max-width: 680px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.project-talk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 34px auto 32px;
  text-align: left;
}
.project-talk-grid div {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 22px;
}
.project-talk-grid strong {
  color: var(--color-green-dark);
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.project-talk-grid p { color: #555; font-size: 0.92rem; }

.icon-services-grid { grid-template-columns: repeat(3, 1fr); }
.icon-service-box { min-height: 278px; }

.zigzag-text p {
  font-size: 1rem;
  line-height: 1.75;
}
.page-hero + .section { padding-top: 90px; }

@media (max-width: 900px) {
  .project-talk-grid { grid-template-columns: 1fr; }
  .project-talk-section { padding-top: 78px; padding-bottom: 78px; }
}


/* Hero split and stronger interactive contrast */
.header-inner {
  min-height: 78px;
}
.nav {
  align-self: stretch;
}
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.header-actions {
  align-self: stretch;
}

.hero-split {
  min-height: 78vh;
  background:
    linear-gradient(135deg, rgba(7,61,34,0.96), rgba(11,93,52,0.88) 56%, rgba(201,160,44,0.30));
  overflow: hidden;
}
.hero-split::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(232,199,102,0.22), transparent 28%),
    linear-gradient(120deg, rgba(7,61,34,0.82), rgba(7,61,34,0.36));
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 56px;
  align-items: center;
  width: 100%;
  padding-top: 78px;
  padding-bottom: 78px;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 28px 70px rgba(0,0,0,0.30);
}
.hero-split .hero-content {
  max-width: 680px;
  padding: 0;
  text-align: left;
}
.hero-split .hero-content h1,
.hero-split .hero-content p {
  text-align: left;
}
.hero-split .hero-actions {
  justify-content: flex-start;
  align-items: center;
}

.icon-service-box,
.feature-item,
.audience-card,
.benefit-card,
.process-step,
.project-talk-grid div {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.icon-service-box:hover,
.feature-item:hover,
.audience-card:hover,
.benefit-card:hover,
.process-step:hover,
.project-talk-grid div:hover {
  transform: translateY(-5px);
  background: var(--color-green-dark);
  border-color: var(--color-gold);
  box-shadow: 0 20px 44px rgba(7, 61, 34, 0.22);
}
.icon-service-box:hover h3,
.icon-service-box:hover p,
.feature-item:hover strong,
.feature-item:hover span,
.audience-card:hover h3,
.audience-card:hover p,
.benefit-card:hover h3,
.benefit-card:hover p,
.process-step:hover h3,
.process-step:hover p,
.project-talk-grid div:hover strong,
.project-talk-grid div:hover p {
  color: #fff;
}
.icon-service-box:hover .icon-service-mark,
.process-step:hover span {
  color: var(--color-green-dark);
  background: var(--color-gold-light);
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 54px;
    padding-bottom: 64px;
  }
  .hero-media { order: 1; }
  .hero-split .hero-content { order: 2; }
  .hero-media img { aspect-ratio: 16 / 10; }
  .header-actions { align-self: center; }
}

/* Responsive */
@media (max-width: 900px) {
  .nav, .header-actions .lang-toggle { display: none; }
  .nav-toggle { display: block; }
  .site-header.nav-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(11, 93, 52, 0.12);
    box-shadow: 0 14px 24px rgba(7, 61, 34, 0.12);
    padding: 20px 24px;
    gap: 16px;
    align-items: flex-start;
  }
  .site-header.nav-open .nav a {
    width: 100%;
    text-align: left;
  }
  .site-header.nav-open .lang-toggle { display: flex; margin-top: 4px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid,
  .services-grid-expanded { grid-template-columns: 1fr; }
  .visual-proof { grid-template-columns: 1fr; }
  .zigzag-row, .zigzag-row.reverse { grid-template-columns: 1fr; }
  .zigzag-row.reverse .zigzag-media { order: 0; }
  .about-block { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* Mobile overflow guard */
@media (max-width: 620px) {
  .icon-services-grid {
    grid-template-columns: 1fr !important;
  }
  .icon-service-box {
    width: 100%;
  }
}


/* Floating WhatsApp CTA */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px 13px 14px;
  border-radius: 999px;
  background: #25d366;
  color: #073d22;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 14px 34px rgba(7, 61, 34, 0.28);
  border: 2px solid rgba(255,255,255,0.9);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.floating-whatsapp:hover {
  transform: translateY(-4px);
  background: #2fe477;
  box-shadow: 0 18px 42px rgba(7, 61, 34, 0.36);
}
.floating-whatsapp-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #128c4a;
}

@media (max-width: 620px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 11px 14px 11px 11px;
    font-size: 0.84rem;
  }
  .floating-whatsapp-icon {
    width: 32px;
    height: 32px;
  }
}


/* Lighter heading typography */
.hero-content h1 {
  font-weight: 500;
}
.section-header h2,
.promise-grid h2,
.split-content h2,
.visual-proof h2,
.project-talk h2,
.cta-strip h2,
.zigzag-text h2,
.about-block h2 {
  font-weight: 500;
}
.card-body h3,
.icon-service-box h3,
.audience-card h3,
.benefit-card h3,
.process-step h3,
.value-card h3 {
  font-weight: 600;
}


/* CTA consistency and floating bubble motion */
.btn,
.whatsapp-btn {
  min-height: 48px;
  min-width: 156px;
  justify-content: center;
  text-align: center;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: var(--radius);
}
.hero-actions .btn,
.cta-strip .btn,
.zigzag-text .btn,
.project-talk .btn {
  min-width: 180px;
}
.floating-whatsapp {
  right: 18px;
  bottom: 18px;
  gap: 8px;
  padding: 9px 13px 9px 9px;
  font-size: 0.78rem;
  animation: whatsapp-bounce 2s ease-in-out infinite;
}
.floating-whatsapp-icon {
  width: 30px;
  height: 30px;
}
@keyframes whatsapp-bounce {
  0%, 82%, 100% { transform: translateY(0); }
  88% { transform: translateY(-7px); }
  94% { transform: translateY(0); }
  97% { transform: translateY(-3px); }
}
.floating-whatsapp:hover {
  animation-play-state: paused;
}
@media (max-width: 620px) {
  .btn,
  .whatsapp-btn {
    min-height: 46px;
    min-width: 148px;
  }
  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 8px 11px 8px 8px;
    font-size: 0.76rem;
  }
  .floating-whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}


/* Unified CTA width override */
.btn,
.whatsapp-btn {
  min-width: 180px;
}
@media (max-width: 620px) {
  .btn,
  .whatsapp-btn {
    min-width: 170px;
  }
}


/* Final CTA sizing refinement */
.hero-actions .btn,
.cta-strip .btn,
.zigzag-text .btn,
.project-talk .btn {
  width: 220px;
  max-width: 100%;
}
.floating-whatsapp {
  padding: 6px 10px 6px 7px;
  gap: 7px;
  font-size: 0.72rem;
  min-height: 40px;
}
.floating-whatsapp-icon {
  width: 24px;
  height: 24px;
}
.floating-whatsapp-icon svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 620px) {
  .hero-actions .btn,
  .cta-strip .btn,
  .zigzag-text .btn,
  .project-talk .btn {
    width: 100%;
  }
  .floating-whatsapp {
    padding: 6px 9px 6px 7px;
    font-size: 0.7rem;
  }
}


/* Final CTA no-wrap refinement */
.hero-actions .btn,
.cta-strip .btn,
.zigzag-text .btn,
.project-talk .btn {
  width: 250px;
  flex: 0 0 250px;
  white-space: nowrap;
}
@media (max-width: 620px) {
  .hero-actions .btn,
  .cta-strip .btn,
  .zigzag-text .btn,
  .project-talk .btn {
    width: 100%;
    flex-basis: auto;
    white-space: normal;
  }
}


/* Hero image emphasis and site signature */
.hero-layout {
  grid-template-columns: minmax(360px, 1.18fr) minmax(300px, 0.82fr);
  gap: 64px;
}
.hero-media img {
  aspect-ratio: 1.18 / 1;
  min-height: 520px;
}
.digital-signature {
  margin-top: 28px;
  padding: 16px 24px;
  background: #050505;
  color: #bdbdbd;
  text-align: center;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}
.digital-signature a {
  color: #fff;
  font-weight: 700;
  margin-left: 6px;
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-underline-offset: 4px;
}
.digital-signature a:hover {
  color: var(--color-gold-light);
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-media img {
    min-height: 360px;
    aspect-ratio: 16 / 11;
  }
}


/* Menu, hero CTA and micro animation refinement */
.header-inner {
  justify-content: flex-start;
  gap: 26px;
}
.nav {
  margin-left: 10px;
  margin-right: 0;
  justify-content: flex-start;
  gap: 22px;
}
.header-actions {
  margin-left: auto;
}
.nav a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.nav a.active,
.nav a:hover {
  color: #fff;
  background: var(--color-green-dark);
  transform: translateY(-2px);
}
.nav a.active::after,
.nav a:hover::after {
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 2px;
  background: var(--color-gold-light);
}

.hero-actions .btn {
  width: 250px !important;
  flex: 0 0 250px !important;
  min-height: 56px;
  white-space: nowrap;
}

@keyframes sectionRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes softPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(7, 61, 34, 0.08); }
  50% { box-shadow: 0 14px 34px rgba(201, 160, 44, 0.13); }
}
.section,
.promise-band,
.cta-strip,
.site-footer {
  animation: sectionRise 0.55s ease both;
}
.hero-media img,
.visual-proof img,
.about-block img,
.zigzag-media img {
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}
.hero-media img:hover,
.visual-proof img:hover,
.about-block img:hover,
.zigzag-media img:hover {
  transform: translateY(-4px) scale(1.015);
  filter: saturate(1.06) contrast(1.04);
}
.icon-service-box,
.feature-item,
.audience-card,
.benefit-card,
.process-step,
.project-talk-grid div,
.contact-info-item,
.value-card {
  animation: softPulse 4s ease-in-out infinite;
}
.btn,
.whatsapp-btn,
.floating-whatsapp {
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background-color 0.18s ease;
}
.btn:hover,
.whatsapp-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
}

@media (max-width: 900px) {
  .header-inner {
    justify-content: space-between;
    gap: 16px;
  }
  .nav {
    margin-left: 0;
    gap: 16px;
  }
  .nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 12px;
  }
}
@media (max-width: 620px) {
  .hero-actions .btn {
    width: 100% !important;
    flex: 1 1 auto !important;
    white-space: normal;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section,
  .promise-band,
  .cta-strip,
  .site-footer,
  .icon-service-box,
  .feature-item,
  .audience-card,
  .benefit-card,
  .process-step,
  .project-talk-grid div,
  .contact-info-item,
  .value-card {
    animation: none !important;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}


/* Keep hero CTA buttons side by side */
.hero-actions {
  flex-wrap: nowrap;
}
.hero-actions .btn {
  width: 230px !important;
  flex: 0 0 230px !important;
}
@media (max-width: 760px) {
  .hero-actions {
    flex-wrap: wrap;
  }
  .hero-actions .btn {
    width: 100% !important;
    flex: 1 1 100% !important;
  }
}


/* Mobile hero order: text before image */
@media (max-width: 900px) {
  .hero-media {
    order: 2 !important;
  }
  .hero-split .hero-content {
    order: 1 !important;
  }
}


/* Slightly smaller H1 and H2 */
.hero-content h1 {
  font-size: clamp(1.75rem, 3.15vw, 2.55rem);
}
.section-header h2,
.promise-grid h2,
.split-content h2,
.visual-proof h2,
.project-talk h2,
.cta-strip h2,
.zigzag-text h2,
.about-block h2,
.page-hero h1 {
  font-size: clamp(1.35rem, 2.45vw, 1.9rem);
}
@media (max-width: 620px) {
  .hero-content h1 {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }
  .section-header h2,
  .promise-grid h2,
  .split-content h2,
  .visual-proof h2,
  .project-talk h2,
  .cta-strip h2,
  .zigzag-text h2,
  .about-block h2,
  .page-hero h1 {
    font-size: clamp(1.25rem, 6.5vw, 1.65rem);
  }
}


/* Language toggle placement */
.header-actions .lang-toggle {
  order: 1;
}
.header-actions .whatsapp-btn {
  order: 2;
}
.header-actions .nav-toggle {
  order: 3;
}
@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .header-actions .whatsapp-btn {
    display: none;
  }
  .header-actions .lang-toggle {
    display: flex !important;
  }
  .site-header.nav-open .lang-toggle {
    margin-top: 0;
  }
}


/* Footer bottom and larger active menu pill */
.site-footer {
  padding-bottom: 0;
}
.digital-signature {
  margin-bottom: 0;
}
.nav a {
  padding: 13px 18px;
  min-height: 48px;
  border-radius: 14px;
}
.nav a.active,
.nav a:hover {
  background: var(--color-green-dark);
  box-shadow: 0 10px 24px rgba(7, 61, 34, 0.16);
}
.nav a.active::after,
.nav a:hover::after {
  left: 18px;
  right: 18px;
  bottom: 6px;
}
@media (max-width: 900px) {
  .nav a {
    min-height: 46px;
    padding: 12px 18px;
  }
}


/* Black post-hero promise section */
.hero + .promise-band,
.hero + .promise-band .promise-band {
  background: #050505;
  color: #fff;
}
.hero + .promise-band .eyebrow,
.hero + .promise-band .promise-band .eyebrow {
  color: var(--color-gold-light);
}
.hero + .promise-band h2,
.hero + .promise-band .promise-band h2 {
  color: #fff;
}
.hero + .promise-band p,
.hero + .promise-band .promise-band p {
  color: rgba(255, 255, 255, 0.82);
}


/* Restore dark text in the home section after the black promise band */
.promise-band + .section,
.promise-band + .section .split-content,
.promise-band + .section .feature-item {
  color: var(--color-text);
}
.promise-band + .section h2,
.promise-band + .section .feature-item strong {
  color: var(--color-green-dark);
}
.promise-band + .section p,
.promise-band + .section .feature-item span {
  color: #555;
}
.promise-band + .section .eyebrow {
  color: var(--color-gold);
}
