/* ===== Grow More Group clone — stylesheet ===== */
:root {
  --brand: #d12530;          /* red — emblem, primary actions */
  --brand-dark: #a81d26;
  --brand-light: #e0464f;
  --brand-glow: rgba(209, 37, 48, 0.18);
  --accent: #b48339;         /* gold — wordmark, elegant accents */
  --accent-dark: #8c6126;
  --ink: #241c15;            /* warm near-black for dark sections */
  --slate: #6f665c;
  --bg: #ffffff;
  --bg-alt: #faf6f0;         /* warm off-white */
  --border: #ece6dd;
  --radius: 16px;
  --shadow: 0 12px 34px rgba(60, 40, 15, 0.08);
  --shadow-lg: 0 22px 60px rgba(60, 40, 15, 0.16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4, .brand-text { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
a { color: var(--brand-dark); text-decoration: none; }
img { max-width: 100%; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }
.center { text-align: center; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.cards .reveal:nth-child(2) { transition-delay: 0.08s; }
.cards .reveal:nth-child(3) { transition-delay: 0.16s; }
.cards .reveal:nth-child(4) { transition-delay: 0.08s; }
.cards .reveal:nth-child(5) { transition-delay: 0.16s; }
.cards .reveal:nth-child(6) { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 40px;
  font-weight: 700; font-family: 'Montserrat', sans-serif; font-size: 0.95rem;
  cursor: pointer; border: 2px solid transparent; transition: all 0.22s ease; position: relative;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 22px var(--brand-glow); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-3px); box-shadow: 0 14px 30px var(--brand-glow); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--brand-dark); box-shadow: var(--shadow); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: all 0.3s ease;
}
.site-header.scrolled { background: rgba(255,255,255,0.96); border-bottom-color: var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; transition: height 0.3s ease; }
.site-header.scrolled .header-inner { height: 66px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff; font-weight: 800; font-family: 'Montserrat', sans-serif; letter-spacing: -1px;
  box-shadow: 0 6px 16px var(--brand-glow);
}
.brand-text { font-weight: 800; font-size: 1.28rem; }
.brand-text em { color: var(--brand); font-style: normal; }
.brand-logo { height: 46px; width: auto; display: block; transition: height 0.3s ease; }
.brand-logo-footer { height: 50px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: var(--ink); font-weight: 600; font-size: 0.97rem; position: relative; }
.main-nav a:not(.btn-nav):hover { color: var(--brand); }
.main-nav a.active:not(.btn-nav) { color: var(--brand); }
.main-nav a:not(.btn-nav).active::after {
  content: ''; position: absolute; bottom: -7px; left: 0; right: 0; height: 2px; background: var(--brand); border-radius: 2px;
}
.btn-nav { background: var(--brand); color: #fff !important; padding: 10px 24px; border-radius: 40px; box-shadow: 0 6px 16px var(--brand-glow); }
.btn-nav:hover { background: var(--brand-dark); transform: translateY(-2px); }
.nav-toggle, .nav-toggle-label { display: none; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #6e0f16, var(--brand-dark) 45%, var(--brand) 100%);
  color: #fff; padding: 80px 0 96px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; opacity: 0.5;
  background:
    radial-gradient(circle at 15% 20%, rgba(180,131,57,0.30), transparent 35%),
    radial-gradient(circle at 85% 25%, rgba(224,70,79,0.45), transparent 40%),
    radial-gradient(circle at 70% 90%, rgba(255,255,255,0.08), transparent 45%);
}
.hero-inner { max-width: 800px; position: relative; z-index: 2; }
.hero-eyebrow, .eyebrow {
  text-transform: uppercase; letter-spacing: 2.5px; font-size: 0.78rem; font-weight: 700;
}
.hero-eyebrow { color: var(--accent); margin: 0 0 16px; }
.hero h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); margin: 0 0 20px; font-weight: 800; letter-spacing: -1px; }
.hero h1 span { color: var(--accent); position: relative; }
.hero-sub { font-size: 1.12rem; color: rgba(255,255,255,0.92); margin: 0 0 24px; max-width: 640px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badge {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 16px; border-radius: 30px; font-size: 0.84rem; font-weight: 600; backdrop-filter: blur(4px);
}
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== Page hero (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #6e0f16, var(--brand-dark) 50%, var(--brand)); color: #fff;
  padding: 58px 0; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(180,131,57,0.20), transparent 40%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); margin: 8px 0 14px; }
.page-hero .hero-sub { margin: 0 auto; max-width: 640px; }
.page-hero .hero-eyebrow { color: var(--accent); }

/* ===== Stats ===== */
.stats { background: var(--ink); color: #fff; position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 38px 24px; text-align: center; }
.stat { position: relative; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: -10px; top: 15%; height: 70%; width: 1px; background: rgba(255,255,255,0.12); }
.stat strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 2.6rem; color: var(--accent); font-weight: 800; }
.stat span { font-size: 0.92rem; color: rgba(255,255,255,0.72); }

/* ===== Sections ===== */
.section { padding: 56px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-dark { background: linear-gradient(135deg, var(--ink), #3a2418); color: #fff; }
.section-head { max-width: 740px; margin: 0 auto 34px; text-align: center; }
.eyebrow { color: var(--brand); display: block; margin-bottom: 12px; }
.eyebrow-light { color: var(--accent); }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin: 0 0 12px; letter-spacing: -0.5px; }
.lead { color: var(--slate); font-size: 1.1rem; }
.section-dark .lead { color: rgba(255,255,255,0.78); }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light)); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin: 6px 0 10px; font-size: 1.26rem; }
.card p { color: var(--slate); margin: 0 0 6px; }
.tag {
  display: inline-block; background: rgba(180,131,57,0.14); color: var(--accent-dark);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 30px;
}
.muted-country { font-size: 0.86rem; font-weight: 600; color: var(--brand) !important; }

