/* =========================================================
   Nexio Enterprises — Stylesheet
   Design tokens
   ========================================================= */
:root {
  --navy: #2E4020;
  --navy-deep: #1E2A14;
  --ink: #34322B;
  --paper: #F6F4EC;
  --paper-dim: #EBE6D6;
  --brass: #8A6239;
  --brass-deep: #5C4326;
  --teal: #5F7A2E;
  --teal-deep: #4A5F24;
  --line: #DCD5C0;
  --muted: #6B6558;
  --white: #FFFFFF;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --container: 1180px;
  --radius: 14px;
  --shadow-soft: 0 18px 40px -18px rgba(46, 64, 32, 0.25);
  --shadow-soft-lg: 0 30px 70px -25px rgba(46, 64, 32, 0.35);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; color: var(--navy); }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 2.5px solid var(--teal);
  outline-offset: 3px;
}

/* =========================================================
   Utility
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brass);
  display: inline-block;
}
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-title { font-size: clamp(28px, 3.6vw, 42px); margin-top: 14px; max-width: 640px; }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-title { max-width: 720px; margin-left: auto; margin-right: auto; }
.section-sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
}
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

.bg-paper-dim { background: var(--paper-dim); }
.bg-navy { background: var(--navy); color: var(--paper); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--paper); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: var(--paper); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-brass { background: var(--brass); color: var(--navy-deep); }
.btn-brass:hover { background: #A67C4C; transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-ghost { background: transparent; border-color: rgba(46,64,32,0.25); color: var(--navy); }
.btn-ghost:hover { border-color: var(--navy); background: rgba(46,64,32,0.05); }
.btn-ghost-light { background: transparent; border-color: rgba(246,244,236,0.4); color: var(--paper); }
.btn-ghost-light:hover { border-color: var(--paper); background: rgba(246,244,236,0.08); }
.btn svg { width: 16px; height: 16px; }

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(246, 244, 236, 0.88);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 20px;
}
.brand img { height: 54px; width: auto; }
.main-nav { display: flex; gap: 4px; }
.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
}
.main-nav a:hover { background: rgba(46,64,32,0.06); }
.main-nav a.active { background: var(--navy); color: var(--paper); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.header-phone svg { width: 16px; height: 16px; color: var(--teal); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--navy); }

/* =========================================================
   Page banner (inner pages)
   ========================================================= */
.page-banner {
  position: relative;
  background: var(--navy);
  color: var(--paper);
  padding: 84px 0 88px;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138,98,57,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138,98,57,0.14) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 70%);
  opacity: 0.6;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner .eyebrow { color: var(--brass); }
.page-banner .eyebrow::before { background: var(--paper); }
.page-banner h1 { font-size: clamp(34px, 5vw, 56px); margin-top: 16px; max-width: 760px; color: var(--paper); }
.page-banner p.lead { margin-top: 18px; max-width: 620px; color: rgba(246,244,236,0.78); font-size: 17.5px; }
.breadcrumb {
  margin-top: 26px;
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(246,244,236,0.6);
}
.breadcrumb a:hover { color: var(--paper); }

/* =========================================================
   Hero (home)
   ========================================================= */
.hero {
  position: relative;
  padding: 76px 0 100px;
  overflow: hidden;
  background: var(--paper);
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,98,57,0.16), transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(36px, 4.6vw, 58px);
  margin-top: 18px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: normal; color: var(--brass); }
.hero .section-sub { font-size: 18px; max-width: 520px; }
.hero-media { position: relative; }
.hero-media img { width: 100%; height: auto; }
.hero-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
}
.hero-stats .num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--navy);
  font-weight: 600;
}
.hero-stats .label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* =========================================================
   Stats strip
   ========================================================= */
.stats-strip {
  background: var(--navy);
  color: var(--paper);
  padding: 44px 0;
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item { text-align: center; border-left: 1px solid rgba(246,244,236,0.15); padding-left: 20px; }
.stat-item:first-child { border-left: none; padding-left: 0; }
.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--brass);
  font-weight: 600;
}
.stat-item .label {
  margin-top: 6px;
  font-size: 13.5px;
  color: rgba(246,244,236,0.72);
  letter-spacing: 0.02em;
}

