/* ═══════════════════════════════════════════════
   10x AGENCY — BRAND THEME
   Primary: #004063 (Navy Blue)
   Accent:  #5fb04a (Green)
   ═══════════════════════════════════════════════ */
:root {
  --primary:       #004063;
  --primary-light: #005b8c;
  --primary-dark:  #002f4a;
  --accent:        #5fb04a;
  --accent-light:  #74c85e;
  --accent-pale:   #edf7ea;
  --text:          #0D1117;
  --muted:         #5a6878;
  --border:        #dce3ea;
  --surface:       #f4f8fb;
  --white:         #FFFFFF;
  --r:             12px;
  --rlg:           20px;
  --sh:            0 4px 24px rgba(0,64,99,.12);
  --shmd:          0 8px 40px rgba(0,64,99,.20);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  margin: 0; padding: 0;
}
h1,h2,h3,h4,h5 { font-family: 'Plus Jakarta Sans', sans-serif; }
a { text-decoration: none; color: inherit; }

/* ── SCROLL PROGRESS ────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: grad-shift 3s linear infinite;
  z-index: 9999; transition: width .1s linear;
  box-shadow: 0 0 8px rgba(95,176,74,.6);
}
@keyframes grad-shift { 0%{background-position:0%} 100%{background-position:200%} }

/* ── CUSTOM CURSOR ──────────────────────────── */
#cursor {
  position: fixed; width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
  mix-blend-mode: multiply;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(0,64,99,.45); pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
  transition: left .12s ease, top .12s ease, width .2s, height .2s, border-color .2s;
}
#cursor-glow {
  pointer-events: none; position: fixed; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,64,99,.06) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  transition: left .15s ease, top .15s ease; z-index: 0;
}
body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 20px; height: 20px; }
body:has(a:hover) #cursor-ring, body:has(button:hover) #cursor-ring { width: 50px; height: 50px; border-color: var(--primary); }

/* ── PARTICLE CANVAS ────────────────────────── */
#particle-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .45; }

/* ── NAVBAR ─────────────────────────────────── */
.navbar {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0; position: sticky; top: 0; z-index: 1000;
  transition: box-shadow .3s, background .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,64,99,.10); }

.navbar-brand {
  display: flex; align-items: center; gap: 0;
}
.navbar-brand img {
  height: 44px; width: auto; object-fit: contain;
  transition: transform .3s;
}
.navbar-brand:hover img { transform: scale(1.04); }

/* hide old text brand dot if any */
.brand-dot { display: none; }

.nav-link {
  font-weight: 500; font-size: .91rem; color: var(--muted) !important;
  padding: 6px 14px !important; border-radius: 8px;
  transition: color .2s, background .2s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transition: transform .25s ease;
}
.nav-link:hover::after, .nav-link.active-link::after { transform: scaleX(1); }
.nav-link:hover { color: var(--primary) !important; }

.btn-nav {
  background: var(--primary) !important; color: #fff !important;
  border-radius: 50px; padding: 9px 22px !important;
  font-weight: 700; font-size: .88rem;
  transition: transform .2s, box-shadow .2s, background .2s;
  position: relative; overflow: hidden;
}
.btn-nav::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-100%) skewX(-20deg); transition: transform .4s ease;
}
.btn-nav:hover::after { transform: translateX(150%) skewX(-20deg); }
.btn-nav:hover {
  background: var(--primary-light) !important;
  transform: translateY(-2px); box-shadow: var(--sh);
}

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--white); padding: 80px 0 60px;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,64,99,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,64,99,.06) 1px, transparent 1px);
  background-size: 48px 48px; opacity: .5; z-index: 0;
  animation: grid-pan 20s linear infinite;
}
@keyframes grid-pan { 0%{background-position:0 0} 100%{background-position:48px 48px} }

.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .14; pointer-events: none; z-index: 0;
}
.blob-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; right: -100px; animation: blob-morph 10s ease-in-out infinite; }
.blob-2 { width: 400px; height: 400px; background: var(--accent); bottom: -80px; left: -80px; animation: blob-morph 13s ease-in-out infinite reverse; }
.blob-3 { width: 300px; height: 300px; background: var(--primary-light); top: 50%; right: 30%; animation: blob-morph 8s ease-in-out infinite 2s; }
@keyframes blob-morph {
  0%,100% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; }
  25%      { border-radius: 30% 60% 70% 40%/50% 60% 30% 60%; }
  50%      { border-radius: 50% 60% 30% 60%/30% 50% 70% 40%; }
  75%      { border-radius: 70% 30% 50% 40%/40% 70% 30% 60%; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-pale); border: 1px solid rgba(95,176,74,.3);
  color: var(--accent); font-size: .8rem; font-weight: 600;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 22px;
  animation: badge-in .7s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes badge-in { from{opacity:0;transform:translateY(-16px) scale(.9)} to{opacity:1;transform:none} }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse-dot 1.5s ease-in-out infinite; }
