:root {
    --brand-blue: #2F3069;
    --brand-blue-dark: #1E1F44;
    --brand-blue-light: #EBEBFF;
    --brand-blue-soft: #F5F7FF;
    --white: #ffffff;
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --border-soft: #E5E7EB;
    --accent-blue: #3B82F6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--brand-blue);
    font-weight: 800;
    line-height: 1.2;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.4rem; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-blue);
    background: var(--brand-blue-light);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    animation: labelFloat 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.section-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

.sparkle-icon {
    color: var(--accent-blue);
    animation: sparkleScale 1.5s ease-in-out infinite;
}

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

@keyframes shimmer {
    0% { left: -100%; }
    20%, 100% { left: 200%; }
}

@keyframes sparkleScale {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.3) rotate(15deg); opacity: 0.7; }
}

/* Header & Nav - Mobile First */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border-soft);
    padding: 0.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 38px;
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    color: var(--brand-blue);
    cursor: pointer;
    border-radius: 8px;
    background: var(--brand-blue-soft);
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.nav-links {
    position: fixed;
    top: 64px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 64px);
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    z-index: 999;
}

.nav-links.active {
    left: 0;
}

.nav-links li {
    margin: 1.5rem 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    display: block;
}

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

.header-actions {
    display: none;
}

.mobile-only {
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--brand-blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(47, 48, 105, 0.2);
}

.btn-primary:hover {
    background: var(--brand-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 48, 105, 0.3);
}

/* Hero Section - Mobile */
.hero {
    padding: 3rem 0;
    text-align: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.hero p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.app-switcher {
    display: inline-flex;
    background: var(--brand-blue-light);
    padding: 4px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.switcher-tab {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--brand-blue);
}

.switcher-tab.active {
    background: var(--brand-blue);
    color: var(--white);
}

.download-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.badge-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    text-decoration: none;
    width: auto;
    min-width: 155px;
    transition: all 0.3s ease;
}

.badge-card:hover {
    border-color: var(--accent-blue);
    background: var(--brand-blue-soft);
    transform: translateY(-2px);
}

.badge-card i {
    font-size: 1.25rem;
    color: var(--brand-blue);
}

.badge-text span {
    display: block;
    font-size: 0.6rem;
    color: var(--text-muted);
    line-height: 1;
}

.badge-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--brand-blue);
    line-height: 1.2;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 2px;
}

.star-rating i {
    font-size: 0.65rem !important;
    color: #FBBF24 !important;
}

.star-rating span {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-left: 2px;
}

/* Hand-drawn Underline */
.highlight-container {
    position: relative;
    display: inline-block;
    color: var(--accent-blue);
}

.highlight-container svg {
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: -1;
}

.highlight-path {
    fill: none;
    stroke: var(--accent-blue);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 0.8s ease forwards 0.5s;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-container img {
    max-height: 400px;
    filter: drop-shadow(0 20px 40px rgba(47, 48, 105, 0.15));
}

/* Stats Row - Mobile */
.stats-row {
    padding: 3rem 0;
    background: var(--brand-blue);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: center;
}

.stats-row h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.stats-row span {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Solutions Grid - Mobile */
.solutions-section {
    padding: 4rem 0;
    background: var(--brand-blue-soft);
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.solution-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
}

.solution-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--brand-blue);
    margin-bottom: 1.25rem;
}

/* How It Works - Mobile */
.how-it-works {
    padding: 4rem 0;
    position: relative;
}

.step-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon-box {
    width: 60px;
    height: 60px;
    background: var(--brand-blue);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(47, 48, 105, 0.2);
    position: relative;
}

.step-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Connecting Lines for Desktop */
@media (min-width: 1024px) {
    .step-grid::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: var(--brand-blue-light);
        z-index: 1;
    }

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

/* Why Choose Section - Mobile */
.why-choose {
    padding: 4rem 0;
    background: var(--brand-blue-dark);
    color: var(--white);
    overflow: hidden;
}

.why-choose h2 { color: var(--white); font-size: 2rem; margin-bottom: 1rem; }

.why-choose-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.app-mockup-center { order: -1; text-align: center; }
.app-mockup-center img { max-height: 350px; margin: 0 auto; }

