:root {
    --navy: #06182a;
    --navy-2: #0b243d;
    --navy-3: #12395e;
    --gold: #d8ae57;
    --gold-2: #f4da95;
    --cream: #fff8ea;
    --paper: #fbf7ef;
    --ink: #112033;
    --muted: #66778d;
    --line: rgba(6, 24, 42, 0.12);
    --soft: rgba(216, 174, 87, 0.14);
    --green: #2d9d72;
    --shadow: 0 24px 70px rgba(6, 24, 42, 0.12);
    --shadow-2: 0 12px 36px rgba(6, 24, 42, 0.09);
    --radius: 28px;
    --max: 1200px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fff, var(--paper) 36%, #fff 100%);
    line-height: 1.65;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
button,
input,
textarea {
    font: inherit;
}
.container {
    width: min(var(--max), calc(100% - 38px));
    margin-inline: auto;
}
.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: #fff;
    color: var(--navy);
    padding: 10px 14px;
    border-radius: 12px;
    z-index: 999;
}
.skip-link:focus {
    left: 12px;
}
.top-strip {
    background: #04101c;
    color: #c5d2df;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}
.top-strip b {
    color: var(--gold-2);
}
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 24, 42, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: #fff;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}
.brand img {
    width: 46px;
    height: 46px;
    border-radius: 16px;
}
.brand-title {
    font-weight: 950;
    letter-spacing: -0.04em;
    font-size: 18px;
    line-height: 1;
}
.brand-sub {
    font-size: 10px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--gold-2);
    font-weight: 900;
    margin-top: 6px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 800;
    color: #d9e5ef;
}
.nav-links a {
    position: relative;
}
.nav-links a:not(.nav-cta):after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.22s;
}
.nav-links a:hover:after,
.nav-links a.active:after {
    transform: scaleX(1);
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #06182a;
    font-weight: 950;
    box-shadow: 0 12px 30px rgba(216, 174, 87, 0.25);
}
.menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    border-radius: 14px;
    padding: 10px 12px;
    font-weight: 900;
}
.mobile-menu {
    display: none;
    background: rgba(6, 24, 42, 0.98);
    padding: 0 20px 18px;
}
.mobile-menu.open {
    display: block;
}
.mobile-menu a {
    display: block;
    color: #d9e5ef;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 800;
}
.mobile-menu .nav-cta {
    display: inline-flex;
    margin-top: 14px;
    color: #06182a;
    border-top: 0;
}
.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 8% 10%, rgba(216, 174, 87, 0.23), transparent 26%),
        linear-gradient(135deg, #06182a 0%, #0b243d 48%, #14395a 100%);
    color: #fff;
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 24, 42, 0.97) 0%, rgba(6, 24, 42, 0.85) 44%, rgba(6, 24, 42, 0.25) 100%);
    z-index: 1;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("hero-kawasan-buatsemua.webp") right center/cover no-repeat;
    opacity: 0.72;
}
.hero:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 128px;
    background: linear-gradient(0deg, #fff, transparent);
    z-index: 2;
}
.hero-inner {
    position: relative;
    z-index: 3;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 44px;
    align-items: center;
    padding: 10px 0 10px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(244, 218, 149, 0.34);
    border-radius: 999px;
    background: rgba(216, 174, 87, 0.1);
    color: var(--gold-2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 950;
}
.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 7px rgba(45, 157, 114, 0.15);
}
h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -0.045em;
    line-height: 1.04;
    margin: 0;
}
h1 {
    font-size: clamp(44px, 6.7vw, 44px);
    max-width: 780px;
    margin: 22px 0;
    color: #fff;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}
.gold-text {
    color: var(--gold-2);
}
.hero-lead {
    font-size: clamp(16px, 1.7vw, 20px);
    color: #d8e4ef;
    max-width: 700px;
    margin: 0;
}
.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin: 32px 0 24px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 950;
    border: 1px solid transparent;
    transition: 0.22s ease;
    white-space: nowrap;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #06182a;
    box-shadow: 0 18px 42px rgba(216, 174, 87, 0.3);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.btn-dark {
    background: var(--navy);
    color: #fff;
}
.hero-note {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.note-pill {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 12px;
    font-weight: 850;
    color: #e5eff8;
}
.hero-card {
    align-self: baseline;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(18px);
    border-radius: 36px;
    padding: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}
.hero-image {
    height: 310px;
    border-radius: 26px;
    background: url("hero-kawasan-buatsemua.webp") center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    overflow: hidden;
}
.hero-image:after {
    content: "Ilustrasi konseptual kawasan berdasarkan layout dasar";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border-radius: 18px;
    background: rgba(6, 24, 42, 0.78);
    padding: 12px 14px;
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    backdrop-filter: blur(10px);
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
}
.stat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    padding: 18px;
}
.stat b {
    display: block;
    font-size: 31px;
    line-height: 1;
    color: var(--gold-2);
    letter-spacing: -0.05em;
}
.stat span {
    display: block;
    margin-top: 6px;
    color: #d9e5ef;
    font-size: 12px;
    font-weight: 800;
}
.trust-strip {
    margin-top: -74px;
    position: relative;
    z-index: 8;
}
.trust-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.trust-item {
    padding: 23px 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid var(--line);
}
.trust-item:last-child {
    border-right: 0;
}
.trust-ico {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(216, 174, 87, 0.22), rgba(6, 24, 42, 0.06));
    color: #9b6b1f;
    font-size: 23px;
    flex: 0 0 auto;
}
.trust-item b {
    display: block;
    font-size: 15px;
}
.trust-item span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    margin-top: 2px;
}
section {
    padding: 80px 0;
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 40px;
}
.kicker {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #946b2b;
    font-weight: 950;
    margin-bottom: 10px;
}
h2 {
    font-size: clamp(34px, 4.6vw, 58px);
    color: var(--navy-2);
}
.section-desc {
    max-width: 570px;
    color: var(--muted);
    font-size: 17px;
    margin: 0;
}
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-2);
}
.about {
    background: linear-gradient(180deg, #fff, #fff8ee);
}
.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
}
.about-dark {
    padding: 32px;
    border-radius: 34px;
    background: linear-gradient(135deg, #06182a, #0d2d4c);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(6, 24, 42, 0.2);
}
.about-dark:before {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    right: -95px;
    top: -95px;
    background: rgba(216, 174, 87, 0.18);
}
.about-dark > * {
    position: relative;
}
.quote {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: -0.035em;
    margin: 20px 0;
    color: #fff;
}
.check-list {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
}
.check-list li {
    display: flex;
    gap: 10px;
    margin: 12px 0;
    color: #d9e5ef;
}
.check-list li:before {
    content: "✓";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(216, 174, 87, 0.18);
    color: var(--gold-2);
    font-weight: 950;
    flex: 0 0 auto;
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.value {
    padding: 26px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
}
.value .icon,
.program .icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(216, 174, 87, 0.22), rgba(6, 24, 42, 0.06));
    font-size: 25px;
    margin-bottom: 18px;
}
.value h3,
.program h3 {
    font-size: 20px;
    line-height: 1.24;
    letter-spacing: -0.03em;
    margin: 0 0 8px;
    color: var(--navy-2);
}
.value p,
.program p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}
.programs {
    background: #fff;
}
.program-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.program {
    padding: 23px 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff, #fffaf2);
    border: 1px solid rgba(216, 174, 87, 0.23);
    box-shadow: 0 14px 38px rgba(6, 24, 42, 0.06);
}
.program .icon {
    margin-bottom: 14px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
}
.tag {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #f7ecd3;
    color: #8a6220;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 950;
}
.visual {
    background: linear-gradient(180deg, #fff8ee, #fff);
}
.visual-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 26px;
    align-items: stretch;
}
.visual-card {
    padding: 16px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.visual-card img {
    border-radius: 24px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visual-info {
    padding: 32px;
    border-radius: 34px;
    background: linear-gradient(135deg, #06182a, #0b243d);
    color: #fff;
    box-shadow: 0 24px 70px rgba(6, 24, 42, 0.18);
}
.visual-info h3 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -0.035em;
    font-size: 34px;
    line-height: 1.08;
    margin: 0 0 14px;
}
.visual-info p {
    color: #d7e4f0;
    margin: 0 0 22px;
}
.mini-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.mini-metric {
    padding: 17px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.mini-metric b {
    display: block;
    color: var(--gold-2);
    font-size: 25px;
    letter-spacing: -0.04em;
}
.mini-metric span {
    font-size: 12px;
    color: #cbd8e5;
    font-weight: 800;
}
.layout {
    background: #fff;
}
.layout-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 24px;
    align-items: start;
}
.plan-card {
    padding: 16px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}
.plan-title {
    font-weight: 950;
    color: var(--navy-2);
}
.plan-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.plan-pill {
    font-size: 11px;
    font-weight: 950;
    color: #7b551a;
    background: #f8ead1;
    border-radius: 999px;
    padding: 6px 9px;
}
.plan-image {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
}
.plan-image img {
    width: 100%;
}
.info-panel {
    padding: 25px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    position: sticky;
    top: 98px;
}
.info-panel h3 {
    font-size: 24px;
    letter-spacing: -0.035em;
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--navy-2);
}
.info-list {
    display: grid;
    gap: 12px;
}
.info-list div {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;
    align-items: start;
}
.info-list i {
    font-style: normal;
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #fff3dc;
    color: #9a6c25;
    font-weight: 950;
}
.info-list b {
    display: block;
    color: var(--navy-2);
    font-size: 14px;
}
.info-list span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}
.zone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 22px;
}
.zone {
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(6, 24, 42, 0.05);
}
.zone b {
    display: block;
    color: var(--navy-2);
    margin-bottom: 5px;
}
.zone span {
    font-size: 13px;
    color: var(--muted);
}
.legal {
    background: linear-gradient(180deg, #fff, #fff8ee);
}
.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.legal-card {
    padding: 26px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
}
.legal-card h3 {
    margin: 0 0 16px;
    color: var(--navy-2);
    font-size: 22px;
}
.legal-row {
    display: grid;
    grid-template-columns: 0.95fr 1.35fr;
    border-top: 1px solid var(--line);
    font-size: 14px;
}
.legal-row:first-of-type {
    border-top: 0;
}
.legal-row b {
    background: #071f36;
    color: #fff;
    padding: 11px 13px;
}
.legal-row span {
    padding: 11px 13px;
    color: #34465b;
    background: #fff;
}
.doc-card {
    margin-top: 20px;
    padding: 23px;
    border-radius: 28px;
    background: linear-gradient(135deg, #06182a, #0c2e4e);
    color: #fff;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
}
.doc-card .doc-ico {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    display: grid;
    place-items: center;
    color: #06182a;
    font-size: 28px;
}
.doc-card b {
    display: block;
}
.doc-card span {
    display: block;
    color: #cbd8e5;
    font-size: 13px;
}
.partners {
    background: #fff;
}
.partner-box {
    border-radius: 38px;
    background: linear-gradient(135deg, #06182a, #0a2440);
    box-shadow: 0 24px 70px rgba(6, 24, 42, 0.18);
    color: #fff;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
}
.partner-copy {
    padding: 42px;
}
.partner-copy h2 {
    color: #fff;
}
.partner-copy p {
    color: #d3e1ef;
    max-width: 610px;
}
.partner-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 42px;
    background: rgba(255, 255, 255, 0.05);
}
.partner-item {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.partner-item b {
    color: var(--gold-2);
}
.partner-item span {
    display: block;
    color: #d6e4f1;
    font-size: 13px;
    margin-top: 4px;
}
.contact {
    background: linear-gradient(180deg, #fff8ee, #fff);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 14px;
}
.contact-card {
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
}
.contact-card i {
    font-style: normal;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #fff3dc;
    color: #9a6c25;
    font-size: 22px;
    margin-bottom: 13px;
}
.contact-card b {
    display: block;
    color: var(--navy-2);
    margin-bottom: 3px;
}
.contact-card span,
.contact-card a {
    color: var(--muted);
    font-size: 14px;
}
.footer {
    background: #04101c;
    color: #aabbd0;
    padding: 42px 0 24px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 26px;
}
.footer .brand-title {
    color: #fff;
}
.footer p {
    max-width: 520px;
    font-size: 14px;
    color: #aabbd0;
    margin: 12px 0 0;
}
.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: #d8e4ef;
    font-weight: 800;
    font-size: 14px;
}
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #7f91a8;
}
.floating-wa {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #25d366;
    color: #062416;
    border-radius: 999px;
    padding: 12px 15px;
    font-weight: 950;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: 0.75s ease;
}
.reveal.show {
    opacity: 1;
    transform: none;
}
@media (max-width: 1080px) {
    .nav-links {
        display: none;
    }
    .menu-btn {
        display: inline-flex;
    }
    .hero-inner,
    .about-grid,
    .visual-grid,
    .layout-grid,
    .partner-box {
        grid-template-columns: 1fr;
    }
    .hero-card {
        max-width: 760px;
    }
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-panel {
        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);
    }
    .zone-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-panel {
        position: static;
    }
    .section-head {
        display: block;
    }
    .section-desc {
        margin-top: 12px;
    }
    .partner-items {
        padding: 30px;
    }
    .footer-top {
        display: block;
    }
    .footer-links {
        margin-top: 22px;
    }
}
@media (max-width: 680px) {
    .top-strip {
        display: none;
    }
    .container {
        width: min(var(--max), calc(100% - 28px));
    }
    .nav {
        height: 68px;
    }
    .brand img {
        width: 42px;
        height: 42px;
    }
    .brand-title {
        font-size: 15px;
    }
    .brand-sub {
        font-size: 8.5px;
    }
    .hero:before {
        background: linear-gradient(180deg, rgba(6, 24, 42, 0.95), rgba(6, 24, 42, 0.72));
    }
    .hero-bg {
        opacity: 0.35;
        background-position: center;
    }
    .hero-inner {
        min-height: auto;
        padding: 68px 0 106px;
    }
    .hero-card {
        padding: 12px;
        border-radius: 28px;
    }
    .hero-image {
        height: 220px;
        border-radius: 22px;
    }
    .stat-grid,
    .trust-panel,
    .value-grid,
    .program-grid,
    .mini-metrics,
    .zone-grid,
    .legal-grid,
    .partner-items,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .trust-strip {
        margin-top: -62px;
    }
    .trust-item {
        border-right: 0 !important;
    }
    .trust-item:not(:last-child) {
        border-bottom: 1px solid var(--line);
    }
    section {
        padding: 66px 0;
    }
    h1 {
        font-size: 40px;
    }
    .hero-lead,
    .section-desc {
        font-size: 15px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    h2 {
        font-size: 34px;
    }
    .quote {
        font-size: 25px;
    }
    .about-dark,
    .visual-info,
    .partner-copy {
        padding: 26px;
        border-radius: 28px;
    }
    .program,
    .value,
    .contact-card {
        border-radius: 22px;
    }
    .plan-card {
        padding: 10px;
        border-radius: 26px;
    }
    .plan-top {
        display: block;
    }
    .plan-pills {
        margin-top: 10px;
    }
    .legal-row {
        grid-template-columns: 1fr;
    }
    .legal-row b {
        border-radius: 0;
    }
    .partner-box {
        border-radius: 28px;
    }
    .floating-wa {
        left: 14px;
        right: 14px;
        justify-content: center;
    }
    .footer .brand {
        justify-content: flex-start;
    }
    .copyright {
        display: block;
    }
    .copyright span {
        display: block;
        margin-top: 8px;
    }
}
