/* ======= BASE ======= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --orange: #ff7a00;
    --orange-dark: #e56d00;
    --orange-deep: #b34e00;
    --orange-light: #ffb347;
    --orange-soft: #fff3e6;
    --cream: #fffaf5;
    --text: #2a2118;
    --text-soft: #7a6b5c;
    --white: #fff;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; letter-spacing: -.3px; }
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* ======= HEADER ======= */
.site-header {
    background: linear-gradient(135deg, #ff7a00 0%, #ff9a3c 55%, #ffb347 100%);
    color: #fff;
    position: sticky; top: 0; z-index: 999;
    box-shadow: 0 6px 30px rgba(255,122,0,.35);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; padding: 14px 28px;
    max-width: 1280px; margin: 0 auto;
}
.brand {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; flex-shrink: 0;
}
.brand-logo {
    width: 68px; height: 68px; flex-shrink: 0;
    border-radius: 50%; overflow: hidden;
    background: #fff; padding: 4px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    border: 3px solid rgba(255,255,255,.85);
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.brand-logo .fallback {
    color: var(--orange); font-weight: 900; font-size: 20px;
}
.brand-text { display: flex; flex-direction: column; }
.brand-text h1 {
    font-size: 24px; font-weight: 900; line-height: 1.1;
    color: #fff; letter-spacing: -.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,.2);
    white-space: nowrap;
}
.brand-text p {
    font-size: 12px; font-weight: 500; opacity: .95;
    margin-top: 3px; letter-spacing: .2px;
    white-space: nowrap;
}

.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav ul li a {
    color: #fff; text-decoration: none;
    font-weight: 700; font-size: 15px;
    padding: 10px 18px; border-radius: 50px;
    transition: .25s; white-space: nowrap;
}
.main-nav ul li a:hover { background: rgba(255,255,255,.18); }
.main-nav ul li a.active {
    background: #fff; color: var(--orange-deep);
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}

.header-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.search-btn, .hamburger {
    width: 46px; height: 46px; border-radius: 50%;
    background: #fff; color: var(--orange);
    border: none; cursor: pointer; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
    transition: .3s;
}
.search-btn:hover { background: var(--orange-deep); color: #fff; transform: scale(1.08); }
.hamburger { display: none; }

/* Search Overlay */
.search-overlay {
    position: fixed; inset: 0; background: rgba(179,78,0,.9);
    backdrop-filter: blur(8px); z-index: 2000;
    display: flex; align-items: flex-start; justify-content: center;
    padding-top: 15vh;
    opacity: 0; pointer-events: none; transition: .3s;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-box {
    width: 90%; max-width: 640px; background: #fff;
    border-radius: 60px; display: flex; align-items: center;
    padding: 10px 10px 10px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.search-box > i { color: var(--text-soft); font-size: 18px; }
.search-box input {
    flex: 1; border: none; outline: none; padding: 14px;
    font-size: 16px; font-family: inherit; background: transparent;
}
.search-box button {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--orange); color: #fff;
    border: none; cursor: pointer;
}

/* ======= HERO ======= */
.hero-slider {
    position: relative; height: 88vh; min-height: 600px; max-height: 800px;
    overflow: hidden;
    background: #8b3d00;
}
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.2s ease;
    display: flex; align-items: center;
    background-size: cover; background-position: center;
}
.hero-slide::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg,
        rgba(179,78,0,.92) 0%,
        rgba(255,122,0,.75) 40%,
        rgba(255,122,0,.25) 100%);
}
.hero-slide.active { opacity: 1; }
.hero-slide.active .hero-content { animation: heroIn 1.1s cubic-bezier(.2,.8,.2,1) both; }
@keyframes heroIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1280px; width: 100%;
    margin: 0 auto; padding: 0 40px;
    color: #fff;
}
.hero-content .kicker {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,.4);
    padding: 8px 20px; border-radius: 50px;
    font-size: 13px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-content .kicker::before {
    content: ''; width: 8px; height: 8px;
    border-radius: 50%; background: #fff;
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
}
.hero-content h2 {
    font-size: clamp(32px, 5vw, 62px);
    font-weight: 900; line-height: 1.06;
    letter-spacing: -2px; margin-bottom: 22px;
    max-width: 900px;
    text-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.hero-content h2 span {
    background: linear-gradient(135deg, #ffd88a, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content p {
    font-size: clamp(15px, 1.3vw, 19px);
    opacity: .97; margin-bottom: 34px;
    max-width: 640px; line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero {
    display: inline-flex; align-items: center; gap: 12px;
    background: #fff; color: var(--orange-deep);
    padding: 16px 34px; border-radius: 50px;
    text-decoration: none; font-weight: 800; font-size: 15.5px;
    transition: .35s; box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.btn-hero:hover {
    background: var(--orange-deep); color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,.4);
}
.btn-hero .circle {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--orange); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: .35s; font-size: 13px;
}
.btn-hero:hover .circle { background: #fff; color: var(--orange-deep); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.15); color: #fff;
    border: 2px solid rgba(255,255,255,.6);
    padding: 14px 30px; border-radius: 50px;
    text-decoration: none; font-weight: 700; font-size: 15px;
    backdrop-filter: blur(8px);
    transition: .3s;
}
.btn-outline:hover { background: #fff; color: var(--orange-deep); border-color: #fff; }

.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 54px; height: 54px; border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.5);
    color: #fff; cursor: pointer; font-size: 18px;
    z-index: 5; transition: .3s;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
}
.slider-arrow:hover { background: #fff; color: var(--orange-deep); border-color: #fff; transform: translateY(-50%) scale(1.08); }
.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

.hero-dots {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 5;
}
.hero-dots span {
    width: 12px; height: 12px; border-radius: 50%;
    background: rgba(255,255,255,.5); cursor: pointer; transition: .3s;
}
.hero-dots span.active { background: #fff; width: 40px; border-radius: 6px; }

/* ======= SECTIONS ======= */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--orange-soft); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.section-head { text-align: center; margin-bottom: 60px; }
.section-head .tag {
    display: inline-block;
    color: var(--orange); font-weight: 800; font-size: 12.5px;
    letter-spacing: 2.5px; text-transform: uppercase;
    margin-bottom: 14px;
    background: #fff; padding: 8px 22px; border-radius: 30px;
    box-shadow: 0 6px 18px rgba(255,122,0,.15);
}
.section-head h2 {
    font-size: clamp(28px, 3.2vw, 42px); font-weight: 900;
    color: var(--orange-deep); line-height: 1.15;
    letter-spacing: -1px;
}
.section-head h2 span { color: var(--orange); }
.section-head p {
    color: var(--text-soft); max-width: 640px;
    margin: 16px auto 0; font-size: 16px;
}

/* ======= ABOUT ======= */
.about-grid {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 70px; align-items: center;
}
.about-img {
    border-radius: 28px; overflow: hidden;
    box-shadow: 0 30px 70px rgba(255,122,0,.3);
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    position: relative;
}
.about-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(179,78,0,.35), transparent 50%);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.about-text .tag { margin-bottom: 14px; display: inline-block; color: var(--orange); font-weight: 800; font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase; }
.about-text h3 {
    font-size: clamp(26px, 3vw, 36px); color: var(--orange-deep);
    margin-bottom: 20px; font-weight: 900;
    line-height: 1.15; letter-spacing: -1px;
}
.about-text > p { color: var(--text-soft); margin-bottom: 16px; font-size: 15.5px; }

.stat-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-top: 32px;
}
.stat {
    background: #fff; padding: 24px 16px; border-radius: 16px;
    text-align: center; border: 2px solid #ffe0c2;
    transition: .35s;
}
.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(255,122,0,.25);
    border-color: var(--orange);
}
.stat h4 {
    font-size: 34px; color: var(--orange); font-weight: 900;
    line-height: 1;
}
.stat p { font-size: 12.5px; color: var(--text-soft); margin-top: 8px; font-weight: 600; }