.feature-column { display: flex; flex-direction: column; gap: 2rem; }
.feature-item { display: flex; gap: 1rem; text-align: left; }
.feature-icon-box {
    width: 44px; height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--accent-blue);
}

.feature-content h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.4rem; }
.feature-content p { font-size: 0.9rem; opacity: 0.7; }

/* Testimonials - Carousel */
.testimonials {
    padding: 4rem 0;
    background: var(--brand-blue-soft);
    overflow: hidden;
}

.testimonial-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-blue-light);
    cursor: pointer;
    transition: 0.3s;
}

.indicator.active {
    width: 24px;
    border-radius: 10px;
    background: var(--brand-blue);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

/* Contact - Mobile */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-card {
    background: var(--brand-blue-soft);
    padding: 1.5rem;
    border-radius: 20px;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 700; font-size: 0.8rem; margin-bottom: 0.4rem; color: var(--brand-blue); }
.form-group input, .form-group textarea { width: 100%; padding: 0.8rem; border: none; border-radius: 10px; background: var(--white); font-family: inherit; }

.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.info-card { display: flex; gap: 1rem; padding: 1.25rem; background: var(--white); border: 1px solid var(--border-soft); border-radius: 12px; text-decoration: none; }
.info-icon { width: 40px; height: 40px; background: var(--brand-blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--brand-blue); flex-shrink: 0; }
.info-content h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.info-content p { font-weight: 700; color: var(--accent-blue); font-size: 1rem; }
.info-content span { font-size: 0.75rem; color: var(--text-muted); }

/* Footer - Pro Redesign */
footer {
    background: var(--brand-blue-dark);
    color: var(--white);
    padding: 6rem 0 3rem;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand img {
    height: 42px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-legal-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.footer-right-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .footer-links-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-right-info {
        text-align: right;
        align-items: flex-end;
    }
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

@media (min-width: 768px) {
    .footer-links-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: 1.2fr 2.8fr;
        gap: 6rem;
    }
}

.contact-item { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; align-items: flex-start; }
.contact-item i { color: var(--accent-blue); margin-top: 4px; }

.social-links { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-icon { width: 38px; height: 38px; background: rgba(255, 255, 255, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: 0.3s; }
.social-icon:hover {
    background: var(--white);
    color: var(--brand-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* --- TABLET UP (768px+) --- */
@media (min-width: 768px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }

    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .step-grid { grid-template-columns: repeat(2, 1fr); }

    .download-badges { flex-direction: row; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* --- DESKTOP UP (1024px+) --- */
@media (min-width: 1024px) {
    h1 { font-size: 3.5rem; line-height: 1.1; }
    h2 { font-size: 2.75rem; }
    .container { padding: 0 3rem; }

    header { padding: 0.4rem 0; }
    .logo-container img { height: 38px; }
    .nav-links {
        position: static;
        height: auto;
        width: auto;
        display: flex !important;
        flex-direction: row;
        padding: 0;
        background: transparent;
        gap: 2.5rem;
        list-style: none;
        left: auto;
    }
    .nav-links li {
        margin: 0;
    }
    .nav-links a { font-size: 0.9rem; opacity: 1; font-weight: 600; color: var(--text-main); }
    .nav-links a:hover { opacity: 1; color: var(--brand-blue); }
    .header-actions { display: block; }
    .mobile-only { display: none; }

    .hero { padding: 4rem 0; text-align: left; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding-top: 0; }
    .hero-content { margin-top: 0; }
    .hero p { font-size: 1.15rem; max-width: 550px; margin-left: 0; }
    .download-badges { justify-content: flex-start; gap: 1.5rem; }
    .hero-image-container img { max-height: 550px; }

    .solutions-section, .why-choose, .testimonials, .contact-section, .legal-section { padding: 8rem 0; }
    .solutions-grid { gap: 2.5rem; }
    .solution-card { padding: 3.5rem; border-radius: 32px; }

    .why-choose h2 { font-size: 3.25rem; }
    .solutions-section h2 { font-size: 3.25rem; }

    .why-choose-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 4rem; }
    .app-mockup-center { order: 0; }
    .app-mockup-center img { max-height: 600px; }
    .feature-item.reverse { flex-direction: row-reverse; text-align: right; }
    .feature-column { gap: 4rem; }

    .step-grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; }
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .contact-grid { grid-template-columns: 1.2fr 0.8fr; gap: 4rem; }

    footer { padding: 8rem 0 3rem; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* Pricing Calculator Styles */
.calculator-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    max-width: 500px;
    margin: 0 auto 4rem;
}

.calculator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calculator-header label {
    font-weight: 800;
    color: var(--brand-blue);
    font-size: 1.1rem;
}

.bed-display-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--brand-blue-soft);
    padding: 0.5rem 1rem;
    border-radius: 12px;
}

#bed-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-blue);
}

.edit-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    padding: 4px;
}

.edit-btn:hover {
    color: var(--accent-blue);
    transform: scale(1.1);
}

.slider-container {
    margin-bottom: 1rem;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: var(--brand-blue-light);
    outline: none;
    margin: 1.5rem 0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand-blue);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(47, 48, 105, 0.3);
    transition: 0.3s;
    border: 4px solid var(--white);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--accent-blue);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.manual-input-container {
    animation: fadeIn 0.3s ease;
}

.btn-text {
    background: none;
    border: none;
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 1rem;
    width: 100%;
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--brand-blue);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-blue);
}