/* =========================================================
   Service cards
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--paper-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 20px; }
.service-card p { margin-top: 12px; color: var(--muted); font-size: 15px; }
.service-card .tag {
  position: absolute; top: 28px; right: 28px;
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--line); letter-spacing: 0.06em;
}
.card-link {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--teal);
}
.card-link svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.service-card:hover .card-link svg { transform: translateX(3px); }

/* =========================================================
   Detailed service sections (services page)
   ========================================================= */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-media { order: 2; }
.service-detail-media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.service-detail-index {
  font-family: var(--font-mono);
  color: var(--brass);
  font-size: 14px;
  letter-spacing: 0.1em;
}
.service-detail h3 { font-size: clamp(24px, 2.6vw, 30px); margin-top: 10px; }
.service-detail p.desc { margin-top: 16px; color: var(--muted); font-size: 16px; }
.deliverables { margin-top: 22px; display: grid; gap: 12px; }
.deliverables li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; color: var(--ink);
}
.deliverables svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* =========================================================
   Industries (who we serve)
   ========================================================= */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft-lg); }
.industry-card img { width: 100%; height: auto; }
.industry-card .industry-body { padding: 24px 26px 28px; }
.industry-card h3 { font-size: 19px; }
.industry-card p { margin-top: 10px; font-size: 14.5px; color: var(--muted); }

/* =========================================================
   Process / timeline
   ========================================================= */
.process-strip { position: relative; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 26px; left: 6%; right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--brass) 0 10px, transparent 10px 18px);
}
.process-step { position: relative; text-align: left; }
.process-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--brass);
  font-family: var(--font-mono);
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative; z-index: 1;
  font-size: 15px;
}
.process-step h4 { font-size: 16px; }
.process-step p { margin-top: 8px; font-size: 13.5px; color: var(--muted); }

.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute; left: 8px; top: 6px; bottom: 6px;
  width: 2px; background: var(--line);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute; left: -34px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--brass);
}
.timeline-year {
  font-family: var(--font-mono);
  color: var(--teal); font-weight: 700; font-size: 14px;
}
.timeline-item h4 { margin-top: 6px; font-size: 19px; }
.timeline-item p { margin-top: 8px; color: var(--muted); font-size: 15px; max-width: 560px; }

/* =========================================================
   Testimonial carousel
   ========================================================= */
.carousel {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.carousel-track-wrap { overflow: hidden; border-radius: var(--radius); }
.carousel-track { display: flex; transition: transform 0.55s cubic-bezier(0.65,0,0.35,1); }
.testimonial-slide {
  flex: 0 0 100%;
  padding: 46px 52px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}
.testimonial-slide .quote-mark {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 6px;
}
.testimonial-slide p.quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--navy);
  line-height: 1.5;
}
.testimonial-author { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
}
.author-meta { text-align: left; }
.author-meta .name { font-weight: 700; font-size: 14.5px; color: var(--navy); }
.author-meta .role { font-size: 13px; color: var(--muted); }

.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 22px; margin-top: 26px;
}
.carousel-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.carousel-arrow:hover { background: var(--navy); border-color: var(--navy); }
.carousel-arrow:hover svg { color: var(--paper); }
.carousel-arrow svg { width: 17px; height: 17px; color: var(--navy); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: var(--line);
  padding: 0; transition: all 0.2s ease;
}
.carousel-dots button.active { background: var(--brass); width: 22px; border-radius: 4px; }

