:root {
    --primary-teal: #00a19c;
    --dark-teal: #008b87;
    --light-teal: #e0f7f6;
    --accent-yellow: #ffc107;
    --text-dark: #0a0a0a;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px rgba(0,0,0,0.15);
    --gradient-teal: linear-gradient(135deg, #00a19c 0%, #008b87 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background: var(--accent-yellow);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-teal);
}

.nav-cta {
    display: flex;
}

.btn-nav {
    background: var(--primary-teal);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    margin-top: 60px;
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--white) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--light-teal);
    color: var(--primary-teal);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-teal);
    margin-bottom: 0.25rem;
}

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

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-teal);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-showcase {
    position: relative;
    width: 400px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yb-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0,161,156,0.3));
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.6s;
    animation: cardFloat 4s ease-in-out infinite;
}

.card-showcase:hover .yb-card-image {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

.card-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0,161,156,0.2) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    z-index: -1;
    animation: glow 3s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotateY(-5deg) rotateX(5deg); }
    50% { transform: translateY(-10px) rotateY(-5deg) rotateX(5deg); }
}

@keyframes glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-icon {
    position: absolute;
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

.icon-1 {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.icon-2 {
    bottom: -20px;
    left: -30px;
    animation-delay: 1s;
}

.icon-3 {
    top: 50%;
    right: -60px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-teal);
    background: var(--white);
}

.main-feature {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--light-teal) 0%, var(--bg-light) 100%);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gradient-icon {
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.feature-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: var(--primary-teal);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Voice Solution Section */
.voice-solution {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
}

.voice-subtitle {
    text-align: center;
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
    color: var(--text-dark);
}

/* Evolution Showcase */
.evolution-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
}

.evolution-card {
    flex: 1;
    max-width: 400px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.evolution-card:hover {
    transform: translateY(-10px);
}

.evolution-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.evolution-label {
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    background: var(--bg-light);
}

.evolution-card.old .evolution-label {
    color: var(--text-light);
}

.evolution-card.new .evolution-label {
    background: var(--light-teal);
    color: var(--primary-teal);
}

.evolution-issues,
.evolution-benefits {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
}

.evolution-issues li,
.evolution-benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 25px;
}

.evolution-issues li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
}

.evolution-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
}

.evolution-arrow {
    font-size: 3rem;
    color: var(--primary-teal);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Voice Features Grid */
.voice-features {
    margin: 4rem 0;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.voice-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.voice-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-lg);
}

.voice-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: var(--light-teal);
    border-radius: 50%;
}

.voice-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.voice-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Voice Benefits Section */
.voice-benefits {
    margin-top: 4rem;
}

.benefit-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.benefit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-content {
    padding: 3rem;
}

.benefit-content h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-check {
    color: var(--primary-teal);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* How It Works */
.how {
    padding: 80px 0;
    background: var(--bg-light);
}

.steps-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--primary-teal);
    margin: 0 1rem;
    margin-bottom: 4rem;
}

/* Product Showcase */
.product-showcase {
    padding: 80px 0;
    background: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.showcase-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.showcase-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.showcase-item .check {
    color: var(--primary-teal);
    font-size: 1.5rem;
    font-weight: bold;
}

.showcase-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.showcase-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Phone Mockup */
.phone-mockup {
    width: 320px;
    height: 640px;
    background: var(--text-dark);
    border-radius: 40px;
    padding: 10px;
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 30px;
    padding: 20px;
    overflow: hidden;
}

.app-header {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-teal);
}

.balance-card {
    background: var(--gradient-teal);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.balance-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.balance-card h2 {
    font-size: 2rem;
}

.quick-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.action {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.recent-transactions {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
}

.recent-transactions p {
    font-weight: 600;
    margin-bottom: 10px;
}

.transaction {
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Schools Section */
.schools {
    padding: 80px 0;
    background: var(--bg-light);
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.school-stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid transparent;
}

.school-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.school-stat-card.highlight {
    background: var(--gradient-teal);
    color: var(--white);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.school-stat-card.highlight .stat-value {
    color: var(--white);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.school-stat-card.highlight .stat-label {
    color: var(--white);
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.school-stat-card.highlight .stat-description {
    color: rgba(255, 255, 255, 0.9);
}

/* School Benefits Section */
.school-benefits-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.benefits-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.school-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.benefits-content h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.benefit-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--light-teal);
    color: var(--primary-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.benefit-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-text p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Schools CTA */
.schools-cta {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.schools-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.schools-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: var(--primary-teal);
    font-weight: 600;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--white);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--primary-teal);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-light);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.period {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-section {
    margin-bottom: 2rem;
}

.pricing-section h4,
.coming-soon h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-teal);
}

.coming-soon {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.coming-soon h4 {
    color: var(--primary-teal);
    border-bottom-color: var(--primary-teal);
}

.pricing-item.upcoming {
    opacity: 0.8;
}

.pricing-item .soon {
    font-size: 1rem;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.pricing-item .check {
    color: var(--primary-teal);
    font-size: 1.2rem;
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
    width: 100%;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-teal);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-white {
    background: var(--white);
    color: var(--primary-teal);
}

.btn-white:hover {
    background: var(--bg-light);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-teal);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--white);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #999;
}

.company-info {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--primary-teal) !important;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: #999;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-teal);
}

.footer-contact p {
    color: #999;
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-teal);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .hero-visual {
        margin-top: 3rem;
    }

    .card-showcase {
        width: 320px;
        height: 200px;
    }

    .yb-card-image {
        width: 100%;
        height: auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .main-feature {
        grid-column: 1;
    }

    .steps-timeline {
        flex-direction: column;
    }

    .step-line {
        width: 2px;
        height: 60px;
        margin: 1rem 0;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .schools-grid {
        grid-template-columns: 1fr 1fr;
    }

    .school-benefits-section {
        grid-template-columns: 1fr;
    }

    .benefits-visual {
        margin-bottom: 2rem;
    }

    /* Voice Solution Responsive */
    .evolution-showcase {
        flex-direction: column;
        padding: 1rem;
    }

    .evolution-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .voice-grid {
        grid-template-columns: 1fr;
    }

    .benefit-highlight {
        grid-template-columns: 1fr;
    }

    .benefit-content {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}