/* ============================================================
   HEMALI DIGITAL — Main Stylesheet
   Primary: #175e60 | Secondary: #e3d88b | Font: Roboto
   ============================================================ */

/* ── GOOGLE FONTS ───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400&display=swap');

/* ── CSS VARIABLES ──────────────────────────────────────── */
:root {
  --teal:        #175e60;
  --teal-dark:   #0d3d3f;
  --teal-mid:    #1a6e71;
  --teal-light:  #e8f4f4;
  --gold:        #e3d88b;
  --gold-dark:   #c8bc60;
  --gold-light:  #f5f0cc;
  --white:       #ffffff;
  --off-white:   #f8fafa;
  --text:        #444444;
  --text-light:  #777777;
  --border:      #d8eaea;
  --dark:        #111111;
  --shadow-sm:   0 2px 12px rgba(23,94,96,.08);
  --shadow-md:   0 8px 32px rgba(23,94,96,.12);
  --shadow-lg:   0 20px 60px rgba(23,94,96,.18);
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  all .3s ease;
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Roboto', sans-serif;
  color: var(--teal);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

.text-teal   { color: var(--teal)!important; }
.text-gold   { color: var(--gold-dark)!important; }
.text-white  { color: var(--white)!important; }
.text-light  { color: var(--text-light)!important; }
.bg-teal     { background: var(--teal)!important; }
.bg-dark-teal{ background: var(--teal-dark)!important; }
.bg-gold     { background: var(--gold)!important; }
.bg-off      { background: var(--off-white)!important; }

/* ── CONTAINER ──────────────────────────────────────────── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px;  margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23,94,96,.3);
}
.btn-gold {
  background: var(--gold);
  color: var(--teal-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227,216,139,.4);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}
.btn-lg { padding: 16px 40px; font-size: 15px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ── SECTION LABELS ─────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--gold);
}
.eyebrow-white { color: rgba(255,255,255,.7); }
.eyebrow-white::before { background: rgba(255,255,255,.5); }

.section-title { margin-bottom: 16px; }
.section-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.8;
}
.section-sub.centered { margin: 0 auto; }

/* ── DIVIDER ────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin-bottom: 24px;
}
.divider.centered { margin: 0 auto 24px; }

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--teal-dark);
  padding: 9px 0;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__contact { display: flex; gap: 24px; align-items: center; }
.topbar__contact a {
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar__contact a:hover { color: var(--gold); }
.topbar__contact i { color: var(--gold); font-size: 12px; }
.topbar__social { display: flex; gap: 14px; }
.topbar__social a {
  color: rgba(255,255,255,.5);
  font-size: 13px;
  transition: var(--transition);
}
.topbar__social a:hover { color: var(--gold); }

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  background: var(--white);
  padding: 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(23,94,96,.15); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.navbar__logo img { height: 48px; width: auto; }
.navbar__logo span {
  font-size: 22px;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.5px;
}
.navbar__logo span em { color: var(--gold-dark); font-style: normal; }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .5px;
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar__nav a:hover,
.navbar__nav a.active { color: var(--teal); }
.navbar__nav a:hover::after,
.navbar__nav a.active::after { transform: scaleX(1); }
.navbar__cta { margin-left: 12px; }

/* Mobile hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO (INDEX) — HERO-CENTRIC ────────────────────────── */
.hero-home {
  min-height: 92vh;
  background: var(--teal-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-home__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(23,94,96,.6) 0%, transparent 70%),
    linear-gradient(140deg, #0d3d3f 0%, #175e60 50%, #1a6e71 100%);
}
.hero-home__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(227,216,139,.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-home__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 80px 0;
  grid-column: 1;
}
.hero-home__visual {
  position: relative;
  z-index: 2;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}
.hero-home__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227,216,139,.12);
  border: 1px solid rgba(227,216,139,.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-home__badge i { font-size: 10px; }
.hero-home h1 { color: var(--white); margin-bottom: 20px; }
.hero-home h1 span { color: var(--gold); }
.hero-home__lead {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-home__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-home__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-item__num {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item__label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero floating card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
}
.hero-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card__title i { color: var(--gold-dark); }
.hero-card__metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.hero-card__metric:last-of-type { border-bottom: none; }
.hero-card__metric-label { font-size: 13px; color: var(--text-light); }
.hero-card__metric-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
}
.hero-card__metric-val.up { color: #22a06b; }
.hero-card__bar {
  margin-top: 16px;
}
.hero-card__bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 6px;
}
.hero-card__bar-track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 8px;
  overflow: hidden;
}
.hero-card__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold-dark));
  border-radius: 3px;
  animation: barFill 1.5s ease forwards;
}
@keyframes barFill { from { width: 0; } }

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  animation: floatY 3s ease-in-out infinite;
  z-index: 3;
}
.float-badge i { color: var(--gold-dark); }
.float-badge--1 { top: 15%; right: 5%; animation-delay: 0s; }
.float-badge--2 { bottom: 20%; left: 5%; animation-delay: 1s; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── ABOUT STRIP (index) — SPLIT SCREEN ─────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-strip__visual {
  background: var(--teal);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}
.about-strip__visual::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(227,216,139,.08);
  border-radius: 50%;
}
.about-strip__big-text {
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 900;
  color: rgba(255,255,255,.06);
  line-height: 1;
  position: absolute;
  bottom: 20px;
  left: 20px;
  user-select: none;
}
.about-strip__content { padding: 72px 64px 72px 56px; background: var(--off-white); display: flex; flex-direction: column; justify-content: center; }

