:root {
    --navy: #0B1221;
    --navy-light: #1E293B;
    --blue: #1D4ED8;
    --blue-dark: #1E3A8A;
    --gold: #D97706;
    --ink: #334155;
    --ink-dark: #0F172A;
    --muted: #64748B;
    --line: #E2E8F0;
    --soft: #F8FAFC;
    --paper: #FFFFFF;
    --green: #059669;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 0 20px rgba(29, 78, 216, 0.15);
    
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    transition: color var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--ink-dark);
    margin-top: 0;
    font-weight: 700;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .stagger-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/* Topbar */
.topbar {
    background: var(--navy);
    color: #CBD5E1;
    font-size: 13px;
    font-weight: 500;
}

.topbar__inner {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar__left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topbar__left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar__right a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #F8FAFC;
    text-decoration: none;
    font-weight: 600;
}

.topbar__right a:hover {
    color: #93C5FD;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: max-content;
    text-decoration: none;
}

.brand__mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 22px;
    box-shadow: var(--shadow-sm);
}

.brand__text strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.2;
}

.brand__text small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--ink-dark);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.main-nav a:hover, .main-nav a.active {
    background: var(--soft);
    color: var(--blue);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    cursor: pointer;
    padding: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn--primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25);
}

.btn--primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 6px 16px rgba(29, 78, 216, 0.35);
    transform: translateY(-2px);
}

.btn--outline {
    border-color: var(--line);
    color: var(--ink-dark);
    background: #fff;
}

.btn--outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--soft);
}

.btn--ghost {
    color: var(--blue);
    background: transparent;
}

.btn--ghost:hover {
    background: var(--soft);
}

.btn--light {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn--light:hover {
    background: var(--soft);
    transform: translateY(-2px);
}

.btn--outline-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--navy);
    color: #fff;
    overflow: hidden;
    padding: 100px 0 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.2) 0%, rgba(11, 18, 33, 0) 60%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 20px;
    color: #94A3B8;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero__panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero__panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}

.hero__seal {
    display: grid;
    width: 80px;
    height: 80px;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), #B45309);
    border-radius: 20px;
    font-size: 32px;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3);
}

.hero__panel h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 16px;
}

.hero__panel p {
    font-size: 16px;
    margin-bottom: 32px;
}

.mini-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.mini-metrics span {
    font-size: 13px;
    color: #94A3B8;
}

.mini-metrics strong {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section--soft {
    background: var(--soft);
}

.section-head {
    max-width: 680px;
    margin-bottom: 48px;
}

.section-head h2 {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-head--compact {
    margin-bottom: 24px;
}

.section-head--compact h2 {
    font-size: 32px;
}

/* Grids */
.card-grid {
    display: grid;
    gap: 24px;
}

.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--5 { grid-template-columns: repeat(5, 1fr); }

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.stack {
    display: grid;
    gap: 16px;
}

/* Cards */
.feature-card, .service-card, .news-card, .testimonial-card, .lecturer-card, .contact-card, .cms-block, .side-panel, .content-block, .empty-state {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px;
    text-decoration: none;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.feature-card:hover, .service-card:hover, .news-card:hover, .lecturer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(29, 78, 216, 0.2);
}

.feature-card h3, .service-card h3, .news-card h3, .lecturer-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p, .service-card p, .news-card p, .empty-state p {
    color: var(--muted);
    margin: 0;
    font-size: 15px;
}

/* Feature Icon (if we add icons later) */
.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--soft);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--blue);
    margin-bottom: 20px;
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
}

.timeline__item {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    z-index: 2;
}

.timeline__item span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 10px;
    background: var(--soft);
    color: var(--blue);
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 16px;
}

.timeline__item strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--ink-dark);
}

/* News & Announcements */
.news-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.news-card span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.announcement-card {
    display: block;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-decoration: none;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border-left: 4px solid var(--blue);
}

.announcement-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.announcement-card strong {
    display: block;
    color: var(--ink-dark);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.announcement-card span {
    color: var(--muted);
    font-size: 13px;
}

/* Events */
.event-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
    margin-bottom: 16px;
    transition: all var(--transition-base);
}

.event-card:hover {
    box-shadow: var(--shadow-md);
}

.event-card time {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--soft);
    border-radius: 12px;
    color: var(--navy);
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: center;
    line-height: 1.2;
}

.event-card time .day { font-size: 24px; }
.event-card time .month { font-size: 13px; text-transform: uppercase; color: var(--muted); }

.event-card h3 { margin: 0 0 4px; font-size: 18px; }
.event-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* Highlight Card (Kaprodi/Teaser) */
.highlight-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    padding: 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.highlight-card h2 { color: #fff; font-size: 32px; margin-bottom: 16px; position: relative; z-index: 2; }
.highlight-card p { color: #CBD5E1; font-size: 16px; margin-bottom: 32px; position: relative; z-index: 2; }
.highlight-card .btn { position: relative; z-index: 2; }

/* Lecturers */
.lecturer-card {
    text-align: center;
    padding: 32px 24px;
}

.avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--soft);
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--blue);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.lecturer-card h3 { margin-bottom: 4px; font-size: 18px; }
.lecturer-card p { font-size: 14px; color: var(--gold); font-weight: 500; }

