:root {
    /* Brand Colors */
    --primary-blue: #023F88;
    --primary-blue-deep: #012a5c;
    --primary-orange: #F37021;
    --primary-orange-hover: #df6014;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --surface-elevated: #ffffff;
    
    /* Secondary Accents for Pillars */
    --accent-blue: #e0f2fe;
    --accent-green: #ecfdf5;
    --accent-purple: #faf5ff;
    
    /* Typography */
    --base-font: 'Inter', system-ui, sans-serif;
    --display-font: 'Plus Jakarta Sans', var(--base-font);
    
    /* Shared values */
    --border-radius-sm: 8px;
    --border-radius-md: 14px;
    --border-radius-lg: 22px;
    --transition: 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 50px -12px rgba(15, 23, 42, 0.15), 0 8px 16px rgba(15, 23, 42, 0.06);
    --shadow-header: 0 12px 40px rgba(2, 63, 136, 0.08);
    --ring-focus: 0 0 0 3px rgba(243, 112, 33, 0.35);
}

html {
    scroll-behavior: smooth;
}

/* Reset Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--base-font);
    color: var(--text-dark);
    line-height: 1.65;
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1000;
    padding: 12px 20px;
    background: var(--primary-blue);
    color: #fff;
    font-weight: 600;
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
}

.skip-link:focus {
    left: 16px;
    outline: none;
    box-shadow: var(--ring-focus);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.text-blue { color: var(--primary-blue); }
.text-orange { color: var(--primary-orange); }
.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--display-font);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Common Components */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 8px;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: white;
    box-shadow: 0 4px 14px rgba(242, 111, 33, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 111, 33, 0.4);
}

.btn:focus-visible {
    outline: none;
    box-shadow: var(--ring-focus);
}

a:not(.btn):focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Header */
.site-header {
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    border-bottom: 1px solid transparent;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 0;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-header);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    line-height: 0;
}

.logo {
    height: 56px;
    width: auto;
}

@media (min-width: 480px) {
    .logo {
        height: 64px;
    }
}

@media (min-width: 768px) {
    .logo {
        height: 76px;
    }
}

@media (min-width: 1024px) {
    .logo {
        height: 84px;
    }
}

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

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links li a:hover {
    color: var(--primary-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    background-color: var(--accent-blue);
}

.nav-link-sub:hover {
    background-color: #dbeafe;
}

.btn-shop {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--text-dark);
    background: none;
    border: none;
    cursor: pointer;
}

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

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 85% center;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(120% 80% at 0% 50%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.55) 45%, transparent 72%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.88) 32%, rgba(255, 255, 255, 0.35) 62%, transparent 88%);
}

.hero-container {
    display: block;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(224, 242, 254, 0.95), rgba(255, 255, 255, 0.9));
    color: var(--primary-blue);
    padding: 8px 16px 8px 12px;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
    border: 1px solid rgba(2, 63, 136, 0.12);
    box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary-orange), #ff9a56);
    box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.2);
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(1.85rem, 4vw + 1rem, 3.05rem);
    font-weight: 800;
    margin-bottom: 20px;
    padding-top: 4px;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-subtitle strong {
    font-size: 1.15rem;
}

.hero-subtitle strong.highlight-orange {
    color: var(--primary-orange);
}

.small-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn.outline-btn {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 700;
    padding: 10px 20px;
}

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

.btn.cta-btn {
    padding: 12px 24px;
    background-color: var(--primary-orange);
    border-radius: 8px;
    box-shadow: none;
    font-weight: 600;
}
.btn.cta-btn:hover {
    background-color: #d85c14;
}

.qr-scan-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: white;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.qr-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #000;
    background: transparent;
}

.qr-text {
    font-size: 0.7rem;
    line-height: 1.3;
    color: var(--text-dark);
    font-weight: 600;
}

.hero-wave-wrapper {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
    overflow: hidden;
    line-height: 0;
}

.hero-wave {
    display: block;
    width: calc(100% + 1.3px);
    height: 100%;
}