@keyframes pulse-dot {
  0%,100%{ transform:scale(1); box-shadow:0 0 0 0 rgba(95,176,74,.4); }
  50%    { transform:scale(1.25); box-shadow:0 0 0 7px rgba(95,176,74,0); }
}

.hero h1 {
  font-size: clamp(2.6rem,5.5vw,4.2rem); font-weight: 800;
  line-height: 1.13; letter-spacing: -.03em; color: var(--text);
  animation: fadeSlideUp .7s .1s ease both;
}
.accent-word { color: var(--primary); position: relative; display: inline-block; }
.accent-word::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
  animation: underline-in .5s .9s ease forwards;
}
@keyframes underline-in { to { transform: scaleX(1); } }

#typewriter { border-right: 3px solid var(--accent); padding-right: 4px; animation: caret-blink .8s infinite; }
@keyframes caret-blink { 0%,100%{border-color:var(--accent)} 50%{border-color:transparent} }

.hero-sub {
  font-size: 1.08rem; color: var(--muted); line-height: 1.7;
  max-width: 520px; margin: 22px 0 36px;
  animation: fadeSlideUp .7s .2s ease both;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; animation: fadeSlideUp .7s .3s ease both; }

.btn-primary-main {
  background: var(--primary); color: #fff; border: none;
  padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: .95rem;
  cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
  display: inline-flex; align-items: center; gap: 8px;
  position: relative; overflow: hidden;
}
.btn-primary-main .btn-shine {
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg); animation: shine-sweep 3s ease-in-out infinite 1.5s;
}
@keyframes shine-sweep { 0%{left:-100%} 50%,100%{left:150%} }
.btn-primary-main:hover { background: var(--primary-light); transform: translateY(-3px) scale(1.02); box-shadow: var(--shmd); }

.btn-outline-main {
  background: transparent; color: var(--primary); border: 1.5px solid var(--primary);
  padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: border-color .2s, background .2s, transform .2s, color .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-main:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-pale); transform: translateY(-3px); }

.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: scale(0); animation: ripple-out .6s linear; pointer-events: none;
}
@keyframes ripple-out { to { transform: scale(4); opacity: 0; } }

.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 48px; animation: fadeSlideUp .7s .4s ease both; }
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-item .num { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--text); line-height: 1; }
.hero-stat-item .num span { color: var(--primary); }
.hero-stat-item .label { font-size: .78rem; color: var(--muted); font-weight: 500; margin-top: 4px; }

.hero-card-wrap { position: relative; animation: fadeSlideUp .8s .25s ease both; }
.hero-main-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rlg); padding: 28px; box-shadow: var(--shmd);
  position: relative; z-index: 2;
  transition: box-shadow .3s, transform .3s;
}
.hero-main-card:hover { box-shadow: 0 16px 56px rgba(0,64,99,.18); transform: translateY(-3px); }
.hero-main-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.hero-main-card p { font-size: .85rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }

.form-group { margin-bottom: 14px; }
.form-group label { font-size: .78rem; font-weight: 600; color: var(--text); margin-bottom: 6px; display: block; }
.form-control-custom {
  width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 11px 14px; font-size: .88rem; color: var(--text); outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-family: 'Inter',sans-serif; background: var(--white);
}
.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,64,99,.08);
}
.form-control-custom::placeholder { color: #B0B7C3; }
.form-row { display: flex; gap: 10px; }
.form-row .form-group { flex: 1; }

.btn-submit {
  width: 100%; background: var(--primary); color: #fff; border: none;
  padding: 13px; border-radius: 10px; font-weight: 700; font-size: .93rem;
  cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s;
  font-family: 'Plus Jakarta Sans',sans-serif; position: relative; overflow: hidden;
}
.btn-submit:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--sh); }
.form-footer { text-align: center; font-size: .75rem; color: var(--muted); margin-top: 10px; }
.form-footer i { color: var(--accent); }

.float-card {
  position: absolute; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 10px 14px;
  display: flex; align-items: center; gap: 10px; box-shadow: var(--sh);
  font-size: .8rem; font-weight: 600; z-index: 3;
}
.float-card .fc-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.float-card-1 { top: -18px; left: -30px; animation: float-bob 4s ease-in-out infinite; }
.float-card-2 { bottom: -18px; right: -20px; animation: float-bob 4s ease-in-out infinite 2s; }
@keyframes float-bob { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-10px) rotate(1deg)} }

/* ── SECTION HELPERS ─────────────────────────── */
section { padding: 90px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-pale); color: var(--accent);
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 800;
  line-height: 1.2; letter-spacing: -.025em; color: var(--text);
}
.section-sub { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 540px; margin-top: 14px; }