/* ── SERVICES BENTO (index) ─────────────────────────────── */
.services-bento { padding: 96px 0; background: var(--white); }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 56px;
}
.bento-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bento-card:hover::before { transform: scaleX(1); }
.bento-card--featured {
  grid-column: span 2;
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.bento-card--featured h3 { color: var(--white); }
.bento-card--featured p { color: rgba(255,255,255,.75); }
.bento-card--featured::before { display: none; }
.bento-card--gold { background: var(--gold-light); border-color: var(--gold); }
.bento-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--teal);
  transition: var(--transition);
}
.bento-card:hover .bento-icon { background: var(--teal); color: var(--white); }
.bento-card--featured .bento-icon { background: rgba(255,255,255,.12); color: var(--gold); }
.bento-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.bento-card p { font-size: 14px; margin: 0; line-height: 1.7; }
.bento-card__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 52px;
  font-weight: 900;
  color: rgba(23,94,96,.05);
  line-height: 1;
  user-select: none;
}
.bento-card--featured .bento-card__num { color: rgba(255,255,255,.06); }

/* ── PROCESS (index) — STORYTELLING ─────────────────────── */
.process-story { padding: 96px 0; background: var(--teal-dark); }
.process-story__header { text-align: center; margin-bottom: 72px; }
.process-story__header h2 { color: var(--white); }
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: start;
}
.process-timeline__line {
  grid-column: 2;
  grid-row: 1 / span 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}
.process-timeline__line::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 80px);
  background: linear-gradient(180deg, var(--gold) 0%, rgba(227,216,139,.1) 100%);
}
.process-step {
  padding: 0 40px 56px;
  position: relative;
}
.process-step--left { text-align: right; }
.process-step--right { text-align: left; }
.process-step__num {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--teal-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(227,216,139,.15);
}
.process-step h4 { color: var(--gold); margin-bottom: 8px; font-size: 1rem; }
.process-step p { font-size: 14px; color: rgba(255,255,255,.65); margin: 0; }

