@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #17211d;
  --muted: #62716b;
  --brand: #12372a;
  --brand-2: #2f7d57;
  --gold: #d7a63f;
  --mint: #edf7f1;
  --line: #dce7e1;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(18, 55, 42, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: #fbfdfb;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.preloader {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: var(--white); transition: opacity .45s ease, visibility .45s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader span { width: 48px; height: 48px; border: 4px solid var(--line); border-top-color: var(--brand-2); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.9); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(220,231,225,.75); }
.top-strip { display: flex; align-items: center; justify-content: center; gap: 26px; min-height: 38px; padding: 7px 18px; color: #eaf6ef; background: var(--brand); font-size: 13px; }
.top-strip a, .top-strip span { white-space: nowrap; }
.top-strip i { color: var(--gold); margin-right: 6px; }
.nav-shell { width: min(1180px, calc(100% - 32px)); min-height: 76px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0; color: var(--brand); }
.brand img { width: 48px; height: 48px; }
.brand small { display: block; font-size: 11px; color: var(--muted); font-weight: 700; }
.nav-menu { display: flex; align-items: center; gap: 8px; padding: 0; margin: 0; list-style: none; }
.nav-menu a { display: block; padding: 10px 14px; border-radius: 999px; color: #2e3d37; font-weight: 700; font-size: 14px; transition: .25s ease; }
.nav-menu a:hover, .nav-menu a.active { color: var(--brand); background: var(--mint); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--white); border-radius: 8px; }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--brand); transition: .25s ease; }

.hero { position: relative; min-height: 680px; display: grid; align-items: center; overflow: hidden; color: var(--white); }
.hero-media { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,55,42,.94), rgba(18,55,42,.56), rgba(18,55,42,.15)), url("../images/banner/banner-2.jpg") center/cover no-repeat; transform: scale(1.03); animation: heroMove 16s ease-in-out infinite alternate; }
@keyframes heroMove { to { transform: scale(1.09) translateX(-1.5%); } }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: 44px; align-items: center; padding: 90px 0 70px; }
.hero h1 { max-width: 760px; margin: 10px 0 20px; font-size: clamp(42px, 7vw, 78px); line-height: 1.02; letter-spacing: 0; }
.hero p { max-width: 650px; color: rgba(255,255,255,.84); font-size: 18px; }
.eyebrow { color: var(--gold); text-transform: uppercase; font-weight: 800; font-size: 12px; letter-spacing: 1.4px; margin: 0 0 8px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 22px; border-radius: 8px; font-weight: 800; border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn.primary { color: var(--white); background: linear-gradient(135deg, var(--brand-2), var(--brand)); }
.btn.ghost { color: var(--white); border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.1); backdrop-filter: blur(10px); }
.btn.light { color: var(--brand); background: var(--white); }
.hero-panel { display: grid; gap: 16px; padding: 22px; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.14); backdrop-filter: blur(18px); border-radius: 8px; box-shadow: var(--shadow); }
.metric { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 18px; border-radius: 8px; background: rgba(255,255,255,.13); }
.metric strong { font-size: 42px; line-height: 1; color: var(--gold); }