/* ── REVEAL ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.from-scale { transform: scale(.92); }
.reveal.visible    { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── MARQUEE ─────────────────────────────────── */
.marquee-section {
  padding: 26px 0; background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track { display: flex; gap: 52px; width: max-content; animation: marquee-scroll 24s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 600; color: var(--muted); white-space: nowrap;
  transition: color .2s, transform .2s; cursor: default;
}
.marquee-item:hover { color: var(--primary); transform: scale(1.08); }
.marquee-item i { color: var(--primary); font-size: 1rem; }
@keyframes marquee-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── TILT CARDS ──────────────────────────────── */
.tilt-card { transform-style: preserve-3d; transition: transform .1s; }

/* ── SERVICES ────────────────────────────────── */
.services-section { background: var(--white); }
.service-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--rlg); padding: 30px 26px; height: 100%;
  transition: border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden; cursor: default;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-pale), transparent 60%);
  opacity: 0; transition: opacity .35s;
}
.service-card::after {
  content: ''; position: absolute; inset: -2px; border-radius: calc(var(--rlg) + 2px);
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary-light), var(--primary));
  background-size: 300% 300%; z-index: -1; opacity: 0;
  transition: opacity .35s; animation: border-spin 4s linear infinite paused;
}
.service-card:hover::after { opacity: 1; animation-play-state: running; }
@keyframes border-spin { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.service-card:hover { border-color: transparent; box-shadow: var(--shmd); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--accent-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; color: var(--accent); margin-bottom: 20px;
  transition: background .3s, color .3s, transform .3s; position: relative; z-index: 1;
}
.service-card:hover .service-icon { background: var(--primary); color: #fff; transform: rotateY(180deg); }
.service-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.service-card p  { font-size: .87rem; color: var(--muted); line-height: 1.65; position: relative; z-index: 1; }
.service-tag {
  display: inline-block; margin-top: 16px; font-size: .73rem; font-weight: 600;
  color: var(--accent); background: var(--accent-pale);
  padding: 3px 10px; border-radius: 50px; position: relative; z-index: 1;
}

/* ── PROCESS ─────────────────────────────────── */
.process-section { background: var(--surface); }
.process-step {
  display: flex; gap: 20px; align-items: flex-start; padding: 24px;
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--rlg);
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative; overflow: hidden;
}
.process-step::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent); transform: scaleY(0); transform-origin: top;
  transition: transform .4s ease;
}
.process-step:hover::before { transform: scaleY(1); }
.process-step:hover { border-color: var(--primary); box-shadow: var(--sh); transform: translateX(6px); }
.step-num {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary); color: #fff;
  font-family: 'Plus Jakarta Sans',sans-serif; font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .3s, box-shadow .3s;
}
.process-step:hover .step-num { transform: rotate(-8deg) scale(1.1); box-shadow: 0 4px 16px rgba(0,64,99,.3); }
.step-content h5 { font-size: .98rem; font-weight: 700; margin-bottom: 6px; }
.step-content p  { font-size: .85rem; color: var(--muted); line-height: 1.6; margin: 0; }
.process-connector { width: 2px; height: 28px; background: linear-gradient(var(--primary), var(--accent-pale)); margin: 0 0 0 43px; }

/* ── RESULTS ─────────────────────────────────── */
.portfolio-section { background: var(--white); }
.result-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--rlg); padding: 30px; height: 100%;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative; overflow: hidden;
}
.result-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.result-card:hover::after { transform: scaleX(1); }
.result-card:hover { border-color: var(--primary); box-shadow: var(--sh); transform: translateY(-6px); }
.result-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 600; color: var(--accent); background: var(--accent-pale);
  padding: 4px 12px; border-radius: 50px; margin-bottom: 16px;
}
.result-num {
  font-family: 'Plus Jakarta Sans',sans-serif; font-size: 2.8rem; font-weight: 800;
  color: var(--primary); line-height: 1; transition: transform .3s;
}
.result-card:hover .result-num { transform: scale(1.06); }
.result-card h5 { font-size: .95rem; font-weight: 700; margin: 10px 0 6px; }
.result-card p  { font-size: .83rem; color: var(--muted); line-height: 1.65; }
.result-industry { font-size: .75rem; color: var(--muted); margin-top: 16px; display: flex; align-items: center; gap: 6px; }
.result-industry i { color: var(--primary); }

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials-section { background: var(--surface); }
.testi-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--rlg); padding: 28px; height: 100%;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative; overflow: hidden;
}
.testi-card::before {
  content: '"'; position: absolute; top: -10px; right: 20px;
  font-size: 8rem; font-weight: 900; color: var(--accent-pale);
  font-family: 'Plus Jakarta Sans',sans-serif; line-height: 1;
  transition: color .3s, transform .3s; pointer-events: none;
}
.testi-card:hover::before { color: rgba(95,176,74,.15); transform: scale(1.1) rotate(-5deg); }
.testi-card:hover { border-color: var(--primary); box-shadow: var(--sh); transform: translateY(-6px); }
.stars { color: #F59E0B; font-size: .9rem; margin-bottom: 14px; }
.testi-card blockquote { font-size: .9rem; color: var(--text); line-height: 1.7; margin: 0 0 20px; font-style: italic; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--primary);
  color: #fff; font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .3s, box-shadow .3s;
}
.testi-card:hover .author-avatar { transform: scale(1.1); box-shadow: 0 4px 14px rgba(0,64,99,.25); }
.author-info .name { font-weight: 700; font-size: .9rem; }
.author-info .role { font-size: .78rem; color: var(--muted); }