/* ── INDUSTRIES (index) — ZIG-ZAG ───────────────────────── */
.industries { padding: 96px 0; background: var(--off-white); }
.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.zigzag-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.zigzag-item--reverse { direction: rtl; }
.zigzag-item--reverse > * { direction: ltr; }
.zigzag-visual {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 48px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.zigzag-visual__icon {
  font-size: 80px;
  color: rgba(227,216,139,.2);
  position: absolute;
  bottom: -10px;
  right: -10px;
}
.zigzag-visual__label {
  font-size: 32px;
  font-weight: 900;
  color: rgba(255,255,255,.12);
  position: absolute;
  top: 20px;
  left: 24px;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.zigzag-visual__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.zigzag-visual__big { font-size: 56px; font-weight: 900; color: var(--gold); line-height: 1; }
.zigzag-visual__sub { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 8px; }
.zigzag-content h3 { margin-bottom: 14px; }
.zigzag-content p { color: var(--text-light); margin-bottom: 20px; font-size: 15px; }
.zigzag-list { margin-bottom: 28px; }
.zigzag-list li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.zigzag-list li:last-child { border-bottom: none; }
.zigzag-list li i { color: var(--teal); font-size: 13px; flex-shrink: 0; }

/* ── TESTIMONIALS (index) ───────────────────────────────── */
.testimonials { padding: 96px 0; background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testi-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-card::before {
  content: '\201C';
  font-size: 80px;
  color: var(--gold);
  line-height: .7;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 12px;
  opacity: .6;
}
.testi-card__text { font-size: 15px; line-height: 1.8; color: var(--text); margin-bottom: 24px; font-style: italic; }
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testi-card__name { font-weight: 700; color: var(--teal); font-size: 15px; }
.testi-card__role { font-size: 12px; color: var(--text-light); }
.testi-stars { color: var(--gold-dark); font-size: 13px; margin-bottom: 4px; }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(227,216,139,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 32px; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--teal-dark); padding: 72px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand-logo { margin-bottom: 16px; }
.footer__brand-logo span {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
}
.footer__brand-logo span em { color: var(--gold); font-style: normal; }
.footer__desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 14px;
  transition: var(--transition);
}
.footer__social a:hover { background: var(--gold); color: var(--teal-dark); border-color: var(--gold); }
.footer__col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer__links a:hover { color: var(--gold); padding-left: 4px; }
.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact-item i { color: var(--gold); margin-top: 3px; font-size: 13px; flex-shrink: 0; }
.footer__contact-item a,
.footer__contact-item span { font-size: 14px; color: rgba(255,255,255,.6); }
.footer__contact-item a:hover { color: var(--gold); }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__copyright { font-size: 13px; color: rgba(255,255,255,.35); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: 13px; color: rgba(255,255,255,.35); }
.footer__bottom-links a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ─────────────────────────────────────── */
.wa-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: var(--transition);
  animation: waPulse 2.5s ease infinite;
}
.wa-btn:hover { transform: scale(1.1); color: var(--white); background: #1ebe5d; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
}

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(140deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(227,216,139,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__eyebrow { color: var(--gold); }
.page-hero__eyebrow::before { background: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero__sub { font-size: 17px; color: rgba(255,255,255,.75); max-width: 560px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 24px;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 10px; }

/* ── ABOUT PAGE — ASYMMETRICAL ──────────────────────────── */
.about-intro {
  padding: 96px 0;
  background: var(--white);
}
.about-intro__grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: center;
}
.about-intro__visual {
  position: relative;
}
.about-intro__img-main {
  background: var(--teal);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-intro__img-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(13,61,63,.8), transparent);
}
.about-intro__img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--teal-dark);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-intro__img-badge strong { display: block; font-size: 28px; font-weight: 900; }
.about-intro__img-badge span { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Values bento */
.values-bento {
  padding: 96px 0;
  background: var(--teal);
}
.values-bento h2 { color: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
}
.value-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.value-card__icon { font-size: 28px; color: var(--gold); margin-bottom: 16px; }
.value-card h4 { color: var(--white); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: rgba(255,255,255,.6); margin: 0; }

/* Skills asymmetric */
.skills-section {
  padding: 96px 0;
  background: var(--off-white);
}
.skills-grid {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 80px;
  align-items: center;
}
.skill-bar { margin-bottom: 20px; }
.skill-bar__head {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}
.skill-bar__track {
  height: 7px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.skill-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold-dark));
  border-radius: 4px;
  transition: width 1.2s ease;
}

/* ── SERVICES PAGE — CARD + LONG-FORM ──────────────────── */
.services-intro { padding: 80px 0 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  background: var(--white);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--teal); }
.service-card__header { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 18px; }
.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--teal);
  flex-shrink: 0;
  transition: var(--transition);
}
.service-card:hover .service-card__icon { background: var(--teal); color: var(--gold); }
.service-card h3 { color: var(--teal); font-size: 1.15rem; margin-bottom: 4px; }
.service-card__tag {
  font-size: 11px;
  background: var(--gold-light);
  color: var(--gold-dark);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
}
.service-card p { font-size: 14px; color: var(--text-light); margin-bottom: 20px; line-height: 1.7; }
.service-card__list { display: flex; flex-direction: column; gap: 8px; }
.service-card__list li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card__list li i { color: var(--teal); font-size: 11px; }

/* Long-form detail */
.service-detail {
  padding: 80px 0;
  background: var(--off-white);
}
.service-detail__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
.service-detail__sticky { position: sticky; top: 90px; }
.info-box {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  margin-bottom: 20px;
}
.info-box h4 { color: var(--white); margin-bottom: 16px; }
.info-box p { font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 20px; }
.info-box .btn { width: 100%; justify-content: center; }