/* service / value cards */
.service-card, .value-card { text-align: center; }
.service-icon, .value-icon {
  width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 18px; font-size: 2rem;
  display: grid; place-items: center; background: linear-gradient(135deg, rgba(209,37,48,0.12), rgba(180,131,57,0.10));
  transition: transform 0.3s ease;
}
.card:hover .service-icon, .card:hover .value-icon { transform: scale(1.08) rotate(-4deg); }

/* business cards */
.business-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.business-icon {
  width: 56px; height: 56px; border-radius: 14px; font-size: 1.7rem; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(209,37,48,0.12), rgba(180,131,57,0.10));
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip { background: var(--bg-alt); border: 1px solid var(--border); color: var(--slate); font-size: 0.76rem; font-weight: 600; padding: 5px 12px; border-radius: 20px; }
.center { margin-top: 48px; }

/* quote cards */
.quote-card { text-align: left; }
.quote-stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; }
.quote-text { font-size: 1.04rem; color: var(--ink) !important; font-style: italic; margin-bottom: 22px !important; }
.quote-author { display: flex; align-items: center; gap: 12px; }
.quote-avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--brand-light)); font-family: 'Montserrat', sans-serif;
}
.quote-author strong { display: block; font-size: 0.96rem; }
.quote-author small { color: var(--slate); font-size: 0.82rem; }

/* ===== Why grid (dark) ===== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-item { padding: 28px; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); background: rgba(255,255,255,0.03); transition: all 0.25s ease; }
.why-item:hover { background: rgba(255,255,255,0.07); transform: translateY(-5px); }
.why-num { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 800; color: var(--accent); display: block; margin-bottom: 10px; }
.why-item h3 { margin: 0 0 8px; font-size: 1.18rem; }
.why-item p { color: rgba(255,255,255,0.72); margin: 0; font-size: 0.94rem; }

/* ===== Logo carousel (infinite marquee) ===== */
.logo-marquee {
  overflow: hidden; width: 100%; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logo-track {
  display: flex; width: max-content; animation: logo-scroll 32s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }   /* exactly one set → seamless loop */
}
.logo-chip {
  flex: 0 0 auto; width: 180px; margin-right: 16px; min-height: 100px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px 16px;
  display: grid; place-items: center; transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.logo-chip img {
  max-height: 64px; max-width: 100%; object-fit: contain;
  filter: grayscale(100%); opacity: 0.7; transition: all 0.25s ease;
}
.logo-chip span { font-weight: 700; font-family: 'Montserrat', sans-serif; color: var(--slate); font-size: 0.9rem; }
.logo-chip:hover { border-color: var(--brand-light); box-shadow: var(--shadow); }
.logo-chip:hover img { filter: grayscale(0%); opacity: 1; }
@media (max-width: 600px) {
  .logo-chip { width: 144px; margin-right: 12px; min-height: 86px; }
  .logo-chip img { max-height: 52px; }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}

/* ===== Industry strip / pills ===== */
.industry-strip { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 26px 0; }
.industry-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.industry-pill {
  display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border);
  padding: 10px 20px; border-radius: 40px; font-weight: 600; font-size: 0.92rem; box-shadow: var(--shadow);
}
.industry-pill span { font-size: 1.1rem; }