/* ── PRICING ─────────────────────────────────── */
/* .pricing-section { background: var(--white); }
.pricing-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--rlg); padding: 32px 28px; height: 100%;
  position: relative; transition: border-color .3s, box-shadow .3s, transform .3s; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,64,99,.05), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card.featured {
  border-color: var(--primary); background: var(--primary-dark); color: #fff;
  transform: scale(1.03); box-shadow: var(--shmd);
}
.pricing-card:not(.featured):hover { border-color: var(--primary); box-shadow: var(--sh); transform: translateY(-6px); }

.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700;
  padding: 4px 16px; border-radius: 50px; white-space: nowrap;
  animation: badge-glow 2s ease-in-out infinite;
}
@keyframes badge-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(95,176,74,.5); }
  50%      { box-shadow: 0 0 0 8px rgba(95,176,74,0); }
}
.pricing-name { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.pricing-card.featured .pricing-name { color: rgba(255,255,255,.6); }
.pricing-price { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 2.4rem; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.pricing-price sub { font-size: 1rem; font-weight: 600; vertical-align: super; }
.pricing-desc { font-size: .82rem; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,.6); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 28px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .86rem; padding: 7px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .2s, color .2s;
}
.pricing-features li:hover { padding-left: 6px; color: var(--primary); }
.pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.pricing-features li i { color: var(--accent); font-size: .95rem; flex-shrink: 0; }
.btn-pricing {
  display: block; width: 100%; text-align: center; padding: 13px;
  border-radius: 10px; font-weight: 700; font-size: .93rem;
  cursor: pointer; border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  font-family: 'Plus Jakarta Sans',sans-serif; position: relative; overflow: hidden;
}
.btn-pricing-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-pricing-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(0,64,99,.06); transform: translateY(-2px); }
.btn-pricing-solid { background: var(--primary); color: #fff; }
.btn-pricing-solid:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--sh); }
.btn-pricing-white { background: #fff; color: var(--primary); font-weight: 700; }
.btn-pricing-white:hover { background: #f0f6fb; transform: translateY(-2px); } */

/* ── FAQ ─────────────────────────────────────── */
.faq-section { background: var(--surface); }
.faq-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); margin-bottom: 10px; overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq-item.open { border-color: var(--primary); box-shadow: 0 4px 20px rgba(0,64,99,.08); }
.faq-question {
  width: 100%; text-align: left; padding: 18px 22px;
  background: transparent; border: none;
  font-family: 'Plus Jakarta Sans',sans-serif; font-size: .95rem; font-weight: 700;
  color: var(--text); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color .2s;
}
.faq-item.open .faq-question { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent-pale); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .45s ease, padding .3s;
  font-size: .88rem; color: var(--muted); line-height: 1.7; padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 220px; padding: 0 22px 18px; }