.input-with-icon input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid var(--brand-blue-soft);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.3s;
}

.input-with-icon input:focus {
    border-color: var(--accent-blue);
    outline: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plan-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-soft);
    transition: 0.3s;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.plan-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.plan-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.plan-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-total {
    background: var(--brand-blue-soft);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.total-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.total-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-blue);
}

.savings-badge {
    background: #DCFCE7;
    color: #166534;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 1rem;
    display: inline-block;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
}

.legal-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}
.reveal.active { opacity: 1; transform: translateY(0); }

@keyframes floating { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.floating { animation: floating 4s ease-in-out infinite; }

.animate-up { animation: fadeInUp 0.8s ease forwards; opacity: 0; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.confetti-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.confetti-line { position: absolute; background: var(--brand-blue); opacity: 0.15; border-radius: 100px; }
.line-1 { width: 60px; height: 4px; top: 20%; left: 10%; transform: rotate(45deg); animation: float-line 4s ease-in-out infinite; --rot: 45deg; }
.line-2 { width: 40px; height: 3px; top: 70%; right: 15%; transform: rotate(-30deg); animation: float-line 5s ease-in-out infinite reverse; --rot: -30deg; }
.line-3 { width: 80px; height: 2px; bottom: 20%; left: 20%; transform: rotate(15deg); animation: float-line 6s ease-in-out infinite; --rot: 15deg; }
.line-4 { width: 30px; height: 5px; top: 40%; right: 5%; transform: rotate(60deg); animation: float-line 4.5s ease-in-out infinite; --rot: 60deg; }

@keyframes float-line { 0%, 100% { transform: translate(0, 0) rotate(var(--rot)); } 50% { transform: translate(15px, -15px) rotate(var(--rot)); } }

/* Blog Section Styles */
.blog-section {
    padding: 4rem 0;
}

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

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--accent-blue);
}

.blog-image {
    height: 200px;
    background: var(--brand-blue-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--brand-blue-light);
    color: var(--brand-blue);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    width: fit-content;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--brand-blue);
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    margin-top: auto;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link:hover {
    gap: 0.75rem;
}

/* Article Page Styles */
.article-header {
    padding: 6rem 0 3rem;
    background: var(--brand-blue-soft);
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.article-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1.25rem;
}

.article-content h2 {
    margin: 2.5rem 0 1.25rem;
    font-size: 1.75rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content ul, .article-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.article-cta {
    background: var(--brand-blue);
    color: var(--white);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    margin-top: 4rem;
}

.article-cta h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.article-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* FAQ Styles */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] {
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
}

.faq-item summary {
    padding: 1.5rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--brand-blue);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    user-select: none;
}

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

.faq-item summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent-blue);
    background: var(--brand-blue-soft);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    background: var(--accent-blue);
    color: var(--white);
}

.faq-item p {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    animation: fadeInDown 0.4s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