.hero-actions-combined {
    display: flex;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-glass-bar {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px) saturate(1.15);
    -webkit-backdrop-filter: blur(12px) saturate(1.15);
    border: 1px solid rgba(2, 63, 136, 0.1);
    border-radius: var(--border-radius-md);
    padding: 14px 20px;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.glass-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.glass-feature i {
    font-size: 1.3rem;
}

.glass-divider {
    width: 1px;
    height: 35px;
    background: #cbd5e1;
}

.mt-4 { margin-top: 30px; }

.btn.login-btn {
    padding: 18px 28px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 32px rgba(243, 112, 33, 0.28);
    border-radius: 12px;
}

.login-btn .arrow-icon {
    font-size: 0.75em;
    margin-left: 6px;
    transition: transform var(--transition);
}

.login-btn:hover .arrow-icon {
    transform: translateX(4px);
}

@media (min-width: 640px) {
    .btn.login-btn {
        padding: 20px 48px;
        font-size: 1.25rem;
    }
}


/* Sections */
.benefits {
    padding: 88px 0 96px;
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(2, 63, 136, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
}

.trust {
    padding: 88px 0 96px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 50%, #f8fafc 100%);
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(1.65rem, 3vw + 0.5rem, 2.5rem);
    margin-bottom: 15px;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
}

.title-underline {
    height: 4px;
    width: 60px;
    background-color: var(--primary-orange);
    margin: 0 auto;
    border-radius: 4px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.benefit-card {
    background: var(--surface-elevated);
    border-radius: var(--border-radius-md);
    padding: 26px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(2, 63, 136, 0.15), transparent 55%, rgba(243, 112, 33, 0.12));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(2, 63, 136, 0.22);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(160deg, #e0f2fe, #f0f9ff);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(2, 63, 136, 0.12);
}

.special-icon {
    background-color: #fffaf0;
    color: var(--primary-orange);
}

.benefit-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.benefit-value {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: auto;
}

.total-value-banner {
    background: linear-gradient(110deg, #fff4e6 0%, #fffbeb 45%, #fff7ed 100%);
    border: 1px solid rgba(243, 112, 33, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 22px 32px;
    margin-bottom: 60px;
    box-shadow: 0 12px 40px rgba(243, 112, 33, 0.1), var(--shadow-sm);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.gift-icon {
    font-size: 32px;
    color: var(--primary-orange);
}

.banner-text {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-text .divider {
    color: #cbd5e0;
}

/* Pillars Section Update */
.pillars-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 80px 0 40px;
}

.pillars-section-title h3 {
    font-size: 1.5rem;
    color: #2b3954;
    font-weight: 700;
}

.pillars-line {
    height: 1px;
    width: 25px;
    background-color: #cbd5e1;
}

.pillars-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pillar-card-v2 {
    display: flex;
    align-items: flex-start;
    padding: 26px 22px;
    border-radius: var(--border-radius-md);
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.pillar-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.bg-light-blue { background-color: #e4f0fa; }
.bg-light-green { background-color: #e5f6e5; }
.bg-light-purple { background-color: #f1e6fa; }

.pillar-icon {
    font-size: 40px;
    margin-top: 5px;
}

.text-blue { color: var(--primary-blue); }
.text-green { color: #22c55e; }
.text-purple { color: #a855f7; }

.pillar-content h4 {
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.pillar-list-v2 li {
    font-size: 0.8125rem;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.45;
}

.pillar-list-v2 li i {
    font-size: 0.7rem;
}
.bg-light-blue .pillar-list-v2 li i { color: var(--primary-blue); }
.bg-light-green .pillar-list-v2 li i { color: #22c55e; }
.bg-light-purple .pillar-list-v2 li i { color: #a855f7; }

/* Trust Section */
.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.85);
    margin-bottom: 50px;
    flex-wrap: nowrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 30px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-number {
    font-size: 1.85rem;
    font-family: var(--display-font);
    color: var(--primary-blue);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: var(--border-color);
}

.reviews-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    position: relative;
}

.glass-v2 {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-md);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.glass-v2:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: rgba(2, 63, 136, 0.08);
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.reviewer {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stars {
    color: #ecc94b;
    font-size: 14px;
}

.reviewer .name {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background: linear-gradient(165deg, var(--primary-blue-deep) 0%, var(--primary-blue) 48%, #044a9e 100%);
    color: rgba(255, 255, 255, 0.88);
    padding: 40px 0 36px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 100% 0%, rgba(243, 112, 33, 0.15), transparent 55%);
    pointer-events: none;
}

.flex-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 36rem;
    line-height: 1.55;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.footer-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
    border-bottom-color: rgba(243, 112, 33, 0.7);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .badges, .hero-actions {
        justify-content: center;
    }

    .floating-badge {
        display: none;
    }

    .pillars-container {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
    }

    .header-container {
        gap: 12px;
    }

    .btn-shop {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .hero-actions-combined {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-glass-bar {
        justify-content: center;
        width: 100%;
        max-width: 420px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 72px 0 100px;
    }

    .hero-bg-img {
        object-position: 70% center;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        width: 100%;
        justify-content: center;
        padding: 0;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .reviews-slider {
        grid-template-columns: 1fr;
    }

    .banner-text {
        flex-direction: column;
        gap: 5px;
    }

    .banner-text .divider {
        display: none;
    }

    .flex-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .glass-feature {
        font-size: 0.75rem;
    }

    .hero-glass-bar {
        flex-direction: column;
        gap: 14px;
    }

    .glass-divider {
        width: 48px;
        height: 1px;
    }
}