/* ── CONTACT PAGE — SPLIT SCREEN ────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  min-height: calc(100vh - 140px);
}
.contact-left {
  background: var(--teal);
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}
.contact-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(227,216,139,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.contact-left__inner { position: relative; z-index: 1; }
.contact-left h2 { color: var(--white); margin-bottom: 14px; }
.contact-left p { color: rgba(255,255,255,.7); margin-bottom: 40px; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-item__label { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-info-item__val { font-size: 15px; color: var(--white); font-weight: 500; }
.contact-info-item__val a { color: var(--white); }
.contact-info-item__val a:hover { color: var(--gold); }

.contact-right { padding: 72px 56px; background: var(--white); }
.contact-right h3 { color: var(--teal); margin-bottom: 8px; }
.contact-right p { color: var(--text-light); margin-bottom: 36px; }

/* ── FORM STYLES ────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--teal); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .5px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(23,94,96,.1); }
.form-control::placeholder { color: #bbb; }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: #e8f8f0;
  border: 1px solid #22a06b;
  color: #22a06b;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq-q {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--white);
  transition: var(--transition);
  user-select: none;
}
.faq-q:hover { background: var(--teal-light); }
.faq-q i { color: var(--gold-dark); font-size: 13px; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 18px; }
.faq-a p { font-size: 14px; color: var(--text-light); margin: 0; }

/* ── UTILITY ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.d-flex { display: flex; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-home { grid-template-columns: 1fr; }
  .hero-home__visual { display: none; }
  .hero-home__content { padding: 72px 0; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip__visual { min-height: 280px; }
  .about-strip__content { padding: 48px 32px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--featured { grid-column: span 2; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-intro__grid { grid-template-columns: 1fr; gap: 48px; }
  .skills-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-detail__grid { grid-template-columns: 1fr; }
  .service-detail__sticky { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left { padding: 56px 32px; }
  .contact-right { padding: 56px 32px; }
  .zigzag-item { grid-template-columns: 1fr; gap: 32px; }
  .zigzag-item--reverse { direction: ltr; }
  .process-timeline { grid-template-columns: 1fr; }
  .process-timeline__line { display: none; }
}

@media (max-width: 768px) {
  .topbar__social { display: none; }
  .navbar__nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); padding: 16px; box-shadow: var(--shadow-md); gap: 4px; z-index: 999; }
  .navbar__nav.open { display: flex; }
  .navbar__toggle { display: flex; }
  .navbar__cta { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--featured { grid-column: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-home__stats { gap: 20px; }
  .hero-home__badge { font-size: 11px; }
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════
   DROPDOWN NAV
══════════════════════════════════════════════════════════ */
.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(23,94,96,.18);
  border: 1px solid var(--border);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all .25s ease;
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.nav-dropdown__heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  padding: 4px 10px 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}
.nav-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all .2s;
}
.nav-dropdown__menu a:hover {
  background: var(--teal-light);
  color: var(--teal);
}
.nav-dropdown__menu a i {
  width: 18px;
  text-align: center;
  color: var(--teal);
  font-size: 13px;
}
/* Arrow pointer */
.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}

/* ══════════════════════════════════════════════════════════
   INDUSTRY PAGE — MOBILE GRID FIXES
══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  section[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  section[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr 1fr !important;
  }
  section[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
  section[style*="grid-template-columns:repeat(5"] {
    grid-template-columns: 1fr 1fr !important;
  }
  .contact-layout { grid-template-columns: 1fr !important; }
  .about-strip { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
  section[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  section[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
  }
  section[style*="grid-template-columns:repeat(5"] {
    grid-template-columns: 1fr !important;
  }
  section[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .nav-dropdown__menu { width: calc(100vw - 40px); left: 0; transform: none; }
  .nav-dropdown__menu::before { display: none; }
  .nav-dropdown__grid { grid-template-columns: 1fr; }
  .hero-home { grid-template-columns: 1fr !important; }
  .contact-layout { grid-template-columns: 1fr !important; }
  .contact-right,
  .contact-left { padding: 40px 24px !important; }
}

/* ══════════════════════════════════════════════════════════
   UTILITY ADDITIONS
══════════════════════════════════════════════════════════ */
/* Scroll-to-top */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 32px;
  width: 42px;
  height: 42px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
  border: none;
  box-shadow: var(--shadow-sm);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* Trust bar responsive */
@media(max-width:768px){
  .topbar__contact a:last-child { display: none; }
  .trust-grid { grid-template-columns: repeat(2,1fr) !important; }
}

/* Blog grid responsive */
@media(max-width:900px){
  #postsGrid { grid-template-columns: repeat(2,1fr) !important; }
}
@media(max-width:580px){
  #postsGrid { grid-template-columns: 1fr !important; }
}

/* Nav active state enhancement */
.navbar__nav a.active {
  color: var(--teal) !important;
  font-weight: 700;
}
.navbar__nav a.active::after {
  transform: scaleX(1) !important;
}

/* Process grid mobile */
@media(max-width:900px){
  div[style*="grid-template-columns:repeat(5,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Print styles */
@media print {
  .topbar, .navbar, .wa-btn, .scroll-top, .cta-banner { display: none !important; }
  body { font-size: 12pt; }
}
