:root {
    --navy-950: #031d32;
    --navy-900: #062a47;
    --navy-800: #0b3d66;
    --blue-700: #0f5f93;
    --blue-600: #1678ad;
    --blue-100: #dceff8;
    --green-700: #2d812d;
    --green-600: #4ca33d;
    --green-100: #eaf6df;
    --bayani-primary: #1678ad;
    --bayani-primary-rgb: 22, 120, 173;
    --bayani-secondary: #031d32;
    --bayani-secondary-rgb: 3, 29, 50;
    --ink: #082943;
    --muted: #5d7d92;
    --line: #d9e8ef;
    --surface: #f6fbfe;
    --white: #fff;
    --shadow: 0 22px 50px rgba(7, 54, 87, .12);
    --radius: 28px;
    --font: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body.bayani-page {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

.bayani-page img { max-width: 100%; }
.bayani-page a { color: inherit; text-decoration: none; }
.bayani-page button, .bayani-page summary { font: inherit; }
.bayani-page p, .bayani-page h1, .bayani-page h2, .bayani-page h3 { margin-top: 0; }

.bayani-container {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--white);
    color: var(--navy-900);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header,
.site-header.active {
    position: sticky;
    z-index: 1000;
    top: 0;
    isolation: isolate;
    background: var(--white);
    border-bottom: 1px solid rgba(217, 232, 239, .8);
    box-shadow: 0 4px 22px rgba(6, 42, 71, .035);
    backdrop-filter: blur(18px);
    animation: none;
}

.site-header.active { box-shadow: 0 8px 28px rgba(6, 42, 71, .1); }
.site-header::after,
.site-header.active::after { display: none; content: none; pointer-events: none; }
.site-header .header-inner { position: relative; z-index: 1; }

.bayani-page #main-content header,
.bayani-page #main-content header.active {
    position: relative;
    z-index: 1;
    top: auto;
    animation: none;
    transform: none;
}
.bayani-page #main-content header::after,
.bayani-page #main-content header.active::after { display: none; content: none; pointer-events: none; }

.bayani-page #main-content section[id] { scroll-margin-top: 105px; }

.header-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-900);
    flex: 0 0 auto;
}

.brand-mark {
    position: relative;
    display: block;
    width: 34px;
    height: 48px;
    overflow: hidden;
}

.brand-mark img {
    position: absolute;
    width: 82px;
    max-width: none;
    left: 50%;
    top: -4px;
    transform: translateX(-50%);
}

.brand-name {
    font-size: 23px;
    font-weight: 900;
    letter-spacing: .04em;
}

.primary-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 2.6vw, 38px);
}

.primary-navigation a,
.header-link {
    color: var(--navy-800);
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    transition: color .2s ease, transform .2s ease;
}

.primary-navigation a:hover,
.header-link:hover { color: var(--green-700); }

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.header-dropdown { position: relative; }
.header-dropdown > summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
}
.header-dropdown > summary::-webkit-details-marker { display: none; }

.language-dropdown > summary {
    min-width: 50px;
    padding: 8px 11px;
    color: var(--navy-800);
    border: 1px solid var(--line);
    border-radius: 999px;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
}

.dropdown-panel {
    position: absolute;
    z-index: 20;
    top: calc(100% + 12px);
    left: 0;
    min-width: 178px;
    overflow: hidden;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.dropdown-panel-right { left: auto; right: 0; min-width: 245px; }
.dropdown-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--navy-800);
    font-size: 14px;
    font-weight: 700;
}
.dropdown-panel a:hover, .dropdown-panel a.active { background: var(--surface); color: var(--green-700); }
.dropdown-panel a span { color: var(--muted); font-size: 12px; font-weight: 500; }

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 13px 28px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary {
    color: var(--white) !important;
    background: linear-gradient(100deg, var(--navy-800), var(--blue-600));
    box-shadow: 0 13px 24px rgba(12, 85, 132, .24);
}
.button-primary:hover { box-shadow: 0 17px 30px rgba(12, 85, 132, .3); }
.button-secondary {
    color: var(--navy-900);
    border-color: #a9d3e7;
    background: rgba(255,255,255,.78);
}
.button-secondary:hover { background: var(--white); box-shadow: 0 12px 28px rgba(11,61,102,.09); }
.button-small { min-height: 44px; padding: 10px 22px; font-size: 14px; }

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    background: var(--white);
}
.menu-toggle span:not(.sr-only) { display: block; width: 19px; height: 2px; background: currentColor; border-radius: 4px; }

.hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background:
        linear-gradient(105deg, rgba(231,246,252,.84), rgba(255,255,255,.93) 45%, rgba(233,248,221,.7));
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255,255,255,.9), transparent);
    pointer-events: none;
}

.hero-orb, .cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
}
.hero-orb-one { width: 400px; height: 400px; top: -220px; left: -130px; background: rgba(91,178,221,.13); }
.hero-orb-two { width: 360px; height: 360px; right: -110px; bottom: -180px; background: rgba(116,194,72,.14); }

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
    min-height: 650px;
    padding-block: 66px 84px;
}

.eyebrow {
    margin-bottom: 13px;
    color: var(--green-700);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .15em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 690px;
    margin-bottom: 22px;
    color: var(--navy-950);
    font-size: clamp(43px, 5vw, 68px);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.02;
}
.hero h1 span {
    display: block;
    color: var(--blue-600);
    background: linear-gradient(100deg, var(--blue-600) 12%, var(--green-600) 76%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 660px;
    margin-bottom: 30px;
    color: #3e6680;
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.65;
}

.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-proof {
    display: flex;
    gap: 0;
    margin-top: 36px;
}
.hero-proof > div {
    display: flex;
    min-width: 190px;
    flex-direction: column;
    padding-inline: 26px;
    border-left: 1px solid #cfe2eb;
}
.hero-proof > div:first-child { padding-left: 0; border-left: 0; }
.hero-proof strong { color: var(--navy-950); font-size: 22px; font-weight: 900; line-height: 1.2; }
.hero-proof span { color: var(--muted); font-size: 14px; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.visual-card {
    position: relative;
    width: min(100%, 500px);
    aspect-ratio: 1 / 1.04;
    overflow: visible;
    border: 14px solid rgba(255,255,255,.88);
    border-radius: 50px 50px 76px 50px;
    background: #def2fa;
    box-shadow: 0 35px 52px rgba(7,54,87,.2), inset 0 0 0 1px rgba(31,112,157,.08);
    transform: rotate(1.5deg);
}
.visual-card::before {
    content: "";
    position: absolute;
    inset: -30px 34px 28px -32px;
    z-index: -1;
    border-radius: 55px;
    background: rgba(151,213,111,.15);
    transform: rotate(-5deg);
}
.visual-sun { position: absolute; z-index: 2; top: 52px; right: 46px; width: 68px; height: 68px; border-radius: 50%; background: #ffdc7d; }
.visual-scene { display: block; width: 100%; height: 100%; border-radius: 38px 38px 62px 38px; }
.visual-logo {
    position: absolute;
    top: 25px;
    left: 24px;
    z-index: 3;
    width: 94px;
    height: 94px;
    object-fit: contain;
    filter: drop-shadow(0 6px 6px rgba(5,42,70,.08));
}
.product-chip {
    position: absolute;
    z-index: 4;
    left: -52px;
    bottom: -23px;
    display: flex;
    min-width: 205px;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border: 1px solid rgba(211,232,240,.9);
    border-radius: 19px;
    background: var(--white);
    box-shadow: 0 15px 29px rgba(8,47,77,.16);
    transform: rotate(-1.5deg);
}
.product-chip-icon { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 13px; background: var(--green-100); font-size: 24px; }
.product-chip strong, .product-chip small { display: block; line-height: 1.25; }
.product-chip strong { font-size: 14px; }
.product-chip small { color: var(--green-700); font-size: 13px; font-weight: 900; }

.metrics { position: relative; z-index: 3; background: var(--bayani-primary); color: var(--white); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric { position: relative; display: flex; min-height: 122px; align-items: center; justify-content: center; flex-direction: column; padding: 24px; text-align: center; }
.metric:not(:last-child)::after { content: ""; position: absolute; right: 0; height: 38px; width: 1px; background: rgba(255,255,255,.14); }
.metric strong { font-size: 28px; font-weight: 900; line-height: 1.2; }
.metric span { margin-top: 4px; color: #b9d6e7; font-size: 14px; }

.section { position: relative; padding-block: 105px; }
.section-heading { margin-bottom: 52px; }
.section-heading.centered { max-width: 850px; margin-inline: auto; text-align: center; }
.section-heading h2, .section-cta h2 {
    margin-bottom: 14px;
    color: var(--navy-950);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.13;
}
.section-heading > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 18px; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
    width: auto;
    min-height: 260px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.9);
    box-shadow: 0 17px 42px rgba(7,54,87,.055);
    transition: transform .25s ease, box-shadow .25s ease;
}
.benefit-grid > .feature-card { width: auto; transform: none; background: rgba(255,255,255,.9); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.benefit-grid > .feature-card:hover { transform: translateY(-6px); }
.feature-icon, .step-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 19px;
    background: var(--green-100);
    font-size: 30px;
}
.feature-card:nth-child(2) .feature-icon { background: var(--blue-100); }
.feature-card h3, .step-card h3, .product-card h3 { margin-bottom: 10px; color: var(--navy-950); font-size: 20px; font-weight: 900; }
.feature-card p, .step-card p { margin-bottom: 0; color: var(--muted); }

.section-steps {
    overflow: hidden;
    background:
        radial-gradient(circle at 0 100%, rgba(142,211,94,.22), transparent 28%),
        var(--surface);
}
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
    position: relative;
    min-height: 292px;
    padding: 31px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--white);
}
.step-card:not(:last-child)::after {
    content: "→";
    position: absolute;
    z-index: 3;
    top: 48%;
    right: -20px;
    width: 38px;
    color: #9bcae2;
    font-size: 33px;
    font-weight: 900;
    text-align: center;
}
.step-number { position: absolute; top: 22px; right: 25px; color: #d8ecf5; font-size: 29px; font-weight: 900; }
.step-icon { background: var(--bayani-primary); font-size: 27px; }

.split-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { max-width: 560px; justify-self: end; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
    display: flex;
    min-height: 150px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 24px;
    transition: transform .22s ease, box-shadow .22s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(7,54,87,.09); }
.product-card span { margin-bottom: 8px; font-size: 39px; line-height: 1; }
.product-card h3 { margin-bottom: 0; }
.product-card-green { background: #f0f9e9; }
.product-card-peach { background: #fff5eb; }
.product-card-yellow { background: #fffbea; }
.product-card-blue { background: #eaf6fb; }
.product-card-rose { background: #fff0f0; }
.product-card-pink { background: #fff1f4; }
.section-action { margin-top: 35px; text-align: center; }
.text-link { color: var(--blue-700) !important; font-weight: 900; }
.text-link span { display: inline-block; margin-left: 8px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.section-mission {
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 35%, rgba(var(--bayani-secondary-rgb), .24), transparent 31%),
        radial-gradient(circle at 12% 100%, rgba(var(--bayani-primary-rgb), .25), transparent 30%),
        var(--bayani-primary);
}
.mission-glow { position: absolute; width: 460px; height: 460px; right: -180px; top: -160px; border: 1px solid rgba(132,205,91,.12); border-radius: 50%; }
.mission-inner { position: relative; z-index: 2; max-width: 990px; text-align: center; }
.mission-badge { display: inline-flex; margin-bottom: 25px; padding: 8px 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: #96d66d; background: rgba(255,255,255,.07); font-weight: 900; }
.section-mission h2 { max-width: 890px; margin: 0 auto 25px; color: var(--white); font-size: clamp(39px, 5vw, 59px); font-weight: 900; letter-spacing: -.035em; line-height: 1.12; }
.mission-copy { max-width: 930px; margin: 0 auto; color: #c6d9e5; font-size: 18px; line-height: 1.75; }
.mission-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.mission-values div { padding: 24px; border: 1px solid rgba(255,255,255,.11); border-radius: 20px; background: rgba(255,255,255,.045); }
.mission-values strong, .mission-values span { display: block; }
.mission-values strong { color: #a5dd7a; font-size: 25px; font-weight: 900; }
.mission-values span { color: #b9cfdb; font-size: 14px; }

.section-cta { overflow: hidden; background: linear-gradient(112deg, #f5fbea, #fff 46%, #edf8fd); }
.cta-orb-one { width: 320px; height: 320px; left: -150px; top: -100px; background: rgba(114,192,66,.15); }
.cta-orb-two { width: 330px; height: 330px; right: -170px; bottom: -120px; background: rgba(41,139,191,.13); }
.cta-inner { position: relative; z-index: 2; max-width: 900px; text-align: center; }
.cta-inner > img { width: 82px; height: 82px; margin-bottom: 14px; object-fit: contain; }
.cta-inner > p { max-width: 760px; margin: 0 auto 32px; color: var(--muted); font-size: 18px; }
.cta-actions { justify-content: center; }

.site-footer { padding-top: 68px; color: #a9c3d3; background: var(--bayani-primary); }
.footer-newsletter {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 55px;
    align-items: center;
    margin-bottom: 62px;
    padding: 38px 42px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 28px;
    background: linear-gradient(110deg, rgba(17,91,139,.32), rgba(54,128,57,.18));
}
.footer-kicker { display: block; margin-bottom: 7px; color: #97d66d; font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.site-footer .footer-newsletter h2 { margin: 0 0 6px; font-size: 25px; }
.footer-newsletter p { margin: 0; color: #b9cfdb; }
.newsletter-form { display: flex; padding: 5px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.08); }
.newsletter-form input {
    width: 100%;
    min-width: 0;
    padding: 10px 17px;
    border: 0;
    outline: 0;
    color: var(--white);
    background: transparent;
    font: inherit;
}
.newsletter-form input::placeholder { color: #aac2d1; }
.newsletter-form button {
    flex: 0 0 auto;
    padding: 11px 20px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(100deg, var(--green-700), var(--blue-600));
    font-weight: 900;
    cursor: pointer;
}
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.2fr 1.2fr; gap: 55px; padding-bottom: 50px; }
.site-footer .brand { margin-bottom: 15px; color: var(--white); }
.site-footer .brand-mark img { filter: none; }
.footer-brand p { max-width: 370px; }
.site-footer h2 { margin: 7px 0 16px; color: var(--white); font-size: 16px; font-weight: 900; }
.site-footer a:not(.brand) { display: block; width: fit-content; margin-block: 8px; transition: color .2s ease; }
.site-footer a:not(.brand):hover { color: #a7dc7f; }
.site-footer address { max-width: 270px; margin: 0 0 12px; color: #a9c3d3; font-style: normal; line-height: 1.55; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.site-footer .footer-socials a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    margin: 0;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.footer-socials img { width: 17px; height: 17px; object-fit: contain; }
.footer-apps { margin-top: 24px; }
.footer-apps > span { display: block; margin-bottom: 9px; color: var(--white); font-size: 13px; font-weight: 800; }
.footer-apps > div { display: flex; flex-wrap: wrap; gap: 8px; }
.site-footer .footer-apps a { margin: 0; }
.footer-apps img { width: auto; height: 39px; }
.site-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin: 0 auto;
    padding-block: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #a9c3d3;
    font-size: 13px;
}

.back-to-top {
    position: fixed;
    z-index: 90;
    right: clamp(18px, 2.4vw, 36px);
    bottom: max(22px, env(safe-area-inset-bottom));
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(145deg, var(--blue-700), var(--green-700));
    box-shadow: 0 12px 30px rgba(7, 68, 108, .28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    cursor: pointer;
    transform: translateY(14px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease, box-shadow .2s ease;
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover { box-shadow: 0 15px 34px rgba(7, 68, 108, .38); transform: translateY(-3px); }
.back-to-top:focus-visible { outline: 3px solid rgba(var(--bayani-primary-rgb), .3); outline-offset: 4px; }
.back-to-top svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 1260px) {
    .header-inner { gap: 18px; }
    .primary-navigation { gap: 17px; }
    .primary-navigation a, .header-link { font-size: 13px; }
    .header-actions { gap: 8px; }
    .button-small { padding-inline: 17px; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero h1 { font-size: clamp(42px, 5vw, 58px); }
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 1180px) {
    .header-inner { grid-template-columns: auto 1fr auto; min-height: 74px; }
    .menu-toggle { display: flex; grid-column: 3; }
    .primary-navigation, .header-actions {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        padding: 8px 0 19px;
    }
    .primary-navigation.is-open, .header-actions.is-open { display: flex; }
    .primary-navigation { gap: 0; }
    .primary-navigation a { padding: 9px 0; font-size: 15px; }
    .header-actions { gap: 10px; padding-top: 0; }
    .header-actions > * { width: 100%; }
    .header-actions .header-link, .header-actions summary { display: flex; width: 100%; justify-content: center; }
    .dropdown-panel, .dropdown-panel-right { position: static; width: 100%; margin-top: 8px; box-shadow: none; }
    .hero-grid { grid-template-columns: 1fr; padding-block: 65px 95px; }
    .hero-copy { max-width: 730px; text-align: center; margin-inline: auto; }
    .hero-description { margin-inline: auto; }
    .hero-actions, .hero-proof { justify-content: center; }
    .hero-visual { width: min(610px, 88%); margin: 8px auto 0; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .metric:nth-child(2)::after { display: none; }
    .metric:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
    .benefit-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: auto; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step-card:nth-child(2)::after { display: none; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-values { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .bayani-container { width: min(calc(100% - 30px), 1280px); }
    .brand-name { font-size: 20px; }
    .brand-mark { width: 30px; height: 43px; }
    .brand-mark img { width: 73px; }
    .hero-grid { min-height: auto; padding-top: 50px; }
    .hero h1 { font-size: clamp(39px, 12vw, 51px); }
    .hero-description { font-size: 17px; }
    .hero-actions .button { width: 100%; }
    .hero-proof { margin-top: 30px; }
    .hero-proof > div { min-width: 0; flex: 1; padding-inline: 16px; }
    .hero-proof strong { font-size: 18px; }
    .hero-proof span { font-size: 12px; }
    .visual-card { border-width: 9px; border-radius: 34px; }
    .visual-sun { width: 48px; height: 48px; top: 33px; right: 31px; }
    .visual-logo { width: 67px; height: 67px; top: 16px; left: 15px; }
    .product-chip { left: 50%; bottom: -32px; min-width: 190px; transform: translateX(-50%) rotate(-1.5deg); }
    .metrics-grid { width: 100%; }
    .metric { min-height: 105px; padding: 18px 9px; }
    .metric strong { font-size: 23px; }
    .metric span { font-size: 12px; }
    .section { padding-block: 75px; }
    .section-heading { margin-bottom: 37px; }
    .section-heading h2, .section-cta h2 { font-size: 34px; }
    .section-heading > p:last-child, .cta-inner > p, .mission-copy { font-size: 16px; }
    .feature-card { padding: 27px; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card { min-height: auto; }
    .step-card:not(:last-child)::after { content: "↓"; top: auto; right: 50%; bottom: -24px; transform: translateX(50%); }
    .split-heading { grid-template-columns: 1fr; gap: 9px; }
    .split-heading > p { justify-self: start; }
    .product-grid { gap: 12px; }
    .product-card { min-height: 125px; }
    .product-card span { font-size: 33px; }
    .section-mission h2 { font-size: 37px; }
    .mission-values { margin-top: 35px; }
    .cta-inner > img { width: 65px; height: 65px; }
    .cta-actions .button { width: 100%; }
    .footer-newsletter { grid-template-columns: 1fr; gap: 24px; padding: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 22px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
    .site-footer .footer-bottom { flex-direction: column; text-align: center; }
    .back-to-top { width: 46px; height: 46px; right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); }
}

@media (max-width: 480px) {
    .footer-newsletter { padding: 25px 20px; }
    .newsletter-form { flex-direction: column; border-radius: 19px; }
    .newsletter-form button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