/* =========================================================
   Client logo marquee
   ========================================================= */
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.logo-track {
  display: flex;
  width: max-content;
  gap: 64px;
  animation: scrollLogos 32s linear infinite;
  align-items: center;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes scrollLogos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 19px;
  color: var(--navy); opacity: 0.55;
  white-space: nowrap;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.logo-item:hover { opacity: 1; filter: grayscale(0); }
.logo-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brass); }
.logo-item.is-image {
  opacity: 0.75;
  filter: grayscale(1);
}
.logo-item.is-image:hover { opacity: 1; filter: grayscale(0); }
.logo-item.is-image img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* =========================================================
   Client grid + case studies (clients page)
   ========================================================= */
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.client-logo-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 18px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600; font-size: 16.5px;
  color: var(--navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.client-logo-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.client-logo-tile img {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.15);
  transition: filter 0.2s ease;
}
.client-logo-tile:hover img { filter: grayscale(0); }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.case-card .case-sector {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); font-weight: 700;
}
.case-card h3 { font-size: 19px; margin-top: 10px; }
.case-card p { margin-top: 12px; color: var(--muted); font-size: 14.5px; }
.case-metrics { display: flex; gap: 22px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.case-metrics .m-num { font-family: var(--font-display); font-size: 22px; color: var(--navy); font-weight: 600; }
.case-metrics .m-label { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.contact-card-list { display: grid; gap: 18px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: flex; gap: 18px; align-items: flex-start;
}
.contact-card .c-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--paper-dim); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card .c-icon svg { width: 22px; height: 22px; }
.contact-card h4 { font-size: 16px; color: var(--navy); }
.contact-card p, .contact-card a { margin-top: 6px; font-size: 14.5px; color: var(--muted); display: block; }
.contact-card a:hover { color: var(--teal); }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 460px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }

.hours-table { margin-top: 4px; }
.hours-table div { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; color: var(--muted); }
.hours-table span:last-child { color: var(--ink); font-weight: 600; }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  background: var(--navy);
  color: var(--paper);
  border-radius: 24px;
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(138,98,57,0.28), transparent 70%);
}
.cta-banner h2 { font-size: clamp(24px, 2.8vw, 32px); max-width: 480px; position: relative; z-index: 1; color: var(--paper); }
.cta-banner .cta-row { position: relative; z-index: 1; }
.cta-banner p { color: rgba(246,244,236,0.75); margin-top: 10px; max-width: 420px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--navy-deep); color: rgba(246,244,236,0.75); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(246,244,236,0.12);
}
.footer-brand .logo-badge {
  display: inline-flex;
  background: var(--paper);
  padding: 12px 18px;
  border-radius: 16px;
  margin-bottom: 20px;
}
.footer-brand .logo-badge img { height: 58px; width: auto; display: block; }
.footer-brand p { font-size: 14.5px; max-width: 300px; line-height: 1.7; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 18px; font-weight: 700;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14.5px; }
.footer-col a:hover { color: var(--paper); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(246,244,236,0.2);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--brass); border-color: var(--brass); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: 13px; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--paper); }

/* =========================================================
   Floating WhatsApp button
   ========================================================= */
.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #5F7A2E;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(95,122,46,0.55);
  z-index: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: floatPulse 2.8s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 18px 36px -8px rgba(95,122,46,0.65); }
.whatsapp-float img { width: 32px; height: 32px; }
.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 74px;
  background: var(--navy);
  color: var(--paper);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: all 0.2s ease;
  pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 14px 30px -8px rgba(95,122,46,0.55), 0 0 0 0 rgba(95,122,46,0.4); }
  50% { box-shadow: 0 14px 30px -8px rgba(95,122,46,0.55), 0 0 0 12px rgba(95,122,46,0); }
}

/* =========================================================
   Scroll reveal
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; margin: 0 auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .process-steps::before { display: none; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .stat-item:nth-child(3) { border-left: none; padding-left: 0; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-stats { grid-template-columns: repeat(2, auto); row-gap: 22px; }
  .site-header.nav-open .main-nav {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--paper); padding: 14px 20px 20px;
    border-bottom: 1px solid var(--line); gap: 2px;
  }
  .site-header.nav-open .main-nav a { padding: 12px 14px; }
  .service-grid, .industry-grid, .process-steps { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; text-align: left; padding: 40px 28px; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .whatsapp-float img { width: 28px; height: 28px; }
  .whatsapp-float .wa-tooltip { display: none; }
}

@media (max-width: 480px) {
  .brand img { height: 40px; }
  .header-actions .btn-primary { display: none; }
  .header-inner { padding: 12px 20px; }
  .hero-stats { grid-template-columns: 1fr; row-gap: 18px; }
  .cta-banner { padding: 32px 22px; }
  .contact-card { flex-direction: column; }
  .page-banner { padding: 64px 0 60px; }
}
