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

:root {
    --navy: #082b58;
    --navy-2: #0c3b72;
    --blue: #315aa5;
    --blue-soft: #edf4ff;
    --blue-pale: #f6f9fd;
    --accent: #8d8fb6;
    --ink: #10243d;
    --text: #526174;
    --muted: #778396;
    --line: #e3e9f1;
    --white: #ffffff;
    --success: #20b15a;
    --shadow-sm: 0 8px 24px rgba(8, 43, 88, 0.08);
    --shadow-md: 0 18px 50px rgba(8, 43, 88, 0.12);
    --radius: 18px;
    --radius-sm: 12px;
    --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.section-soft { background: var(--blue-pale); }
.section-blue { background: linear-gradient(135deg, #f4f8ff 0%, #eef5ff 100%); }
.section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-heading.align-left { max-width: 660px; margin: 0 0 36px; text-align: left; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--blue); }
h1, h2, h3, h4, h5, h6 { margin: 0 0 16px; color: var(--ink); line-height: 1.16; }
h1 { font-size: clamp(40px, 5.2vw, 68px); letter-spacing: -0.045em; }
h2 { font-size: clamp(32px, 3.6vw, 46px); letter-spacing: -0.035em; }
h3 { font-size: clamp(23px, 2.3vw, 30px); letter-spacing: -0.025em; }
h4 { font-size: 20px; }
p { margin: 0 0 20px; }
.lead { font-size: 18px; line-height: 1.75; }
.text-small { font-size: 14px; }
.text-muted { color: var(--muted); }

/* Utility bar and header */
.utility-bar { background: #f7f9fc; border-bottom: 1px solid var(--line); color: #3d4e62; font-size: 12px; }
.utility-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-links { display: flex; align-items: center; gap: 22px; }
.utility-links a, .utility-hours { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.utility-links a:hover { color: var(--blue); }
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(227,233,241,.9);
    backdrop-filter: blur(14px);
}
.nav-inner { min-height: 78px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; min-width: 265px; }
.brand-mark { width: 52px; height: 52px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.02; }
.brand-copy strong { color: var(--ink); font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
.brand-copy strong span { color: var(--blue); }
.brand-copy small { margin-top: 5px; color: #5d6776; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 33px; margin: 0; padding: 0; list-style: none; }
.nav-link { position: relative; display: block; padding: 28px 0; color: #17263a; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--blue); transition: right .25s ease; }
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 15px;
    border: 1px solid #dce6ef;
    border-radius: 10px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    transition: .2s ease;
}
.whatsapp-link i { color: var(--success); font-size: 19px; }
.whatsapp-link:hover { border-color: #b7d9c4; background: #f2fbf5; transform: translateY(-1px); }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    transition: .22s ease;
}
.btn-primary { color: var(--white); background: var(--navy); box-shadow: 0 10px 24px rgba(8,43,88,.16); }
.btn-primary:hover { color: var(--white); background: var(--blue); transform: translateY(-2px); }
.btn-outline { color: var(--navy); background: rgba(255,255,255,.82); border-color: #9caec2; }
.btn-outline:hover { color: var(--white); background: var(--navy); border-color: var(--navy); transform: translateY(-2px); }
.btn-whatsapp { color: var(--white); background: #1fa855; }
.btn-whatsapp:hover { color: var(--white); background: #178d47; transform: translateY(-2px); }
.menu-toggle, .mobile-whatsapp { display: none; }

/* Hero */
.hero-home {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('../images/hero-home.jpg');
    background-position: center center;
    background-size: cover;
}
.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 36%, rgba(255,255,255,.72) 54%, rgba(255,255,255,.08) 76%);
}
.hero-home::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 42%;
    opacity: .32;
    background-image: linear-gradient(135deg, transparent 74%, rgba(49,90,165,.08) 74%), radial-gradient(circle at 10% 35%, rgba(49,90,165,.18) 0 1px, transparent 2px);
    background-size: 70px 70px, 32px 32px;
    pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-copy { max-width: 620px; padding: 80px 0; }
.hero-copy h1 { max-width: 600px; }
.hero-copy p { max-width: 560px; color: #34475d; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-note { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; color: var(--muted); font-size: 13px; }
.hero-note i { color: var(--blue); }

/* Inner page hero */
.inner-hero {
    position: relative;
    min-height: 410px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.inner-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,43,88,.94) 0%, rgba(8,43,88,.80) 42%, rgba(8,43,88,.28) 70%, rgba(8,43,88,.10) 100%); }
.inner-hero .container { position: relative; z-index: 2; }
.inner-hero-copy { max-width: 690px; padding: 78px 0; color: var(--white); }
.inner-hero h1, .inner-hero h2 { color: var(--white); }
.inner-hero p { max-width: 620px; color: rgba(255,255,255,.82); font-size: 18px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; color: rgba(255,255,255,.78); font-size: 13px; }
.breadcrumb a:hover { color: var(--white); }

/* Category and trust strips */
.category-strip { position: relative; z-index: 4; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 10px 30px rgba(8,43,88,.04); }
.category-grid { display: grid; grid-template-columns: repeat(8, 1fr); }
.category-item { min-height: 98px; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 18px 12px; border-right: 1px solid var(--line); color: var(--ink); }
.category-item:first-child { border-left: 1px solid var(--line); }
.category-item i { flex: 0 0 auto; color: var(--navy); font-size: 27px; }
.category-item span { font-size: 12px; font-weight: 700; line-height: 1.35; }
.category-item:hover { background: var(--blue-pale); color: var(--blue); }
.trust-strip { background: #f4f7fb; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item { min-height: 92px; display: flex; align-items: center; gap: 13px; padding: 19px 24px; border-right: 1px solid #dbe3ed; }
.trust-item:last-child { border-right: 0; }
.trust-icon { flex: 0 0 44px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: var(--blue); box-shadow: var(--shadow-sm); font-size: 20px; }
.trust-item strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 13px; }
.trust-item span { display: inline-flex; color: var(--muted); font-size: 11px; line-height: 1.4;     justify-content: center;}
.trust-icon i {
    font-size: 24px; /* Change to your desired size */
}
/* Shared layout */
.split-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 76px; align-items: center; }
.split-grid.reverse .split-media { order: 2; }
.split-grid.reverse .split-copy { order: 1; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 1.25/1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split-media::after { content: ""; position: absolute; right: -22px; bottom: -22px; width: 126px; height: 126px; z-index: -1; background-image: radial-gradient(circle, rgba(49,90,165,.42) 2px, transparent 2.6px); background-size: 15px 15px; }
.check-list { display: grid; gap: 12px; margin: 26px 0 30px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; color: #34475d; }
.check-list i { margin-top: 4px; color: var(--blue); }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 32px; }
.stat-card { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.stat-card strong { display: block; color: var(--navy); font-size: 24px; }
.stat-card span { color: var(--muted); font-size: 12px; }

/* Cards */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 36px rgba(8,43,88,.07); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.product-card-media { position: relative; overflow: hidden; aspect-ratio: 800/660; background: #eef3f9; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-card-media img { transform: scale(1.045); }
.product-card-badge { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border-radius: 999px; background: rgba(8,43,88,.88); color: white; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.product-card-body { padding: 25px 25px 27px; }
.product-card h3 { margin-bottom: 10px; font-size: 21px; }
.product-card p { min-height: 76px; margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 13px; font-weight: 800; }
.text-link i { transition: transform .2s ease; }
.text-link:hover i { transform: translateX(4px); }

.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value-card { padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.value-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 21px; border-radius: 14px; background: var(--blue-soft); color: var(--blue); font-size: 24px; }
.value-card h3 { font-size: 20px; }
.value-card p { margin: 0; color: var(--muted); font-size: 14px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: process; }
.process-card { position: relative; padding: 30px 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.process-card::before { counter-increment: process; content: "0" counter(process); display: block; margin-bottom: 22px; color: rgba(49,90,165,.23); font-size: 44px; font-weight: 800; line-height: 1; }
.process-card:not(:last-child)::after { content: ""; position: absolute; top: 54px; right: -24px; width: 26px; height: 1px; background: #cbd7e6; }
.process-card h3 { font-size: 18px; }
.process-card p { margin: 0; color: var(--muted); font-size: 13px; }

/* About page */
.mission-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.mission-card { padding: 34px; border-radius: var(--radius); color: var(--white); background: linear-gradient(135deg, var(--navy), var(--navy-2)); box-shadow: var(--shadow-md); }
.mission-card:nth-child(2) { background: linear-gradient(135deg, #315aa5, #7c78a8); }
.mission-card h3, .mission-card p { color: var(--white); }
.mission-card p { margin: 0; opacity: .84; }
.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.audience-item { display: flex; align-items: center; gap: 12px; padding: 19px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink); font-size: 14px; font-weight: 700; }
.audience-item i { color: var(--blue); font-size: 19px; }

/* Services support */
.service-support-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 17px; }
.support-card { padding: 26px 21px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); text-align: center; }
.support-card i { width: 52px; height: 52px; display: inline-grid; place-items: center; margin-bottom: 17px; border-radius: 50%; color: var(--white); background: var(--navy); font-size: 21px; }
.support-card h3 { font-size: 17px; }
.support-card p { margin: 0; color: var(--muted); font-size: 12px; }
.requirement-box { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: var(--radius); background: var(--navy); box-shadow: var(--shadow-md); }
.requirement-copy { padding: 52px; color: var(--white); }
.requirement-copy h2, .requirement-copy h3 { color: var(--white); }
.requirement-copy p { color: rgba(255,255,255,.76); }
.requirement-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 25px 0 0; padding: 0; list-style: none; }
.requirement-list li { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; }
.requirement-list i { margin-top: 4px; color: #8fd5ff; }
.requirement-media { min-height: 420px; background: url('../images/cta-tech.jpg') center/cover no-repeat; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 48px; align-items: start; }
.contact-panel { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.contact-panel + .contact-panel { margin-top: 20px; }
.contact-method { display: flex; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-method:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-method:first-of-type { padding-top: 6px; }
.contact-method-icon { flex: 0 0 44px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--blue-soft); color: var(--blue); font-size: 19px; }
.contact-method strong { display: block; color: var(--ink); font-size: 13px; }
.contact-method a, .contact-method span { color: var(--muted); font-size: 14px; word-break: break-word; }
.contact-form { padding: 38px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { color: var(--ink); font-size: 12px; font-weight: 700; }
.form-control { width: 100%; height: 50px; padding: 0 15px; border: 1px solid #d7e0eb; border-radius: 9px; color: var(--ink); background: #fbfcfe; outline: none; transition: .2s ease; }
textarea.form-control { height: auto; min-height: 130px; padding-top: 13px; resize: vertical; }
.form-control:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 4px rgba(49,90,165,.10); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 22px; }
.form-note { margin: 0; color: var(--muted); font-size: 11px; }
.form-message { display: none; margin-top: 16px; padding: 12px 14px; border-radius: 9px; font-size: 13px; }
.form-message.show { display: block; }
.form-message.error { color: #942a2a; background: #fff0f0; }
.form-message.success { color: #176c3a; background: #eefaf3; }
.map-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.map-card iframe { display: block; width: 100%; height: 460px; border: 0; }

/* CTA */
.cta-section { position: relative; overflow: hidden; background: var(--navy); }
.cta-section::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(95,151,235,.25), transparent 32%), linear-gradient(120deg, transparent 0 55%, rgba(255,255,255,.04) 55%); }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 60px 0; }
.cta-copy { max-width: 720px; }
.cta-copy h2 { color: var(--white); }
.cta-copy p { margin: 0; color: rgba(255,255,255,.72); }
.cta-actions { display: flex; gap: 12px; flex: 0 0 auto; }
.cta-actions .btn-outline { color: white; border-color: rgba(255,255,255,.38); background: transparent; }
.cta-actions .btn-outline:hover { color: var(--navy); background: white; }

/* Footer */
.site-footer { color: rgba(255,255,255,.67); background: #071f3e; }
.footer-main { display: grid; grid-template-columns: 1.4fr .75fr .9fr 1.15fr; gap: 54px; padding: 72px 0 55px; }
.footer-brand .brand-copy strong { color: white; }
.footer-brand .brand-copy small { color: rgba(255,255,255,.55); }
.footer-brand p { max-width: 360px; margin-top: 20px; font-size: 13px; }
.footer-title { margin-bottom: 18px; color: var(--white); font-size: 13px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-links a { font-size: 13px; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: grid; gap: 13px; font-size: 13px; }
.footer-contact a, .footer-contact div { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact i { margin-top: 5px; color: #8fb8ee; }
.footer-whatsapp { width: 100%; margin-top: 22px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.11); }
.footer-bottom-inner { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 25px; font-size: 11px; }
.footer-bottom-links { display: flex; gap: 18px; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 999; display: inline-flex; align-items: center; gap: 10px; min-height: 52px; padding: 0 17px; border-radius: 999px; color: white; background: #1fa855; box-shadow: 0 13px 30px rgba(11,104,55,.28); font-size: 13px; font-weight: 800; transition: .22s ease; }
.floating-whatsapp i { font-size: 22px; }
.floating-whatsapp:hover { color: white; transform: translateY(-3px); }

/* Responsive */
@media (max-width: 1180px) {
    .brand { min-width: 230px; }
    .brand-copy strong { font-size: 19px; }
    .nav-list { gap: 22px; }
    .whatsapp-link span { display: none; }
    .whatsapp-link { width: 44px; padding: 0; }
    .category-grid { grid-template-columns: repeat(4,1fr); }
    .category-item:nth-child(4) { border-right: 0; }
    .category-item:nth-child(n+5) { border-top: 1px solid var(--line); }
    .service-support-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 991px) {
    .utility-bar { display: none; }
    .container { width: min(calc(100% - 32px), var(--container)); }
    .nav-inner { min-height: 70px; gap: 14px; }
    .brand { min-width: auto; margin-right: auto; }
    .brand-mark { width: 45px; height: 45px; }
    .brand-copy strong { font-size: 17px; }
    .brand-copy small { font-size: 7px; }
    .site-nav { position: fixed; top: 70px; left: 0; right: 0; bottom: 0; z-index: 1002; margin: 0; padding: 22px 20px 35px; background: white; transform: translateX(100%); visibility: hidden; transition: .28s ease; overflow-y: auto; }
    .site-nav.open { transform: translateX(0); visibility: visible; }
    .nav-list { align-items: stretch; flex-direction: column; gap: 0; }
    .nav-link { padding: 17px 4px; border-bottom: 1px solid var(--line); font-size: 14px; }
    .nav-link::after { display: none; }
    .header-actions .whatsapp-link, .header-actions .btn { display: none; }
    .mobile-whatsapp { display: inline-flex; align-items: center; justify-content: center; width: 43px; height: 43px; margin-left: auto; border: 1px solid #cce4d5; border-radius: 50%; color: #1fa855; background: #f3fbf6; font-size: 21px; }
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 43px; height: 43px; border: 0; border-radius: 50%; color: var(--navy); background: #f2f5f9; }
    .menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 19px; height: 2px; background: currentColor; transition: .25s ease; }
    .menu-toggle { flex-direction: column; gap: 4px; }
    .menu-toggle.active span { opacity: 0; }
    .menu-toggle.active::before { transform: translateY(6px) rotate(45deg); }
    .menu-toggle.active::after { transform: translateY(-6px) rotate(-45deg); }
    .hero-home { min-height: 590px; background-position: 64% center; }
    .hero-home::before { background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.90) 58%, rgba(255,255,255,.42)); }
    .hero-copy { max-width: 580px; }
    .category-grid { overflow-x: auto; display: flex; scrollbar-width: none; }
    .category-grid::-webkit-scrollbar { display: none; }
    .category-item { flex: 0 0 190px; border-top: 0 !important; border-right: 1px solid var(--line) !important; }
    .trust-grid { grid-template-columns: repeat(2,1fr); }
    .trust-item { border-bottom: 1px solid #dbe3ed; }
    .trust-item:nth-child(2n) { border-right: 0; }
    .trust-item:last-child { grid-column: 1 / -1; justify-content: center; }
    .split-grid { grid-template-columns: 1fr; gap: 46px; }
    .split-grid.reverse .split-media, .split-grid.reverse .split-copy { order: initial; }
    .product-grid { grid-template-columns: repeat(2,1fr); }
    .value-grid { grid-template-columns: repeat(2,1fr); }
    .process-grid { grid-template-columns: repeat(2,1fr); }
    .process-card::after { display: none; }
    .audience-grid { grid-template-columns: repeat(2,1fr); }
    .service-support-grid { grid-template-columns: repeat(2,1fr); }
    .requirement-box { grid-template-columns: 1fr; }
    .requirement-media { min-height: 330px; }
    .contact-grid { grid-template-columns: 1fr; }
    .cta-inner { align-items: flex-start; flex-direction: column; }
    .footer-main { grid-template-columns: repeat(2,1fr); gap: 42px; }
}

@media (max-width: 680px) {
    .container { width: min(calc(100% - 24px), var(--container)); }
    .section { padding: 68px 0; }
    .section-sm { padding: 50px 0; }
    .brand-copy strong { font-size: 15px; }
    .brand-copy small { display: none; }
    .brand-mark { width: 40px; height: 40px; }
    .hero-home { min-height: 650px; align-items: flex-end; background-position: 69% center; }
    .hero-home::before { background: linear-gradient(180deg, rgba(255,255,255,.48) 0%, rgba(255,255,255,.87) 40%, rgba(255,255,255,.99) 70%); }
    .hero-home::after { display: none; }
    .hero-copy { padding: 250px 0 58px; }
    .hero-copy p, .inner-hero p, .lead { font-size: 16px; }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; }
    .inner-hero { min-height: 410px; background-position: 65% center; }
    .inner-hero::before { background: linear-gradient(90deg, rgba(8,43,88,.95), rgba(8,43,88,.75)); }
    .inner-hero-copy { padding: 70px 0; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item, .trust-item:nth-child(2n), .trust-item:last-child { grid-column: auto; border-right: 0; justify-content: flex-start; }
    .stat-row { grid-template-columns: 1fr; }
    .product-grid, .value-grid, .mission-grid, .process-grid, .audience-grid, .service-support-grid { grid-template-columns: 1fr; }
    .product-card p { min-height: 0; }
    .requirement-copy { padding: 34px 25px; }
    .requirement-list { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: auto; }
    .contact-form, .contact-panel { padding: 26px 21px; }
    .form-actions { align-items: stretch; flex-direction: column; }
    .form-actions .btn { width: 100%; }
    .map-card iframe { height: 360px; }
    .cta-actions { width: 100%; flex-direction: column; }
    .cta-actions .btn { width: 100%; }
    .footer-main { grid-template-columns: 1fr; gap: 34px; padding: 56px 0 40px; }
    .footer-bottom-inner { align-items: flex-start; flex-direction: column; padding: 20px 0; }
    .footer-bottom-links { flex-wrap: wrap; }
    .footer-whatsapp { min-height: 52px; }
    .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; height: 54px; min-height: 54px; padding: 0; justify-content: center; }
    .floating-whatsapp span { display: none; }
    .floating-whatsapp i { font-size: 25px; }
}
