:root {
  --ink: #15233f;
  --navy: #1c2c4d;
  --navy-deep: #0f1a30;
  --lime: #9ec529;
  --lime-bright: #bbe24c;
  --lime-deep: #6f8e1c;
  --cream: #ffffff;
  --mist: #f3f6ec;
  --mist-2: #eef2e3;
  --text: #1f2a3d;
  --muted: #6c7689;
  --line: rgba(21, 35, 63, 0.10);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1, h2, h3, .display { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--ink); line-height: 1.18; letter-spacing: -0.01em; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: 999px; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: transform 0.2s, background 0.25s, color 0.25s, box-shadow 0.25s; white-space: nowrap; }
.btn-lime { background: var(--lime); color: var(--ink); box-shadow: 0 10px 26px rgba(158, 197, 41, 0.4); }
.btn-lime:hover { background: var(--lime-bright); transform: translateY(-2px); }
.btn-navy { background: var(--ink); color: #fff; }
.btn-navy:hover { background: var(--navy); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--lime-deep); color: var(--lime-deep); }

/* ===== Nav ===== */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 5vw; transition: background 0.3s, box-shadow 0.3s, padding 0.3s; }
nav.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3); box-shadow: 0 6px 26px rgba(21,35,63,0.08); padding: 10px 5vw; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 56px; width: auto; transition: height 0.3s; }
nav.scrolled .brand img { height: 46px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; font-size: 14.5px; font-weight: 500; color: var(--ink); transition: color 0.2s; position: relative; }
.nav-links a:not(.btn)::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 100%; height: 2px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
.nav-links a:not(.btn):hover { color: var(--lime-deep); }
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 4px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 130; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 120; background: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity 0.35s, transform 0.35s, visibility 0.35s; }
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a { color: #fff; text-decoration: none; font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 500; padding: 12px; }
.mobile-menu a.btn { margin-top: 16px; color: var(--ink); }
.mobile-menu .mm-contact { margin-top: 24px; font-size: 15px; color: var(--lime-bright); font-family: 'Inter', sans-serif; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--ink); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; z-index: 0; }
.hero::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(15,26,48,0.92) 0%, rgba(15,26,48,0.7) 42%, rgba(15,26,48,0.25) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 130px 5vw 70px; width: 100%; }
.hero-content { max-width: 620px; color: #fff; }
.hero-pill { display: inline-flex; align-items: center; gap: 9px; background: rgba(158,197,41,0.16); border: 1px solid rgba(158,197,41,0.5); color: var(--lime-bright); font-weight: 600; font-size: 13px; padding: 8px 16px; border-radius: 999px; letter-spacing: 0.3px; opacity: 0; animation: fadeUp 0.8s 0.1s forwards; }
.hero h1 { color: #fff; font-size: clamp(36px, 5.6vw, 66px); font-weight: 700; margin: 22px 0 0; opacity: 0; animation: fadeUp 0.9s 0.25s forwards; }
.hero h1 .hl { color: var(--lime-bright); }
.hero p.sub { margin-top: 20px; font-size: clamp(16px, 1.6vw, 18.5px); color: rgba(255,255,255,0.85); max-width: 540px; opacity: 0; animation: fadeUp 0.9s 0.4s forwards; }
.hero-ctas { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s 0.55s forwards; }
.hero-offer { margin-top: 26px; display: inline-flex; align-items: center; gap: 12px; font-size: 14.5px; color: rgba(255,255,255,0.8); opacity: 0; animation: fadeUp 0.9s 0.7s forwards; }
.hero-offer b { background: var(--lime); color: var(--ink); font-family: 'Poppins',sans-serif; font-weight: 700; padding: 5px 12px; border-radius: 8px; font-size: 14px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ===== Trust strip ===== */
.trust { background: var(--lime); }
.trust-inner { max-width: 1180px; margin: 0 auto; padding: 22px 5vw; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 12px; justify-content: center; color: var(--ink); }
.trust-item svg { width: 26px; height: 26px; flex-shrink: 0; }
.trust-item strong { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14.5px; line-height: 1.25; }
.trust-item + .trust-item { border-left: 1px solid rgba(21,35,63,0.16); padding-left: 18px; }

/* ===== Sections ===== */
section { padding: 90px 5vw; }
.wrap { max-width: 1180px; margin: 0 auto; }
.center { text-align: center; }
.kicker { display: inline-flex; align-items: center; gap: 9px; font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--lime-deep); margin-bottom: 16px; }
.kicker::before { content: ''; width: 26px; height: 2px; background: var(--lime); border-radius: 2px; }
.center .kicker::after { content: ''; width: 26px; height: 2px; background: var(--lime); border-radius: 2px; }
h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; }
.lead { margin-top: 18px; font-size: 17px; color: var(--muted); max-width: 600px; }
.center .lead { margin-left: auto; margin-right: auto; }
.tint { background: var(--mist); }

/* ===== Split (why mobile / about) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: 24px; object-fit: cover; aspect-ratio: 4/5; box-shadow: 0 30px 70px rgba(21,35,63,0.22); }
.split-media .float-badge { position: absolute; bottom: 24px; left: -24px; background: #fff; border-radius: 18px; padding: 18px 22px; box-shadow: 0 20px 50px rgba(21,35,63,0.18); display: flex; align-items: center; gap: 14px; }
.split-media .float-badge .fb-num { font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 30px; color: var(--lime-deep); line-height: 1; }
.split-media .float-badge .fb-txt { font-size: 13px; color: var(--muted); line-height: 1.3; }
.bullets { margin-top: 28px; display: grid; gap: 16px; }
.bullet { display: flex; gap: 14px; align-items: flex-start; }
.bullet .bdot { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--mist-2); display: grid; place-items: center; }
.bullet .bdot svg { width: 16px; height: 16px; color: var(--lime-deep); }
.bullet b { font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 15.5px; color: var(--ink); display: block; }
.bullet span { font-size: 14.5px; color: var(--muted); }

/* ===== Service cards ===== */
.cards { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.scard { background: #fff; border-radius: 22px; overflow: hidden; box-shadow: 0 14px 40px rgba(21,35,63,0.07); border: 1px solid var(--line); text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; display: block; }
.scard:hover { transform: translateY(-7px); box-shadow: 0 28px 60px rgba(21,35,63,0.16); }
.scard-img { aspect-ratio: 3/2; overflow: hidden; }
.scard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.scard:hover .scard-img img { transform: scale(1.06); }
.scard-body { padding: 26px 26px 30px; }
.scard h3 { font-size: 21px; margin-bottom: 9px; }
.scard p { font-size: 14.5px; color: var(--muted); }
.scard .more { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 14px; color: var(--lime-deep); }

/* ===== Gallery ===== */
.gallery { margin-top: 46px; columns: 4; column-gap: 16px; }
.gallery img { width: 100%; border-radius: 16px; margin-bottom: 16px; cursor: pointer; break-inside: avoid; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 10px 28px rgba(21,35,63,0.1); }
.gallery img:hover { transform: scale(1.02); box-shadow: 0 18px 44px rgba(21,35,63,0.2); }

/* ===== Steps ===== */
.steps { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { text-align: center; padding: 0 14px; position: relative; }
.step-num { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; background: var(--ink); color: var(--lime-bright); font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 24px; display: grid; place-items: center; }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ===== Pricing teaser ===== */
.price-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 32px 28px; box-shadow: 0 14px 40px rgba(21,35,63,0.06); }
.price-card.feature { background: var(--ink); color: #fff; border-color: var(--ink); transform: scale(1.03); }
.price-card h3 { font-size: 20px; margin-bottom: 6px; }
.price-card.feature h3 { color: #fff; }
.price-card .tag { font-size: 12.5px; font-weight: 600; color: var(--lime-deep); text-transform: uppercase; letter-spacing: 1px; }
.price-card.feature .tag { color: var(--lime-bright); }
.price-card ul { list-style: none; margin-top: 18px; display: grid; gap: 11px; }
.price-card li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--muted); }
.price-card.feature li { color: rgba(255,255,255,0.8); }
.price-card li::before { content: '\2713'; position: absolute; left: 0; color: var(--lime-deep); font-weight: 700; }
.price-card.feature li::before { color: var(--lime-bright); }

/* ===== Testimonials ===== */
.tgrid { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard { background: #fff; border-radius: 22px; padding: 32px 28px; box-shadow: 0 14px 40px rgba(21,35,63,0.07); border: 1px solid var(--line); }
.tstars { color: var(--lime); font-size: 17px; letter-spacing: 2px; margin-bottom: 16px; }
.tcard p { font-size: 15.5px; color: var(--text); line-height: 1.65; }
.tcard .who { margin-top: 18px; font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 14px; color: var(--ink); }
.tcard .who span { display: block; font-family: 'Inter',sans-serif; font-weight: 400; font-size: 13px; color: var(--muted); }

/* ===== Area band ===== */
.area-tags { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-tags span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-size: 13.5px; font-weight: 500; color: var(--ink); }

/* ===== CTA band ===== */
.cta-band { background: var(--ink); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -60px; right: -40px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(158,197,41,0.28), transparent 70%); }
.cta-band .wrap { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,0.8); margin: 18px auto 0; }
.cta-band .hero-ctas { justify-content: center; margin-top: 32px; }

/* ===== Footer ===== */
footer { background: var(--mist); padding: 70px 5vw 36px; border-top: 1px solid var(--line); }
.foot-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-brand img { height: 70px; margin-bottom: 14px; }
.foot-brand p { font-size: 14px; color: var(--muted); max-width: 280px; }
.foot-soc { margin-top: 18px; display: flex; gap: 12px; }
.foot-soc a { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); transition: background 0.25s, color 0.25s; }
.foot-soc a:hover { background: var(--lime); color: var(--ink); }
.foot-soc svg { width: 18px; height: 18px; }
.foot-col h4 { font-family: 'Poppins',sans-serif; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.foot-col a, .foot-col p { display: block; font-size: 14px; color: var(--muted); text-decoration: none; padding: 5px 0; }
.foot-col a:hover { color: var(--lime-deep); }
.foot-bottom { max-width: 1180px; margin: 44px auto 0; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }

/* ===== Lightbox ===== */
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(15,26,48,0.92); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; padding: 5vh 5vw; }
.lb.open { display: flex; }
.lb img { max-width: 92vw; max-height: 88vh; border-radius: 14px; }
.lb-close { position: absolute; top: 22px; right: 28px; background: none; border: none; color: #fff; font-size: 40px; cursor: pointer; line-height: 1; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.2,0.6,0.2,1), transform 0.8s cubic-bezier(0.2,0.6,0.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; } .reveal.d2 { transition-delay: 0.2s; } .reveal.d3 { transition-delay: 0.3s; }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.flip .split-media { order: 0; }
  .split-media img { aspect-ratio: 16/11; }
  .split-media .float-badge { left: 16px; }
  .cards, .steps, .price-grid, .tgrid { grid-template-columns: 1fr; }
  .price-card.feature { transform: none; }
  .gallery { columns: 2; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 18px 0; }
  .trust-item:nth-child(odd) { border-left: none; padding-left: 0; }
  .trust-item:nth-child(3) { border-top: 1px solid rgba(21,35,63,0.16); padding-top: 16px; }
  .trust-item:nth-child(4) { border-top: 1px solid rgba(21,35,63,0.16); padding-top: 16px; padding-left: 18px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  section { padding: 64px 5vw; }
  .gallery { columns: 1; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-pill, .hero h1, .hero p.sub, .hero-ctas, .hero-offer { animation: none; opacity: 1; }
}