/* ── CTA BAND ──────────────────────────────────
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #005b8c 100%);
  padding: 90px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(95,176,74,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95,176,74,.07) 1px, transparent 1px);
  background-size: 48px 48px; animation: grid-pan 20s linear infinite;
}
.cta-orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.cta-orb-1 { width: 350px; height: 350px; background: rgba(95,176,74,.2); top: -80px; left: -60px; animation: orb-float 8s ease-in-out infinite; }
.cta-orb-2 { width: 280px; height: 280px; background: rgba(0,91,140,.35); bottom: -60px; right: -40px; animation: orb-float 10s ease-in-out infinite 3s; }
@keyframes orb-float { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-20px)} }
.cta-band h2  { color: #fff; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; line-height: 1.2; }
.cta-band p   { color: rgba(255,255,255,.7); font-size: 1rem; }
.btn-cta-white {
  background: #fff; color: var(--primary); border: none; padding: 14px 36px;
  border-radius: 50px; font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans',sans-serif;
}
.btn-cta-white:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 32px rgba(255,255,255,.25); }
.btn-cta-outline-w {
  background: transparent; color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.3); padding: 14px 36px;
  border-radius: 50px; font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: border-color .2s, color .2s, transform .2s, background .2s;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans',sans-serif;
}
.btn-cta-outline-w:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); transform: translateY(-3px); } */

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.65);
  padding: 60px 0 0;         
  font-size: .88rem;
  margin: 0;
}
.footer-brand {
  font-family: 'Plus Jakarta Sans',sans-serif; font-size: 1.3rem; font-weight: 800;
  color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer-brand img { height: 38px; width: auto; object-fit: contain; }
.footer-desc { line-height: 1.7; margin-bottom: 22px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .95rem;
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(95,176,74,.1); transform: translateY(-3px) rotate(-5deg); }
.footer-col-title {
  font-family: 'Plus Jakarta Sans',sans-serif; font-size: .82rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.55); transition: color .2s, padding-left .2s; font-size: .88rem; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.55); margin-bottom: 12px; font-size: .88rem;
}
.footer-contact-item i { color: var(--accent); font-size: 1rem; flex-shrink: 0; }
.footer-divider { border-color: rgba(255,255,255,.08); margin: 40px 0 0; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.35);
  padding: 18px 0;                /* ← clean padding instead of margin */
  background: rgba(0,0,0,.15);   /* subtle darker strip */
  margin: 0;
}
.footer-bottom > * { padding-left: 0; padding-right: 0; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ── BACK TO TOP ─────────────────────────────── */
#back-top {
  position: fixed;
  bottom: 28px;
  /* right: 28px; */
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);       /* green — clearly visible on any bg */
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(95,176,74,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 9990; 
}            
#back-top.visible { opacity: 1; pointer-events: auto; }
#back-top:hover   { transform: translateY(-4px) scale(1.12); box-shadow: 0 8px 28px rgba(95,176,74,.6); }

/* ── KEYFRAMES ───────────────────────────────── */
@keyframes fadeSlideDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:none} }
@keyframes fadeSlideUp   { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width:991px) {
  .hero { padding: 60px 0 50px; min-height: auto; }
  .hero-card-wrap { margin-top: 48px; }
  .float-card-1, .float-card-2 { display: none; }
  .pricing-card.featured { transform: none; }
  .process-connector { margin-left: 43px; }
  #cursor, #cursor-ring { display: none; }
}
@media (max-width:575px) {
  section { padding: 65px 0; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 20px; }
  .form-row { flex-direction: column; gap: 0; }
  .btn-primary-main, .btn-outline-main { width: 100%; justify-content: center; }
  .hero-cta { flex-direction: column; }
  .cta-band { padding: 65px 0; }
  .footer-bottom { padding: 14px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}

/* ── BACK-TO-TOP (fix missing right position) ─────────────── */
#back-top {
  right: 28px; /* was commented out — restored */
}

/* ══════════════════════════════════════════════════════════════
   INDUSTRIES SECTION
══════════════════════════════════════════════════════════════ */
.ind-section {
  background-color: #0f1b1e;
  padding: 80px 0 60px;
}

.ind-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5fb04a;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

/* Underline draws in when parent becomes visible */
.ind-eyebrow::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #5fb04a;
  border-radius: 2px;
  transition: width 0.6s 0.4s cubic-bezier(.22,.61,.36,1);
}
.visible .ind-eyebrow::after { width: 100%; }

.ind-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  color: #004063;
  line-height: 1.18;
  margin-bottom: 0;
}
.ind-heading em {
  color: #5fb04a;
  font-style: italic;
}

.ind-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.7;
  max-width: 480px;
}

.ind-grid {
  border-top: 1px solid #d6d3cd;
  margin-top: 48px;
}

.ind-card {
  padding: 32px 24px 32px 0;
  border-bottom: 1px solid #d6d3cd;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s;
}

/* Green underline sweep on hover */
.ind-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #5fb04a;
  transition: width 0.35s cubic-bezier(.22,.61,.36,1);
}
.ind-card:hover::before  { width: 100%; }
.ind-card:hover          { background: rgba(95,176,74,0.045); transform: translateY(-2px); }

.ind-card-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ind-icon-wrap {
  width: 44px; height: 44px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f8f7f3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s,
              transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s;
}
.ind-icon-wrap svg {
  width: 22px; height: 22px;
  color: #5fb04a;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.ind-card:hover .ind-icon-wrap {
  border-color: #5fb04a;
  background: #edf7ea;
  transform: scale(1.15) rotate(-4deg);
  box-shadow: 0 4px 12px rgba(95,176,74,0.18);
}

.ind-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  transition: color 0.2s;
}
.ind-card:hover .ind-card-title { color: #5fb04a; }

.ind-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #ffffff;
  line-height: 1.65;
  margin: 0;
}