/* ===== Process ===== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.process-step { text-align: center; padding: 20px; }
.process-num {
  width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-light)); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.4rem; box-shadow: 0 8px 20px var(--brand-glow);
}
.process-step h3 { margin: 0 0 8px; font-size: 1.18rem; }
.process-step p { color: var(--slate); margin: 0; font-size: 0.95rem; }

/* ===== Two column ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: stretch; }
.two-col h2 { font-size: 2rem; margin: 6px 0 18px; }
.two-col p { color: var(--slate); }
.quote-box {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand)); color: #fff;
  border-radius: var(--radius); padding: 42px; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: center;
}
.quote-box blockquote { margin: 0 0 18px; font-size: 1.35rem; font-family: 'Montserrat', sans-serif; line-height: 1.5; }
.quote-box cite { font-style: normal; color: var(--accent); font-weight: 600; }
.mini-card { background: var(--bg-alt); border-radius: var(--radius); padding: 36px; border: 1px solid var(--border); transition: all 0.25s ease; }
.mini-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.mini-card h3 { margin: 0 0 10px; color: var(--brand-dark); font-size: 1.3rem; }
.mini-card p { color: var(--slate); margin: 0; }

/* ===== Timeline ===== */
.timeline { position: relative; max-width: 820px; margin: 0 auto; padding-left: 8px; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--brand-light), var(--border)); }
.timeline-item { position: relative; padding: 0 0 26px 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: 4px; top: 4px; width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 4px solid var(--brand); box-shadow: 0 0 0 4px var(--brand-glow);
}
.timeline-year { display: inline-block; background: var(--brand); color: #fff; font-weight: 700; font-size: 0.8rem; padding: 3px 12px; border-radius: 20px; margin-bottom: 8px; font-family: 'Montserrat', sans-serif; }
.timeline-content h3 { margin: 4px 0 6px; font-size: 1.2rem; }
.timeline-content p { color: var(--slate); margin: 0; }

/* ===== Sector detail blocks (About) ===== */
.sectors { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.sector-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.sector-item h3 { font-size: 1.3rem; margin: 0 0 14px; }
.sector-item p { color: var(--slate); margin: 0 0 12px; }
.sector-item p:last-child { margin-bottom: 0; }
.sector-bullets { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.sector-bullets li {
  background: rgba(180,131,57,0.1); border: 1px solid var(--border); color: var(--accent-dark);
  border-radius: 20px; padding: 6px 14px; font-weight: 600; font-size: 0.84rem;
}
@media (max-width: 768px) { .sectors { grid-template-columns: 1fr; } }

/* ===== Team ===== */
.team-card { text-align: center; }
.team-avatar {
  width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-light)); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.7rem; box-shadow: 0 10px 24px var(--brand-glow);
  overflow: hidden;
}
.team-avatar-photo { background: none; }
.team-avatar-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-role { color: var(--brand) !important; font-weight: 700; font-size: 0.9rem; margin-bottom: 12px !important; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-family: 'Montserrat', sans-serif;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--bg-alt); display: grid; place-items: center; color: var(--brand); font-size: 1.3rem; transition: transform 0.25s ease; }
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { color: var(--slate); margin: 0; }