/* Testimonials */
.testimonial-card {
    padding: 40px 32px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 80px;
    color: var(--soft);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card p {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-dark);
    margin-bottom: 24px;
    font-weight: 500;
}

.testimonial-card strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--navy); }
.testimonial-card span { font-size: 13px; color: var(--muted); }

/* FAQ */
.faq-list {
    display: grid;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.faq {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq summary {
    padding: 24px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--ink-dark);
    font-size: 18px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--blue);
    transition: transform var(--transition-base);
}

.faq[open] summary::after {
    transform: rotate(45deg);
}

.faq .faq-content {
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.7;
}

/* CTA Band */
.cta-band {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-band h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-band p {
    color: #DBEAFE;
    font-size: 18px;
    max-width: 600px;
    margin: 0;
}

.cta-band .actions {
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: var(--navy);
    color: #94A3B8;
    padding: 80px 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer__logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.footer__desc {
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer__links h4, .footer__contact h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 24px;
}

.footer__links a {
    display: block;
    color: #94A3B8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color var(--transition-base);
}

.footer__links a:hover {
    color: #fff;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #94A3B8;
    text-decoration: none;
}

.footer-contact-item svg {
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact-item:hover { color: #fff; }

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    font-size: 14px;
}

/* Floating Action */
.floating-wa {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    background: var(--green);
    color: #fff;
    padding: 14px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.4);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all var(--transition-base);
}

.floating-wa:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(5, 150, 105, 0.5);
}

.floating-wa__text {
    display: none;
}

.floating-wa:hover .floating-wa__text {
    display: block;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
    background: transparent;
    border: 2px dashed rgba(226, 232, 240, 0.8);
    box-shadow: none;
}

.empty-state svg {
    color: var(--muted);
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state h3 { font-size: 20px; color: var(--ink-dark); margin-bottom: 8px; }

/* Internal Pages */
.breadcrumb-wrapper {
    background: var(--soft);
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
}

.breadcrumb-item {
    font-weight: 500;
}

.breadcrumb-item:last-child {
    color: var(--ink-dark);
    font-weight: 600;
}

.subhero {
    background: var(--soft);
    padding: 80px 0;
    border-bottom: 1px solid var(--line);
}

.subhero h1 { font-size: 48px; margin-bottom: 16px; }
.subhero p, .lead { font-size: 20px; color: var(--muted); max-width: 800px; }

.page-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    padding: 80px 0;
}

.content-article h2 { font-size: 32px; margin: 40px 0 20px; }
.content-article h3 { font-size: 24px; margin: 30px 0 16px; }
.content-article p { margin-bottom: 20px; font-size: 16px; }

.side-panel {
    position: sticky;
    top: 120px;
    padding: 32px;
}

/* Mobile Responsive */
@media (max-width: 1080px) {
    .header-cta { display: none; }
    .card-grid--5, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .hero__grid, .split, .page-layout { grid-template-columns: 1fr; }
    .hero__grid { gap: 40px; }
    .hero__panel { max-width: 600px; margin: 0 auto; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .side-panel { position: static; }
}

@media (max-width: 768px) {
    .topbar__left .hide-mobile { display: none; }
    
    .header__inner { min-height: 70px; }
    .brand__mark { width: 40px; height: 40px; font-size: 18px; }
    .brand__text strong { font-size: 16px; }
    
    .nav-toggle { display: block; }
    
    .nav-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--line);
        align-items: stretch;
    }
    
    .nav-wrapper.is-open { display: flex; }
    
    .main-nav { flex-direction: column; align-items: stretch; }
    .main-nav a { padding: 16px; border-bottom: 1px solid var(--line); border-radius: 0; }
    
    .header-actions { margin-top: 20px; display: flex; flex-direction: column; }
    .header-cta { display: flex; }
    
    .hero { padding: 60px 0 80px; text-align: center; }
    .hero h1 { font-size: 40px; }
    .hero p { margin: 0 auto 32px; }
    .hero__actions { justify-content: center; }
    .hero__seal { margin: 0 auto 24px; }
    
    .section { padding: 60px 0; }
    .section-head h2 { font-size: 32px; }
    
    .card-grid--3, .card-grid--4, .card-grid--5, .mini-metrics { grid-template-columns: 1fr; }
    
    .timeline { grid-template-columns: 1fr; }
    .timeline__item { padding: 20px; display: flex; align-items: center; gap: 16px; }
    .timeline__item span { margin-bottom: 0; flex-shrink: 0; }
    .timeline__item strong { margin-top: 0; }
    
    .cta-band__inner { flex-direction: column; text-align: center; }
    .cta-band h2 { font-size: 28px; }
    
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    
    .floating-wa__text { display: none !important; }
}