/* Vertical dividers between columns on tablet+ */
@media (min-width: 768px) {
  .ind-col-divider { border-right: 1px solid #d6d3cd; }
}

@media (max-width: 767.98px) {
  .ind-card { padding: 24px 0; }
}


/* ══════════════════════════════════════════════════════════════
   MANIFESTO SECTION
══════════════════════════════════════════════════════════════ */
.mfst-section {
  background-color: #0b1f3a;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Pulsing glow orbs */
.mfst-section::before,
.mfst-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: orbPulse 8s ease-in-out infinite alternate;
}
.mfst-section::before {
  width: 400px; height: 400px;
  top: -80px; left: -80px;
  background: radial-gradient(circle, rgba(95,176,74,0.12) 0%, transparent 70%);
}
.mfst-section::after {
  width: 300px; height: 300px;
  bottom: -60px; right: -60px;
  background: radial-gradient(circle, rgba(0,64,99,0.35) 0%, transparent 70%);
  animation-delay: -4s;
}
@keyframes orbPulse {
  from { transform: scale(1);   opacity: 0.7; }
  to   { transform: scale(1.3); opacity: 1;   }
}

.mfst-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.mfst-bg-text span {
  font-family: 'Playfair Display', serif;
  font-size: clamp(10rem, 28vw, 22rem);
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.04em;
  animation: bgDrift 14s ease-in-out infinite alternate;
}
@keyframes bgDrift {
  from { transform: translateX(-4%) scale(1);    opacity: 0.04; }
  to   { transform: translateX(4%)  scale(1.05); opacity: 0.065; }
}

.mfst-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.mfst-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.mfst-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 0;
}
.mfst-headline em {
  color: #5fb04a;
  font-style: italic;
  display: block;
}

/* Word-by-word reveal (JS adds .words-visible) */
.mfst-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
.mfst-headline.words-visible .word {
  opacity: 1;
  transform: none;
}

.mfst-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 28px auto 36px;
  max-width: 560px;
}

.mfst-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.mfst-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 3px;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, color 0.2s;
}
/* Fill sweep on hover */
.mfst-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(95,176,74,0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(.22,.61,.36,1);
}
.mfst-tag:hover::before   { transform: scaleX(1); }
.mfst-tag:hover           { border-color: #5fb04a; color: #5fb04a; }

@media (max-width: 767.98px) {
  .mfst-section { padding: 70px 16px; }
}


/* ══════════════════════════════════════════════════════════════
   CTA / CONTACT SECTION
══════════════════════════════════════════════════════════════ */
.cta-section {
  background-color: #f2f0eb;
  padding: 80px 0;
}

.cta-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5fb04a;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}
.cta-eyebrow::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #5fb04a;
  border-radius: 2px;
  transition: width 0.6s 0.4s cubic-bezier(.22,.61,.36,1);
}
.visible .cta-eyebrow::after { width: 100%; }

.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
  color: #004063;
  line-height: 1.18;
  margin-bottom: 16px;
}
.cta-heading em {
  color: #5fb04a;
  font-style: italic;
  display: block;
}

.cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.cta-contact-icon {
  width: 36px; height: 36px;
  border: 1px solid #d0cdc8;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s,
              transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.cta-contact-icon svg {
  width: 16px; height: 16px;
  stroke: #5fb04a;
  fill: none;
  stroke-width: 1.8;
}
.cta-contact-item:hover .cta-contact-icon {
  border-color: #5fb04a;
  background: #edf7ea;
  transform: scale(1.15);
}

.cta-contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.cta-contact-value {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #004063;
  text-decoration: none;
}

.cta-guarantee {
  border: 1px solid #d0cdc8;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 32px;
  background: #faf9f6;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.cta-guarantee:hover {
  border-color: #5fb04a;
  box-shadow: 0 4px 20px rgba(95,176,74,0.1);
}
.cta-guarantee svg {
  width: 20px; height: 20px;
  stroke: #5fb04a;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}
.cta-guarantee-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #004063;
  margin-bottom: 3px;
}
.cta-guarantee-text {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #6b7280;
}

/* Form card */
.cta-form-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  transition: box-shadow 0.35s, transform 0.35s;
}
.cta-form-card:hover {
  box-shadow: 0 12px 50px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.cta-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #004063;
  margin-bottom: 24px;
}

.cta-form-label {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 5px;
  display: block;
}