/* ======= JURUSAN ======= */
.grid-jurusan {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.jurusan-card {
    background: #fff; border-radius: 22px; overflow: hidden;
    text-decoration: none; color: inherit; display: block;
    box-shadow: 0 10px 30px rgba(255,122,0,.1);
    transition: .45s cubic-bezier(.2,.8,.2,1);
    border: 2px solid #ffe8d1;
}
.jurusan-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 60px rgba(255,122,0,.3);
    border-color: var(--orange);
}
.jurusan-card-img {
    width: 100%; height: 210px; overflow: hidden;
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    position: relative;
}
.jurusan-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.35), transparent 60%);
}
.jurusan-card-img img { width: 100%; height: 100%; object-fit: cover; transition: .6s; }
.jurusan-card:hover .jurusan-card-img img { transform: scale(1.12); }
.jurusan-card-img .emoji {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 72px; z-index: 1;
}
.jurusan-card-img .label {
    position: absolute; top: 14px; left: 14px;
    background: rgba(255,255,255,.95);
    color: var(--orange-deep);
    padding: 6px 14px; border-radius: 30px;
    font-size: 11.5px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    z-index: 2;
}
.jurusan-card-body { padding: 26px 24px; }
.jurusan-card-body h3 {
    font-size: 20px; color: var(--orange-deep);
    margin-bottom: 10px; font-weight: 800;
}
.jurusan-card-body p {
    font-size: 14px; color: var(--text-soft);
    margin-bottom: 16px; line-height: 1.65;
}
.jurusan-card-body .more {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--orange); font-weight: 800; font-size: 14px;
}
.jurusan-card-body .more i { transition: .35s; }
.jurusan-card:hover .jurusan-card-body .more i { transform: translateX(6px); }