/* ===== CTA band ===== */
.cta-band { background: linear-gradient(135deg, var(--ink), #3a2418); color: #fff; padding: 54px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, var(--brand-glow), transparent 55%); }
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-size: 2.1rem; margin: 0 0 12px; }
.cta-inner p { color: rgba(255,255,255,0.8); margin: 0 0 28px; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 46px; align-items: start; }
.contact-info h2, .contact-form-wrap h2 { font-size: 1.7rem; margin: 0 0 24px; }
.office { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.office:last-child { border-bottom: none; }
.office h3 { margin: 0 0 8px; color: var(--brand-dark); font-size: 1.1rem; }
.office p { margin: 4px 0; color: var(--slate); }
.contact-form-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 7px; font-size: 0.9rem; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 0.96rem; background: var(--bg-alt); transition: all 0.2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px var(--brand-glow); }
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-weight: 600; }
.alert-success { background: #e6f4ea; color: #2e7d46; border: 1px solid #bfe3cb; }
.alert-error { background: #fdecea; color: #b02a1c; border: 1px solid #f5c3bc; }

/* ===== Social ===== */
.social { display: flex; gap: 10px; flex-wrap: wrap; }
.social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: #fff; transition: all 0.2s ease;
}
.social a svg { display: block; }
.social a:hover { background: var(--brand); transform: translateY(-3px); }
.social-dark a { background: var(--bg-alt); color: var(--brand-dark); border: 1px solid var(--border); }
.social-dark a:hover { background: var(--brand); color: #fff; }
.footer-social-title { color: #fff; font-weight: 700; font-family: 'Montserrat', sans-serif; font-size: 0.95rem; margin: 4px 0 10px; }

/* ===== Footer ===== */
.site-footer { background: #1c150f; color: #d8cfc4; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding: 46px 24px 32px; }
.brand-footer .brand-text { color: #fff; }
.footer-tag { color: var(--accent); font-weight: 600; margin: 14px 0 12px; }
.footer-about { color: #b3a99d; font-size: 0.9rem; line-height: 1.6; margin: 0 0 18px; max-width: 340px; }
.footer-col h4 { color: #fff; margin: 0 0 16px; font-size: 1.05rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #cdd5dd; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--brand-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { margin: 0; font-size: 0.86rem; color: #8a949e; }

/* ===== Back to top ===== */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 1.3rem; font-weight: 700;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.3s ease; z-index: 60;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--brand-dark); }

/* ===== WhatsApp floating bubble ===== */
.whatsapp-bubble {
  position: fixed; left: 24px; bottom: 24px; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; z-index: 60;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-pulse 2.4s infinite;
}
.whatsapp-bubble:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6); }
.whatsapp-bubble svg { display: block; }
@keyframes wa-pulse {
  0% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.45); }
  70% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .whatsapp-bubble { animation: none; } }

/* ===== Responsive ===== */

/* Allow grid/flex children to shrink below their content size so long words
   never blow out the layout. This is the key guard against horizontal overflow. */
.card, .why-item, .process-step, .stat, .service-card, .value-card,
.business-card, .quote-card, .mini-card, .timeline-content, .footer-col { min-width: 0; }
.card h3, .why-item h3, .business-card h3, .quote-text, .hero h1, .hero-sub,
.section-head h2, .lead, .timeline-content h3, .faq-item summary { overflow-wrap: anywhere; }

@media (max-width: 980px) {

.why-item {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.25s ease;
    width: 100%;
    margin-bottom: 22px;
}

.why-grid {
    display: block;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    padding: 10px;
}

.process {
    display: block;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 20px;
    background: white;
    margin-bottom: 10px;
    border-radius: 10px;
} 
  .cards, .stats-grid, .why-grid, .process { grid-template-columns: repeat(2, 1fr); }
  .two-col, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(4, 1fr); }
  .stat:not(:last-child)::after { display: none; }
  .nav-toggle-label { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
  .nav-toggle-label span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: all 0.3s ease; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column;
    align-items: stretch; gap: 0; border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  }
  .nav-toggle:checked ~ .main-nav { max-height: 420px; }
  .main-nav a { padding: 16px 24px; border-top: 1px solid var(--border); }
  .main-nav a:not(.btn-nav).active::after { display: none; }
  .btn-nav { border-radius: 0; text-align: center; box-shadow: none; }
}

@media (max-width: 680px) {
  .stats-grid, .cards, .logo-wall, .process { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }   /* these cards are padding-heavy → 1 col */
  .field-row { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 84px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }
  .section { padding: 44px 0; }
  .section-head { margin-bottom: 38px; }
  .quote-text { font-size: 1rem; }
  .why-item { padding: 22px; }
  .quote-box { padding: 30px; }
  .contact-form-wrap, .admin-form { padding: 24px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }       /* reclaim side space on small phones */
  .cards, .process { grid-template-columns: 1fr; }   /* stats + logos stay 2-up to limit scroll */
  .hero h1 { font-size: 2.1rem; }
  .hero-sub { font-size: 1.02rem; }
  .section-head h2 { font-size: 1.6rem; }
  .stat strong { font-size: 2.2rem; }
  .cta-inner h2 { font-size: 1.6rem; }
  .quote-box blockquote { font-size: 1.15rem; }
  .back-to-top { right: 16px; bottom: 16px; }
  .whatsapp-bubble { left: 16px; bottom: 16px; width: 52px; height: 52px; }
}