.cta-form-control {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 10px 14px;
  color: #374151;
  width: 100%;
  outline: none;
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.2s;
}
.cta-form-control:focus {
  border-color: #5fb04a;
  box-shadow: 0 0 0 3px rgba(95,176,74,0.12);
  background: #fafffe;
}
.cta-form-control::placeholder { color: #9ca3af; }

select.cta-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

textarea.cta-form-control {
  resize: vertical;
  min-height: 100px;
}

.cta-submit-btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: #004063;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  width: 100%;
  cursor: pointer;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.cta-submit-btn:hover { background: #003050; }

/* Arrow slides right on hover */
.cta-submit-btn svg {
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.cta-submit-btn:hover svg { transform: translateX(5px); }

/* Shimmer sweep */
.cta-submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.cta-submit-btn:hover::after { transform: translateX(100%); }

.cta-form-footnote {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .cta-form-card { padding: 28px 20px; margin-top: 40px; }
}


/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL — unified (overrides the earlier .reveal rule
   with the same class; this version adds left/right/stagger)
══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1),
              transform 0.7s cubic-bezier(.22,.61,.36,1);
}
.reveal.reveal-left  { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }
.reveal.visible      { opacity: 1; transform: none; }

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(.22,.61,.36,1),
              transform 0.55s cubic-bezier(.22,.61,.36,1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: none; }

/* whats-app button */
/* Floating WhatsApp Button - Left Side */
.wa-right-btn{
    position: fixed;
    right: 20px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 99999;
    transition: all .3s ease;
    animation: waPulse 2s infinite;
}

.wa-right-btn:hover{
    transform: scale(1.12);
    background: #1ebe5d;
    color: #fff;
}

@keyframes waPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* Mobile */
@media (max-width:768px){
    .wa-right-btn{
        width:55px;
        height:55px;
        right:15px;
        bottom:20px;
        font-size:28px;
    }
}
/* ══════════════════════════════════════════════════════════════
   HERO TRUST ROW
══════════════════════════════════════════════════════════════ */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted);
  margin-top: 16px;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   WHY US SECTION
══════════════════════════════════════════════════════════════ */
.whyus-section {
  background: var(--surface);
  padding: 90px 0;
}
.whyus-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--rlg);
  padding: 32px 26px;
  height: 100%;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.whyus-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.whyus-card:hover::after { transform: scaleX(1); }
.whyus-card:hover {
  border-color: var(--primary);
  box-shadow: var(--sh);
  transform: translateY(-6px);
}
.whyus-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--accent-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--accent);
  margin-bottom: 18px;
  transition: background .3s, color .3s, transform .3s;
}
.whyus-card:hover .whyus-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
}
.whyus-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.whyus-card p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE FIXES
══════════════════════════════════════════════════════════════ */

/* --- Tablet (768px – 991px) --- */
@media (max-width: 991px) {
  .hero { padding: 60px 0 50px; min-height: auto; }
  .hero h1 { font-size: clamp(2.2rem, 5vw, 3rem); }
  .hero-card-wrap { margin-top: 48px; }
  .float-card-1, .float-card-2 { display: none; }
  .process-connector { margin-left: 43px; }
  #cursor, #cursor-ring, #cursor-glow { display: none !important; }

  .ind-heading { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
  .cta-form-card { margin-top: 0; }

  .section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); }
  .whyus-section { padding: 70px 0; }
  section { padding: 70px 0; }
}

/* --- Mobile landscape / large phone (576px – 767px) --- */
@media (max-width: 767px) {
  section { padding: 60px 0; }

  .hero { padding: 50px 0 40px; }
  .hero h1 { font-size: 2rem; line-height: 1.18; }
  .hero-sub { font-size: .96rem; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .btn-primary-main, .btn-outline-main { width: 100%; justify-content: center; }
  .hero-stats { gap: 18px; flex-wrap: wrap; }
  .hero-stat-item .num { font-size: 1.5rem; }
  .hero-trust-row { font-size: .75rem; }

  .hero-main-card { padding: 22px 18px; }
  .form-row { flex-direction: column; gap: 0; }

  .section-title { font-size: 1.7rem; }
  .section-sub { font-size: .92rem; }

  .process-step { gap: 14px; padding: 18px; }
  .step-num { width: 38px; height: 38px; font-size: .9rem; }
  .process-connector { margin-left: 37px; }

  .ind-section { padding: 60px 0 40px; }
  .ind-heading { font-size: 1.9rem; }
  .ind-desc { font-size: 14px; }
  .ind-card { padding: 22px 0; }

  .result-num { font-size: 2.3rem; }

  .mfst-section { padding: 60px 16px; }
  .mfst-headline { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  .mfst-body { font-size: 14px; }

  .cta-section { padding: 60px 0; }
  .cta-heading { font-size: 1.9rem; }
  .cta-form-card { padding: 26px 18px; margin-top: 36px; }

  .testi-card { padding: 22px; }

  footer { padding: 50px 0 0; }
  .footer-desc { max-width: 100%; }

  .faq-question { font-size: .88rem; padding: 16px 18px; }
  .faq-answer { font-size: .84rem; }
  .faq-item.open .faq-answer { padding: 0 18px 16px; }
}

/* --- Small mobile (up to 575px) --- */
@media (max-width: 575px) {
  section { padding: 55px 0; }

  .hero { padding: 44px 0 36px; }
  .hero h1 { font-size: 1.85rem; letter-spacing: -.02em; }
  .hero-sub { font-size: .9rem; margin: 16px 0 24px; }
  .hero-badge { font-size: .73rem; }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .hero-stat-item .num { font-size: 1.4rem; }
  .hero-stat-item .label { font-size: .72rem; }

  .service-card { padding: 24px 20px; }
  .whyus-card { padding: 24px 20px; }

  .result-card { padding: 22px; }
  .result-num { font-size: 2rem; }

  .section-title { font-size: 1.55rem; }
  .section-label { font-size: .7rem; }

  .mfst-tags { gap: 8px; }
  .mfst-tag { font-size: .7rem; padding: 7px 14px; }

  .ind-col-divider { border-right: none; }
  .ind-card { border-bottom: 1px solid #d6d3cd !important; }

  .cta-heading { font-size: 1.7rem; }
  .cta-desc { font-size: .9rem; }
  .cta-guarantee { flex-direction: column; gap: 10px; }

  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }

  .wa-right-btn { width: 48px; height: 48px; font-size: 26px; right: 12px; bottom: 18px; }

  .marquee-item { font-size: .78rem; }
  .marquee-track { gap: 36px; }
}

/* --- Very small phones (up to 380px) --- */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.65rem; }
  .hero-main-card h3 { font-size: .95rem; }
  .btn-submit { font-size: .84rem; padding: 12px; }
  .cta-submit-btn { font-size: .84rem; padding: 12px 20px; }
  .hero-stats { gap: 10px; }
}