/* ======= CTA ======= */
.cta-band {
    background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange) 60%, var(--orange-light) 100%);
    border-radius: 32px; padding: 60px 55px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; color: #fff;
    box-shadow: 0 30px 70px rgba(255,122,0,.4);
    position: relative; overflow: hidden;
}
.cta-band::before, .cta-band::after {
    content: ''; position: absolute; border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.cta-band::before { top: -60%; right: -5%; width: 420px; height: 420px; }
.cta-band::after { bottom: -60%; left: -5%; width: 320px; height: 320px; }
.cta-band h3 {
    font-size: clamp(24px, 3vw, 34px); font-weight: 900;
    line-height: 1.15; margin-bottom: 10px;
    position: relative; z-index: 1;
    letter-spacing: -.8px;
}
.cta-band p { opacity: .95; position: relative; z-index: 1; font-size: 16px; }
.cta-band .btn-hero {
    background: #fff; color: var(--orange-deep);
    position: relative; z-index: 1;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
    white-space: nowrap;
}
.cta-band .btn-hero:hover { background: var(--orange-deep); color: #fff; }

/* ======= PAGE HERO ======= */
.page-hero {
    background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange) 55%, var(--orange-light) 100%);
    color: #fff; padding: 80px 0 110px;
    text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -30%; right: -8%;
    width: 420px; height: 420px; border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.page-hero::after {
    content: ''; position: absolute; bottom: -40%; left: -5%;
    width: 340px; height: 340px; border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.page-hero h1 {
    font-size: clamp(28px, 4vw, 46px); font-weight: 900;
    letter-spacing: -1px; margin-bottom: 12px;
    position: relative; z-index: 1;
    text-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.page-hero p { font-size: 16px; opacity: .95; position: relative; z-index: 1; }

/* ======= CONTENT ======= */
.content-block {
    background: #fff; padding: 45px;
    border-radius: 24px; margin-top: -60px;
    box-shadow: 0 20px 50px rgba(255,122,0,.15);
    position: relative; z-index: 2;
    margin-bottom: 45px;
    border-top: 6px solid var(--orange);
}
.content-block h2 {
    color: var(--orange-deep); font-size: 26px; font-weight: 900;
    margin-bottom: 22px; padding-left: 18px;
    border-left: 6px solid var(--orange);
}
.content-block h3 {
    color: var(--orange); font-size: 19px; font-weight: 800;
    margin: 26px 0 12px;
}
.content-block p { margin-bottom: 14px; color: var(--text); }

ul.list { margin-left: 24px; margin-top: 10px; list-style: disc; }
ul.list li { margin-bottom: 8px; }
ul.list li::marker { color: var(--orange); font-weight: 700; }

.kegiatan {
    background: linear-gradient(135deg, #fff8f1, #fff);
    border-left: 6px solid var(--orange);
    padding: 24px 28px; border-radius: 14px; margin-bottom: 18px;
    transition: .35s;
    box-shadow: 0 3px 12px rgba(255,122,0,.06);
}
.kegiatan:hover {
    background: linear-gradient(135deg, #ffefdd, #fff8f1);
    transform: translateX(10px);
    box-shadow: 0 12px 32px rgba(255,122,0,.2);
}
.kegiatan h3 { margin-top: 0; color: var(--orange-deep); }

table {
    width: 100%; border-collapse: collapse; margin-top: 16px;
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 8px 24px rgba(255,122,0,.1);
}
table th, table td { padding: 15px 20px; text-align: left; }
table th {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff; font-weight: 700; font-size: 14.5px; letter-spacing: .3px;
}
table td { border-bottom: 1px solid #ffe0c2; font-size: 14.5px; }
table tr:nth-child(even) td { background: #fff8f1; }
table tr:hover td { background: #fff0e0; transition: .2s; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff; padding: 15px 34px; border-radius: 50px;
    text-decoration: none; font-weight: 800; font-size: 15px;
    transition: .35s; box-shadow: 0 12px 28px rgba(255,122,0,.4);
    border: none; cursor: pointer; margin-top: 14px;
}
.btn:hover {
    background: linear-gradient(135deg, var(--orange-deep), var(--orange));
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255,122,0,.55);
}

.back {
    display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 20px; color: var(--orange);
    text-decoration: none; font-weight: 800; font-size: 14px;
    padding: 9px 20px; border-radius: 30px;
    background: var(--orange-soft); transition: .3s;
}
.back:hover { background: var(--orange); color: #fff; }

/* ======= REVEAL ======= */
.reveal { opacity: 0; transform: translateY(40px); transition: .9s cubic-bezier(.2,.8,.2,1); }
.reveal.show { opacity: 1; transform: translateY(0); }

/* ======= FOOTER ======= */
.site-footer {
    background: linear-gradient(135deg, #1a1410 0%, #2a1e12 100%);
    color: #fff; padding: 70px 0 0; margin-top: 100px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px; padding: 0 28px 50px;
    max-width: 1200px; margin: 0 auto;
}
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brand img {
    width: 56px; height: 56px; object-fit: contain;
    background: #fff; padding: 4px; border-radius: 50%;
}
.footer-brand h4 {
    font-size: 16px; font-weight: 800;
    line-height: 1.2; letter-spacing: .3px;
}
.site-footer h4 { font-size: 16px; font-weight: 800; margin-bottom: 18px; color: #ffb347; }
.site-footer p { font-size: 14px; opacity: .85; line-height: 1.8; margin-bottom: 10px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a {
    color: #fff; text-decoration: none; font-size: 14px;
    opacity: .85; transition: .3s;
}
.site-footer ul li a:hover { opacity: 1; color: var(--orange-light); padding-left: 6px; }
.site-footer i { color: var(--orange-light); margin-right: 8px; }

.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: #fff; transition: .3s;
}
.social a:hover { background: var(--orange); transform: translateY(-4px); }
.social i { margin: 0; color: #fff; }

.footer-bottom {
    text-align: center; padding: 22px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 13.5px; opacity: .75;
    max-width: 1200px; margin: 0 auto;
}

/* ======= WA FLOAT ======= */
.wa-float {
    position: fixed; bottom: 25px; right: 25px;
    background: #25d366; color: #fff;
    display: flex; align-items: center; gap: 10px;
    padding: 12px 22px 12px 14px; border-radius: 50px;
    text-decoration: none; font-weight: 700; font-size: 14px;
    box-shadow: 0 12px 35px rgba(37,211,102,.5);
    z-index: 998; transition: .3s;
}
.wa-float i { font-size: 22px; }
.wa-float:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 18px 45px rgba(37,211,102,.7); }
.wa-label {
    background: #fff; color: #0a5c3a;
    padding: 5px 12px; border-radius: 30px;
    font-size: 12.5px; font-weight: 700;
    white-space: nowrap;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1100px) {
    .brand-text h1 { font-size: 20px; }
    .brand-text p { font-size: 11px; }
    .main-nav ul li a { padding: 9px 14px; font-size: 14px; }
    .about-grid { gap: 45px; }
}
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .section { padding: 70px 0; }
}
@media (max-width: 780px) {
    .header-inner { padding: 12px 18px; gap: 12px; flex-wrap: wrap; }
    .brand-logo { width: 54px; height: 54px; }
    .brand-text h1 { font-size: 15px; }
    .brand-text p { font-size: 10px; }
    .main-nav {
        display: none; width: 100%; order: 3;
        flex-basis: 100%;
    }
    .main-nav.mobile-open { display: block; }
    .main-nav.mobile-open ul {
        flex-direction: column; gap: 6px;
        padding: 14px; background: rgba(0,0,0,.12);
        border-radius: 14px; margin-top: 10px;
    }
    .main-nav.mobile-open ul li a {
        display: block; padding: 12px 18px;
        border-radius: 10px; background: rgba(255,255,255,.12);
    }
    .hamburger { display: flex; }
    .search-btn, .hamburger { width: 42px; height: 42px; font-size: 15px; }

    .hero-slider { height: 78vh; min-height: 520px; }
    .hero-content { padding: 0 24px; }
    .hero-content .kicker { font-size: 11px; padding: 6px 14px; letter-spacing: 1px; }
    .hero-actions { gap: 10px; }
    .btn-hero, .btn-outline { padding: 13px 26px; font-size: 14px; }
    .slider-arrow { width: 42px; height: 42px; font-size: 14px; }
    .slider-arrow.prev { left: 12px; }
    .slider-arrow.next { right: 12px; }

    .section-head h2 { font-size: 26px; }
    .content-block { padding: 28px 22px; }
    .page-hero { padding: 60px 0 90px; }
    .cta-band { flex-direction: column; text-align: center; padding: 40px 28px; gap: 24px; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .wa-label { display: none; }
    .wa-float { padding: 14px; border-radius: 50%; }
}