:root {
  --navy: #071526;
  --navy-2: #0b2039;
  --blue: #1266f1;
  --blue-2: #2f7cff;
  --cyan: #52d4ff;
  --gold: #ffb703;
  --green: #19c37d;
  --ink: #101828;
  --muted: #5f6b7a;
  --line: #dfe6ee;
  --paper: #f4f7fb;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(5, 20, 40, .13);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 1000; padding: 12px 18px; background: #fff; color: #000; border-radius: 8px; }
.skip-link:focus { top: 16px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 16px; color: var(--blue); font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { width: 26px; height: 2px; background: currentColor; content: ""; }
.section { padding: 104px 0; }
.section-soft { background: var(--paper); }
.section-dark { color: #fff; background: var(--navy); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-head > div { max-width: 760px; }
.section-title { max-width: 820px; margin: 0; color: var(--navy); font-size: clamp(2rem, 4.3vw, 4.35rem); font-weight: 850; letter-spacing: -.055em; line-height: .98; }
.section-title span { color: var(--blue); }
.section-dark .section-title { color: #fff; }
.section-lead { max-width: 660px; margin: 20px 0 0; color: var(--muted); font-size: 1.07rem; }
.section-dark .section-lead { color: #b7c4d4; }

.topbar { padding: 8px 0; color: #d9e5f2; background: #04101e; font-size: .78rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 20px; }
.topbar strong { color: #fff; }
.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,.08); color: #fff; background: rgba(7,21,38,.95); backdrop-filter: blur(14px); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.025em; }
.brand-mark { position: relative; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--navy); background: linear-gradient(145deg, #ffd65a, var(--gold)); box-shadow: 0 10px 25px rgba(255,183,3,.24); }
.brand-mark svg { width: 24px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy small { margin-top: 6px; color: #a9b9ca; font-size: .62rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; padding: 0; margin: 0; list-style: none; }
.nav-links > li > a { color: #d8e2ed; font-size: .9rem; font-weight: 700; transition: color .2s; }
.nav-links > li > a:hover, .nav-links > li > a[aria-current="page"] { color: #fff; }
.nav-cta, .btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border: 0; border-radius: 12px; font-size: .9rem; font-weight: 850; transition: transform .2s, box-shadow .2s, background .2s; }
.nav-cta { color: var(--navy) !important; background: var(--gold); }
.nav-cta:hover, .btn:hover { transform: translateY(-2px); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; color: white; background: transparent; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { width: 21px; height: 2px; display: block; margin: 4px auto; background: currentColor; content: ""; transition: transform .2s, opacity .2s; }

.hero { position: relative; min-height: 720px; display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--navy); }
.hero::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(4,15,29,.98) 0%, rgba(4,15,29,.87) 48%, rgba(4,15,29,.18) 78%), linear-gradient(0deg, rgba(4,15,29,.55), transparent 40%); content: ""; }
.hero-media { position: absolute; inset: 0 0 0 38%; width: 62%; height: 100%; object-fit: cover; object-position: center; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 720px) 1fr; }
.hero-copy { padding: 105px 0 115px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; color: #d8e5f2; background: rgba(255,255,255,.07); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #49e49d; box-shadow: 0 0 0 5px rgba(73,228,157,.12); }
.hero h1 { max-width: 790px; margin: 0; font-size: clamp(3.1rem, 6.6vw, 6.7rem); font-weight: 900; letter-spacing: -.065em; line-height: .87; }
.hero h1 span { color: var(--gold); }
.hero-text { max-width: 650px; margin: 28px 0 32px; color: #c7d3df; font-size: clamp(1rem, 1.5vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.btn-primary { color: var(--navy); background: var(--gold); box-shadow: 0 16px 32px rgba(255,183,3,.2); }
.btn-secondary { border: 1px solid rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.06); }
.btn-blue { color: #fff; background: var(--blue); box-shadow: 0 14px 30px rgba(18,102,241,.24); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px 34px; margin-top: 42px; color: #d9e3ed; font-size: .82rem; font-weight: 700; }
.hero-proof span { display: flex; align-items: center; gap: 8px; }
.check { width: 20px; height: 20px; display: inline-grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--navy); background: var(--gold); font-size: .75rem; font-weight: 900; }

.trust-strip { position: relative; z-index: 3; margin-top: -48px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.trust-item { min-height: 120px; display: flex; align-items: center; gap: 15px; padding: 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-icon { width: 46px; height: 46px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; color: var(--blue); background: #edf4ff; font-size: 1.25rem; }
.trust-item strong { display: block; color: var(--navy); font-size: .93rem; }
.trust-item small { display: block; margin-top: 4px; color: var(--muted); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 260px; padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s, border-color .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-5px); border-color: #afc8f5; box-shadow: 0 20px 50px rgba(9,31,59,.1); }
.service-number { position: absolute; top: 24px; right: 25px; color: #c7d1dd; font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 37px; border-radius: 15px; color: var(--blue); background: #edf4ff; font-size: 1.5rem; }
.service-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.2rem; letter-spacing: -.02em; }
.service-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.service-card.featured { border-color: var(--blue); color: #fff; background: var(--blue); }
.service-card.featured .service-icon { color: var(--navy); background: var(--gold); }
.service-card.featured h3 { color: #fff; }
.service-card.featured p, .service-card.featured .service-number { color: #dbe8ff; }

.ev-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: stretch; }
.ev-media { min-height: 620px; overflow: hidden; border-radius: var(--radius) 0 0 var(--radius); }
.ev-media img { width: 100%; height: 100%; object-fit: cover; }
.ev-copy { padding: clamp(42px, 6vw, 76px); border-radius: 0 var(--radius) var(--radius) 0; color: #fff; background: var(--navy); }
.ev-copy h2 { margin: 0; font-size: clamp(2.25rem, 4.5vw, 4.6rem); letter-spacing: -.055em; line-height: .96; }
.ev-copy h2 span { color: var(--gold); }
.ev-copy > p { color: #b9c7d5; }
.feature-list { display: grid; gap: 18px; padding: 0; margin: 30px 0 36px; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; color: #e7edf4; }
.feature-list .check { margin-top: 2px; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 17px; background: #dfe6ee; }
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item:nth-child(4), .gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption { position: absolute; inset: auto 0 0; padding: 45px 18px 17px; color: white; background: linear-gradient(transparent, rgba(3,11,20,.82)); font-size: .82rem; font-weight: 750; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.process-step { min-height: 230px; padding: 30px; background: #fff; }
.process-step b { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 36px; border-radius: 50%; color: #fff; background: var(--blue); }
.process-step h3 { margin: 0 0 8px; color: var(--navy); }
.process-step p { margin: 0; color: var(--muted); font-size: .9rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card { padding: 20px; border: 1px solid #d8e0ea; border-radius: var(--radius); background: #fff; box-shadow: 0 14px 35px rgba(9,25,48,.07); }
.review-card img { width: 100%; height: auto; border-radius: 11px; }
.review-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.review-meta span { color: #f4a800; letter-spacing: 2px; }
.review-meta strong { color: var(--navy); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

.cta-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 36px; padding: clamp(40px, 6vw, 72px); border-radius: 28px; color: #fff; background: linear-gradient(125deg, var(--blue), #0849ae); box-shadow: 0 26px 70px rgba(14,89,209,.25); }
.cta-panel h2 { max-width: 800px; margin: 0; font-size: clamp(2rem, 4.3vw, 4.25rem); letter-spacing: -.055em; line-height: .98; }
.cta-panel p { margin: 16px 0 0; color: #d7e7ff; }
.cta-panel .btn { min-width: 230px; color: var(--navy); background: var(--gold); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-card { display: flex; align-items: center; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-card:last-child { border: 0; }
.contact-card i { width: 46px; height: 46px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; color: var(--blue); background: #edf4ff; font-style: normal; }
.contact-card strong { display: block; color: var(--navy); }
.contact-card span { color: var(--muted); }
.area-box { padding: 35px; border-radius: var(--radius); color: #fff; background: var(--navy); }
.area-box h3 { margin: 0 0 10px; font-size: 1.5rem; }
.area-box p { color: #b8c5d3; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.area-tag { padding: 7px 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: #dfe9f3; background: rgba(255,255,255,.06); font-size: .75rem; }

.page-hero { position: relative; min-height: 480px; display: grid; align-items: end; overflow: hidden; color: #fff; background: var(--navy); }
.page-hero::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(4,15,29,.95), rgba(4,15,29,.25)), linear-gradient(0deg, rgba(4,15,29,.7), transparent 55%); content: ""; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.page-hero .container { position: relative; z-index: 2; padding-bottom: 70px; }
.page-hero h1 { max-width: 920px; margin: 0; font-size: clamp(3rem, 7vw, 6.6rem); letter-spacing: -.06em; line-height: .9; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { max-width: 630px; margin: 22px 0 0; color: #d0dbe6; font-size: 1.08rem; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.project-card { overflow: hidden; border-radius: 18px; background: #fff; box-shadow: 0 14px 35px rgba(9,25,48,.08); }
.project-card:nth-child(1), .project-card:nth-child(8) { grid-column: span 2; }
.project-card img { width: 100%; height: 390px; object-fit: cover; transition: transform .5s; }
.project-card:hover img { transform: scale(1.025); }
.project-info { padding: 20px; }
.project-info small { color: var(--blue); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.project-info h3 { margin: 7px 0 0; color: var(--navy); font-size: 1.05rem; }
.video-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; }
.video-shell { padding: 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(255,255,255,.06); box-shadow: var(--shadow); }
.video-shell video { width: 100%; max-height: 650px; border-radius: 16px; background: #000; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.stat { padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.05); }
.stat strong { display: block; color: var(--gold); font-size: 1.45rem; }
.stat span { color: #bdc9d5; font-size: .78rem; }

.footer { padding: 64px 0 28px; color: #b4c1cf; background: #040f1d; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .9fr; gap: 50px; }
.footer .brand { color: #fff; }
.footer-copy { max-width: 440px; margin: 22px 0 0; }
.footer h3 { margin: 0 0 18px; color: #fff; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.footer ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); font-size: .77rem; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 60px; height: 60px; display: grid; place-items: center; border: 4px solid #fff; border-radius: 50%; color: #fff; background: #20c86f; box-shadow: 0 12px 30px rgba(0,0,0,.22); transition: transform .2s; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 29px; }

.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.js [data-reveal].visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-links { position: fixed; inset: 78px 0 auto; max-height: 0; display: grid; gap: 0; overflow: hidden; background: rgba(7,21,38,.99); transition: max-height .25s; }
  .nav-links li { border-top: 1px solid rgba(255,255,255,.09); }
  .nav-links > li > a { display: block; padding: 18px 24px; }
  .nav-links .nav-cta { margin: 14px 20px 22px; }
  .menu-open .nav-links { max-height: 470px; }
  .menu-toggle { display: block; }
  .menu-open .menu-toggle span { opacity: 0; }
  .menu-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: 690px; }
  .hero::before { background: linear-gradient(90deg, rgba(4,15,29,.97), rgba(4,15,29,.68)); }
  .hero-media { inset: 0; width: 100%; opacity: .65; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ev-grid, .video-wrap { grid-template-columns: 1fr; }
  .ev-media { min-height: 480px; border-radius: var(--radius) var(--radius) 0 0; }
  .ev-copy { border-radius: 0 0 var(--radius) var(--radius); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel .btn { justify-self: start; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card:nth-child(1), .project-card:nth-child(8) { grid-column: span 1; }
}

@media (max-width: 700px) {
  :root { --container: min(100% - 28px, 1180px); }
  .topbar .container span:last-child { display: none; }
  .section { padding: 76px 0; }
  .section-head { display: block; margin-bottom: 30px; }
  .section-head .btn { margin-top: 24px; }
  .nav { min-height: 70px; }
  .nav-links { inset-block-start: 70px; }
  .hero { min-height: 740px; }
  .hero::before { background: linear-gradient(0deg, rgba(4,15,29,.98) 8%, rgba(4,15,29,.72) 100%); }
  .hero-media { object-position: 64% center; }
  .hero-copy { align-self: end; padding: 115px 0 120px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero-text { margin: 22px 0 27px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: 12px; }
  .trust-strip { margin-top: -62px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 92px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2) { border-right: 0; }
  .services-grid, .reviews-grid, .contact-grid, .footer-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 230px; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:first-child { grid-column: 1 / -1; grid-row: span 2; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 190px; }
  .contact-grid { gap: 38px; }
  .page-hero { min-height: 520px; }
  .page-hero h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .project-card img { height: 430px; }
  .stat-row { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 56px; height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