/* ── Ensure images never overflow on any device ─── */
img { max-width: 100%; height: auto; }

/* ── Fix navbar collapse gap on mobile ─── */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 0 10px;
    margin-top: 8px;
    border-radius: 0 0 var(--r) var(--r);
  }
  .navbar-collapse .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    padding: 0 8px;
    gap: 8px !important;
  }
  .btn-nav { align-self: flex-start; }
}

/* ── Industry section dark bg heading colour fix ─── */
@media (max-width: 767px) {
  .ind-heading { color: #ffffff; }
}

/* ── Touch device: remove hover-only tilt lag ─── */
@media (hover: none) {
  .tilt-card { transform: none !important; }
  .mag-btn { transform: none !important; }
}

/* ── Fix form overflow on small screens ─── */
.form-control-custom, .cta-form-control {
  max-width: 100%;
  box-sizing: border-box;
}

/* ── Prevent hero card from clipping on small tablets ─── */
@media (max-width: 991px) {
  .hero-card-wrap { padding: 0 4px; }
  .hero-main-card { border-radius: var(--r); }
}


/* ══════════════════════════════════════════════════════════════
   FINAL RESPONSIVE & BUG FIXES
══════════════════════════════════════════════════════════════ */

/* --- Hero form on mobile: stack name+phone vertically --- */
@media (max-width: 575px) {
  .hero-main-card .form-row {
    flex-direction: column;
    gap: 0;
  }
  .hero-main-card .form-row .form-control-custom {
    width: 100%;
  }
}

/* --- CTA section: form full width on mobile --- */
@media (max-width: 767px) {
  .cta-section .col-lg-6 { padding: 0 12px; }
  .cta-section .offset-lg-1 { margin-left: 0; }
  .cta-form-card { width: 100%; }
}

/* --- Industries heading: white on dark bg always --- */
.ind-heading { color: #ffffff; }

/* --- Navbar: logo doesn't shrink on small screens --- */
.navbar-brand img { min-width: 90px; }

/* --- Fix hero card overflow on tablet --- */
@media (max-width: 991px) {
  .hero-card-wrap {
    padding: 10px 0;
    overflow: visible;
  }
}

/* --- Footer: full width columns on mobile --- */
@media (max-width: 575px) {
  footer .col-6 { width: 50%; }
  footer .col-lg-4 { width: 100%; }
}

/* --- Prevent horizontal scroll on all screens --- */
html, body {
  overflow-x: hidden;
  width: 100%;
}
.container { max-width: 100%; }

/* --- Back to top: ensure it never overlaps WhatsApp --- */
#back-top {
  bottom: 90px;
  right: 28px;
}
@media (max-width: 575px) {
  #back-top { bottom: 85px; right: 14px; }
  .wa-right-btn { bottom: 18px; right: 12px; }
}

/* --- Process steps: no horizontal overflow on small screens --- */
@media (max-width: 575px) {
  .process-step { flex-direction: column; gap: 10px; }
  .process-step:hover { transform: none; }
  .process-connector { margin-left: 0; }
}

/* --- Testimonial cards: full width on small mobile --- */
@media (max-width: 575px) {
  .testi-card blockquote { font-size: .85rem; }
}

/* --- FAQ: prevent text overflow --- */
.faq-question { word-break: break-word; }

/* --- Marquee: pause on touch devices --- */
@media (hover: none) {
  .marquee-track { animation-play-state: running !important; }
}