.section { padding: 96px 0; }
.section h1, .section h2, .page-hero h1, .cta h2 { margin: 0 0 18px; line-height: 1.12; font-size: clamp(32px, 5vw, 52px); letter-spacing: 0; }
.section p, .page-hero p { color: var(--muted); margin: 0 0 18px; }
.split, .proof-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 44px; align-items: start; }
.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.feature-card, .info-card, .form-card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 12px 32px rgba(18,55,42,.08); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover, .info-card:hover { transform: translateY(-6px); border-color: rgba(47,125,87,.45); box-shadow: var(--shadow); }
.feature-card i { width: 46px; height: 46px; display: grid; place-items: center; color: var(--brand); background: var(--mint); border-radius: 8px; font-size: 20px; }
.feature-card h3, .info-card h3 { margin: 18px 0 8px; font-size: 22px; }
.band { background: linear-gradient(135deg, #f3faf5, #ffffff); border-block: 1px solid var(--line); }
.image-frame { overflow: hidden; border-radius: 8px; box-shadow: var(--shadow); }
.image-frame img { width: 100%; min-height: 420px; object-fit: cover; transition: transform .5s ease; }
.image-frame:hover img { transform: scale(1.05); }
.check-list { padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li { position: relative; margin: 12px 0; padding-left: 30px; color: #2d3b35; font-weight: 600; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--brand-2); font-weight: 900; }
.cta { padding: 72px 0; color: var(--white); background: linear-gradient(135deg, var(--brand), #28634a); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta h2 { max-width: 760px; color: var(--white); }

.page-hero { padding: 120px 0 76px; color: var(--white); background: linear-gradient(135deg, rgba(18,55,42,.95), rgba(47,125,87,.82)), url("../images/image-3.jpg") center/cover; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.84); font-size: 18px; }
.service-list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 24px; }
.contact-list { display: grid; gap: 14px; }
.contact-list a, .contact-list span { display: block; padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: grid; gap: 8px; color: var(--ink); font-weight: 700; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 13px 14px; background: #fbfdfb; color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
textarea { min-height: 140px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--brand-2); box-shadow: 0 0 0 4px rgba(47,125,87,.12); }
.form-status { min-height: 24px; margin-top: 14px; color: var(--brand-2); font-weight: 700; }
.map-embed { width: 100%; min-height: 320px; border: 0; border-radius: 8px; box-shadow: var(--shadow); }

.site-footer { color: #dfece6; background: #0e241c; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 34px; padding: 64px 0 42px; }
.footer-logo { width: 58px; height: 58px; margin-bottom: 14px; }
.site-footer h3, .site-footer h4 { color: var(--white); margin: 0 0 14px; }
.site-footer p { margin: 0 0 10px; color: #b9c9c2; }
.site-footer a { display: block; color: #cbdad4; margin: 8px 0; transition: color .2s ease, transform .2s ease; }
.site-footer a:hover { color: var(--gold); transform: translateX(3px); }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.social-links a { width: 38px; height: 38px; display: grid; place-items: center; margin: 0; border-radius: 8px; color: var(--white); background: rgba(255,255,255,.1); }
.social-links a:hover { transform: translateY(-4px); background: var(--brand-2); color: var(--white); }
.footer-bottom { padding: 18px 20px; text-align: center; color: #aebfb7; border-top: 1px solid rgba(255,255,255,.1); }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; z-index: 80; display: grid; place-items: center; color: var(--white); background: #25d366; border-radius: 50%; font-size: 28px; box-shadow: 0 18px 44px rgba(37,211,102,.36); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.fa {
  min-width: 1.45em;
  min-height: 1.45em;
  display: inline-grid;
  place-items: center;
  font-family: Inter, Arial, sans-serif;
  font-size: .72em;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
}
.fa-phone::before { content: "TEL"; }
.fa-envelope::before { content: "@"; }
.fa-clock-o::before { content: "24"; }
.fa-credit-card::before { content: "POS"; }
.fa-qrcode::before { content: "QR"; }
.fa-university::before, .fa-bank::before { content: "BNK"; }
.fa-headphones::before, .fa-life-ring::before { content: "SUP"; }
.fa-shield::before { content: "SEC"; }
.fa-leaf::before { content: "AG"; }
.fa-users::before { content: "B2B"; }
.fa-map-marker::before { content: "PIN"; }
.fa-mobile::before { content: "ATM"; }
.fa-plus-circle::before { content: "+"; }
.fa-volume-up::before { content: "SND"; }
.fa-facebook::before { content: "f"; }
.fa-instagram::before { content: "IG"; }
.fa-twitter::before { content: "X"; }
.fa-linkedin::before { content: "in"; }
.fa-youtube-play::before { content: "YT"; }
.fa-whatsapp::before { content: "WA"; }

@media (max-width: 920px) {
  .top-strip { justify-content: flex-start; overflow-x: auto; }
  .nav-toggle { display: block; }
  .nav-menu { position: absolute; left: 16px; right: 16px; top: 112px; display: none; flex-direction: column; align-items: stretch; padding: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { border-radius: 8px; }
  .hero { min-height: auto; }
  .hero-grid, .split, .proof-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 70px; }
  .service-list, .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1140px); }
  .top-strip { font-size: 12px; }
  .brand span { font-size: 14px; }
  .brand img { width: 42px; height: 42px; }
  .hero h1 { font-size: 40px; }
  .card-grid, .service-list, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .page-hero { padding: 96px 0 58px; }
  .image-frame img { min-height: 280px; }
  .whatsapp-float { width: 52px; height: 52px; }
}
