:root {
  --navy: #102a43;
  --navy-deep: #081d31;
  --blue: #1769aa;
  --sky: #dceff9;
  --green: #18a86b;
  --ink: #17324d;
  --muted: #60758a;
  --line: #dce5ec;
  --surface: #f5f9fc;
  --white: #fff;
  --shadow: 0 12px 30px rgb(16 42 67 / 8%);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font: 16px/1.6 "Manrope", sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 10; background: rgb(255 255 255 / 96%); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.header-content { min-height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 8px; color: var(--navy); font-size: 1.15rem; letter-spacing: .04em; }
.brand img { width: 52px; height: 62px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 800; color: var(--muted); }
.main-nav a { padding: 10px 12px; border-radius: 5px; transition: color .2s, background .2s; }
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a.active { color: var(--blue); background: var(--sky); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--navy); }

.hero { position: relative; min-height: 680px; display: flex; align-items: center; padding-top: 84px; color: var(--white); overflow: hidden; }
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 42%; }
.hero-overlay { background: linear-gradient(90deg, rgb(8 29 49 / 90%), rgb(8 29 49 / 58%), rgb(8 29 49 / 24%)); }
.hero-content { position: relative; padding: 84px 0; }
.hero-content h1 { max-width: 700px; margin: 18px 0; font-size: clamp(2.5rem, 6vw, 4.7rem); line-height: 1.08; letter-spacing: -.04em; }
.hero-text { max-width: 620px; margin: 0 0 34px; color: rgb(255 255 255 / 82%); font-size: 1.1rem; }
.eyebrow { margin: 0; color: var(--blue); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow.light { color: #9cdcf8; }
.button { display: inline-flex; align-items: center; gap: 10px; min-height: 48px; padding: 0 22px; border-radius: 6px; font-weight: 800; transition: transform .2s, filter .2s; }
.whatsapp-icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.whatsapp-icon path + path { fill: currentColor; stroke: none; }
.button:hover { transform: translateY(-2px); filter: brightness(1.05); }
.button-whatsapp { color: var(--white); background: var(--green); box-shadow: 0 8px 18px rgb(0 0 0 / 18%); }
.button-outline { color: var(--blue); border: 1px solid var(--blue); }

.section { padding: 92px 0; scroll-margin-top: 84px; }
.section-muted { background: var(--surface); }
.section-heading { max-width: 680px; }
.section-heading.centered { margin: 0 auto; text-align: center; }
h2 { margin: 10px 0 16px; color: var(--navy); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; letter-spacing: -.035em; }
.section-heading > p:last-child, .lead { max-width: 600px; color: var(--muted); }
.solutions-grid, .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.solution-card { padding: 26px; min-height: 215px; }
.card-icon, .service-icon { display: grid; place-items: center; width: 44px; height: 44px; color: var(--blue); background: var(--sky); border-radius: 6px; font-size: 1.45rem; font-weight: 800; }
.card-icon svg, .service-icon svg { display: block; width: 23px; height: 23px; fill: none !important; stroke: #1769aa !important; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card-icon svg *, .service-icon svg * { fill: none !important; stroke: #1769aa !important; }
.card h3, .service-card h3 { margin: 22px 0 8px; color: var(--navy); font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: .9rem; }
.two-columns, .about-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.media-frame { overflow: hidden; border-radius: var(--radius); box-shadow: 0 18px 40px rgb(16 42 67 / 18%); }
.media-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0; margin: 30px 0 0; list-style: none; font-size: .9rem; font-weight: 700; }
.check-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 25px; height: 25px; margin-right: 9px; color: var(--white); background: var(--blue); border-radius: 50%; font-size: .75rem; }
.services-grid { grid-template-columns: repeat(2, 1fr); }
.service-card { padding: 32px; }
.service-card p { line-height: 1.8; }
.about-section { color: var(--white); background: var(--navy); overflow: hidden; scroll-margin-top: 92px; }
.about-grid { gap: 0; }
.about-content { padding: 100px 0; padding-right: 72px; }
.about-content h2 { color: var(--white); }
.about-content > p:not(.eyebrow) { color: rgb(255 255 255 / 72%); line-height: 1.8; }
.about-grid > img { width: 100%; height: 100%; min-height: 430px; max-height: 560px; object-fit: cover; object-position: center; }
.values { display: flex; gap: 30px; margin-top: 28px; }
.values div { display: flex; flex-direction: column; gap: 5px; font-size: .85rem; font-weight: 700; }
.values strong { color: #9cdcf8; font-size: 1.4rem; }
.clients-section { background: var(--surface); }
.client-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 42px; }
.client-list span { padding: 24px 12px; border: 1px solid var(--line); color: var(--muted); background: var(--white); text-align: center; font-weight: 800; }
.client-list span.is-highlighted { color: var(--blue); border-color: var(--blue); box-shadow: 0 8px 20px rgb(23 105 170 / 12%); transform: translateY(-3px); transition: .25s ease; }
.contact-section { background: var(--white); }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-card { display: flex; flex-direction: column; min-height: 146px; padding: 22px; transition: border-color .2s, transform .2s; }
.contact-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.contact-card.wide { grid-column: 1 / -1; }
.contact-icon { color: var(--blue); font-size: 1.2rem; }
.contact-card small { margin-top: 14px; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-card strong { margin-top: 4px; font-size: .92rem; }
.contact-card span:last-child { color: var(--muted); font-size: .84rem; }
.site-footer { color: rgb(255 255 255 / 75%); background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; padding: 58px 0; }
.footer-logo { width: 58px; height: 58px; object-fit: contain; background: transparent; border-radius: 0; }
.footer-brand { display: flex; align-items: center; gap: 8px; color: var(--white); }
.site-footer p { max-width: 260px; font-size: .85rem; }
.site-footer h3 { margin: 0 0 15px; color: var(--white); font-size: .9rem; }
.social-title { margin-top: 28px !important; }
.site-footer div > a { display: block; margin: 7px 0; font-size: .85rem; }
.site-footer a:hover { color: var(--white); }
.social-links { display: flex; gap: 10px; }
.social-links a { display: grid !important; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid rgb(255 255 255 / 20%); border-radius: 5px; transition: color .2s, border-color .2s, background .2s; }
.social-links a:hover { color: var(--white); border-color: rgb(255 255 255 / 55%); background: rgb(255 255 255 / 10%); }
.social-links svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-links svg path { fill: currentColor; stroke: none; }
.social-links svg .icon-fill { fill: currentColor; stroke: none; }
.copyright { padding: 18px 20px; border-top: 1px solid rgb(255 255 255 / 10%); text-align: center; font-size: .72rem; }
.floating-whatsapp { position: fixed; right: 24px; bottom: 24px; z-index: 9; display: grid; place-items: center; width: 58px; height: 58px; color: var(--white); background: var(--green); border-radius: 50%; box-shadow: 0 8px 22px rgb(0 0 0 / 25%); font-size: 1.5rem; transition: transform .2s; }
.floating-whatsapp:hover { transform: scale(1.08); }
.legal-page { min-height: calc(100vh - 140px); padding: 160px 0 90px; }
.legal-content { max-width: 760px; }
.legal-content h1 { margin: 12px 0 24px; color: var(--navy); font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.1; }
.legal-content h2 { margin-top: 38px; font-size: 1.5rem; }
.legal-content p { max-width: 680px; color: var(--muted); line-height: 1.8; }
.legal-content a { color: var(--blue); font-weight: 700; }

@media (max-width: 800px) {
  .container { width: min(100% - 32px, 560px); }
  .header-content { min-height: 76px; }
  .brand img { width: 42px; height: 52px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; inset: 76px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 16px 14px; background: var(--white); border-top: 1px solid var(--line); box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 11px 4px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .hero { min-height: 650px; padding-top: 76px; }
  .hero-overlay { background: rgb(8 29 49 / 76%); }
  .hero-content { padding: 64px 0; }
  .hero-content h1 { font-size: 2.65rem; }
  .section { padding: 72px 0; }
  .solutions-grid, .services-grid, .two-columns, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .solutions-grid, .services-grid { margin-top: 32px; }
  .solution-card { min-height: 0; }
  .about-content { padding: 72px 0 0; }
  .about-grid > img { min-height: 320px; }
  .client-list { grid-template-columns: 1fr 1fr; }
  .contact-cards { gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; padding: 46px 0; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  .check-list, .contact-cards { grid-template-columns: 1fr; }
  .contact-card.wide { grid-column: auto; }
  .client-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .floating-whatsapp { right: 16px; bottom: 16px; }
}
