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

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --dark-bg: #0a0e27;
    --card-bg: rgba(255, 255, 255, 0.95);
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --accent-color: #667eea;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2a2f4a 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated background gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 15s ease infinite;
}

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

/* Header Styles */
header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(10, 14, 39, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0 4rem;
    color: white;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease 0.4s forwards;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 4rem 0;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.platform-showcase {
    margin-top: 2rem;
    padding: 3rem;
    background: rgba(14, 23, 52, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(5, 6, 22, 0.45);
    color: white;
    position: relative;
    overflow: hidden;
}

.platform-showcase::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 23px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #c7d2fe;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.4rem 1.2rem;
}

.showcase-title {
    font-size: 2.5rem;
    margin-top: 1rem;
    font-weight: 700;
    color: #fff;
}

.showcase-subtitle {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 720px;
}

.showcase-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.showcase-tabs button {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-tabs button:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.showcase-tabs button.is-active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.35);
}

.showcase-panels {
    display: grid;
    gap: 1.5rem;
}

.showcase-panel {
    background: rgba(9, 11, 31, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.showcase-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.showcase-panel ul {
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.showcase-panel li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-left: 1rem;
}

.showcase-panel li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a78bfa;
    position: absolute;
    top: 0.6rem;
    left: 0;
    box-shadow: 0 0 10px rgba(167, 139, 250, 0.8);
}

.pricing-surface {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1.5rem 3rem;
    color: white;
}

.pricing-hero {
    position: relative;
    padding: 3.5rem;
    border-radius: 32px;
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.35), transparent 55%),
                radial-gradient(circle at 80% 0%, rgba(236, 72, 153, 0.25), transparent 60%),
                rgba(12, 15, 38, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(5, 6, 22, 0.45);
    overflow: hidden;
    margin-bottom: 3rem;
}

.pricing-hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 60%);
    filter: blur(60px);
    z-index: 0;
}

.pricing-hero > * {
    position: relative;
    z-index: 1;
}

.pricing-hero__eyebrow {
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: rgba(226, 232, 240, 0.7);
    margin-bottom: 1rem;
}

.pricing-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-hero__subtitle {
    color: rgba(226, 232, 240, 0.9);
    max-width: 620px;
    font-size: 1.15rem;
}

.pricing-hero__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.metric-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(226, 232, 240, 0.6);
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
}

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

.pricing-section__pill {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.pricing-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-section p {
    color: rgba(226, 232, 240, 0.85);
    max-width: 640px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.pricing-card--featured {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.15), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(99, 102, 241, 0.5);
    box-shadow: 0 30px 80px rgba(79, 70, 229, 0.35);
}

.pricing-card__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #4338ca;
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-card__header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-card__header p {
    color: #475569;
    margin-top: 0.3rem;
}

.pricing-card__price {
    display: grid;
    gap: 1rem;
}

.pricing-card__price span {
    font-size: 2.5rem;
    font-weight: 800;
}

.pricing-card__price small {
    display: block;
    color: #475569;
    font-size: 0.9rem;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: #1e293b;
}

.pricing-card__features li {
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card__features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

.pricing-card__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.pricing-card__footnote {
    font-size: 0.85rem;
    color: #334155;
    border-top: 1px solid rgba(15, 23, 42, 0.15);
    padding-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.pricing-panel {
    background: rgba(13, 17, 35, 0.85);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(5, 6, 22, 0.35);
}

.pricing-panel h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.pricing-panel__price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-panel__price span {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.8);
    margin-left: 0.4rem;
}

.pricing-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(226, 232, 240, 0.85);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-cta {
    margin-top: 2rem;
    padding: 3rem;
    border-radius: 32px;
    background: linear-gradient(135deg, #4338ca, #7c3aed);
    box-shadow: 0 30px 80px rgba(67, 56, 202, 0.45);
    text-align: center;
}

.pricing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pricing-cta p {
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 1.5rem;
}

.pricing-cta__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pricing-cta__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    color: #1f2937;
    background: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-cta__actions a.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
}

.pricing-cta__actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

.pricing-faq {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pricing-faq__item {
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.pricing-faq__item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Service Cards */
.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:nth-child(1) { animation-delay: 0.8s; }
.service-card:nth-child(2) { animation-delay: 1s; }
.service-card:nth-child(3) { animation-delay: 1.2s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.service-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Page Headers */
.page-header {
    text-align: center;
    padding: 2rem 0 3rem;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Content Sections */
.services-detail,
.about-content,
.contact-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-card {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-card h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-detail-card ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.service-detail-card li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

/* Contact Info */
.contact-info {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    nav {
        padding: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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

    .service-card {
        padding: 2rem;
    }

    main {
        padding: 5rem 1rem 2rem;
    }

    .services h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-links {
        gap: 1rem;
    }
}

/* Utility Classes */
.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

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

/* BRF Hero Section */
.brf-hero {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.brf-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.brf-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.brf-hero-text {
    color: white;
}

.brf-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a5b4fc;
    margin-bottom: 1rem;
}

.brf-hero-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brf-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.brf-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    max-width: 500px;
}

.brf-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.brf-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.feature-icon {
    font-size: 1.25rem;
}

.brf-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.brf-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.brf-cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* BRF Hero Visual */
.brf-hero-visual {
    position: relative;
}

.brf-avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.brf-avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4);
    position: relative;
    z-index: 2;
}

.brf-emoji {
    font-size: 3.5rem;
}

.brf-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* Chat Preview */
.brf-chat-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    animation: fadeInMessage 0.5s ease-out forwards;
    opacity: 0;
}

.preview-message:nth-child(1) { animation-delay: 0.5s; }
.preview-message:nth-child(2) { animation-delay: 1.5s; }
.preview-message:nth-child(3) { animation-delay: 2.5s; }

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

.preview-message.user-msg {
    flex-direction: row-reverse;
}

.preview-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.preview-text {
    padding: 0.75rem 1rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 280px;
}

.brf-msg .preview-text {
    background: rgba(99, 102, 241, 0.2);
    color: rgba(255, 255, 255, 0.9);
    border-bottom-left-radius: 4px;
}

.user-msg .preview-text {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    border-bottom-right-radius: 4px;
}

/* Responsive BRF Hero */
@media (max-width: 968px) {
    .brf-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .brf-hero-text h2 {
        font-size: 2.5rem;
    }

    .brf-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .brf-features {
        align-items: center;
    }

    .brf-hero-visual {
        order: -1;
    }

    .brf-avatar-container {
        width: 100px;
        height: 100px;
    }

    .brf-emoji {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .brf-hero {
        padding: 2rem 0;
    }

    .brf-hero-text h2 {
        font-size: 2rem;
    }

    .brf-tagline {
        font-size: 1.2rem;
    }

    .brf-description {
        font-size: 1rem;
    }

    .preview-text {
        font-size: 0.8rem;
        max-width: 200px;
    }
}

/* Partner Logos Section */
.partner-logos {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 2rem;
}

.partner-logos__label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.partner-logos__strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.partner-logo-item {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
    cursor: default;
}

.partner-logo-item:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.partner-logo-item svg {
    width: 100%;
    height: 100%;
}

.partner-logos__link {
    color: #818cf8;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: color 0.2s ease;
}

.partner-logos__link:hover {
    color: #a5b4fc;
}

.partner-logos__link::after {
    content: '→';
}

@media (max-width: 600px) {
    .partner-logos__strip {
        gap: 1.5rem;
    }

    .partner-logo-item {
        width: 40px;
        height: 40px;
    }
}

/* ================================================
   NEW LANDING PAGE STYLES - Investor-Ready Hero
   ================================================ */

/* Primary Hero Section */
.hero-primary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0 3rem;
    min-height: 70vh;
}

.hero-primary__content {
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a5b4fc;
    margin-bottom: 1.5rem;
}

.hero-primary h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    max-width: 540px;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.cta-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-primary:hover svg {
    transform: translateX(4px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-secondary svg {
    width: 18px;
    height: 18px;
}

.cta-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #a5b4fc;
    letter-spacing: 0.05em;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Demo Video Container */
.demo-video-container {
    position: relative;
}

.demo-video-placeholder {
    position: relative;
    display: block;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16/10;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-video-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 100px rgba(99, 102, 241, 0.3);
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.5);
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    width: 32px;
    height: 32px;
    color: white;
    margin-left: 4px;
}

.video-label {
    margin-top: 1rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Video Preview (Animated Chat) */
.video-preview {
    padding: 1.5rem;
    height: 100%;
}

.preview-app {
    height: 100%;
    background: rgba(10, 14, 30, 0.8);
    border-radius: 16px;
    overflow: hidden;
}

.preview-header {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 0.5rem;
}

.preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.preview-dot:first-child { background: #ff5f57; }
.preview-dot:nth-child(2) { background: #febc2e; }
.preview-dot:nth-child(3) { background: #28c840; }

.preview-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.preview-chat-bubble {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    animation: fadeInMessage 0.5s ease-out forwards;
    opacity: 0;
}

.preview-chat-bubble:nth-child(1) { animation-delay: 0.3s; }
.preview-chat-bubble:nth-child(2) { animation-delay: 1s; }
.preview-chat-bubble:nth-child(3) { animation-delay: 1.7s; }

.preview-chat-bubble.user {
    flex-direction: row-reverse;
}

.bubble-avatar {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.bubble-text {
    padding: 0.6rem 0.9rem;
    border-radius: 12px;
    font-size: 0.8rem;
    line-height: 1.4;
    max-width: 220px;
}

.preview-chat-bubble.brf .bubble-text {
    background: rgba(99, 102, 241, 0.25);
    color: rgba(255, 255, 255, 0.9);
}

.preview-chat-bubble.user .bubble-text {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

/* Preview Header with Title */
.preview-header {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.preview-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

/* Typing Indicator */
.typing-indicator {
    display: inline-flex;
    gap: 3px;
    margin-left: 4px;
    vertical-align: middle;
}

.typing-indicator span {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
.typing-indicator span:nth-child(3) { animation-delay: 0s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Preview Input */
.preview-input {
    margin: 0.75rem 1rem 1rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.preview-input__text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.preview-input__icon {
    color: #8b5cf6;
    font-weight: bold;
}

/* Trust Bar */
.trust-bar {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-bar__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.trust-logo {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.trust-logo:hover {
    color: rgba(255, 255, 255, 0.6);
}

.trust-logo svg {
    width: 100%;
    height: 100%;
}

.trust-logo-text {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.trust-logo-text:hover {
    color: rgba(255, 255, 255, 0.7);
}

.trust-logo-img {
    height: 32px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.trust-logo-img img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.trust-logo-img:hover img {
    filter: grayscale(0%);
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #818cf8;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.step-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* BRF Features Section */
.brf-features-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
    border-radius: 32px;
    margin: 2rem 0;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.features-text {
    color: white;
}

.features-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.features-list li svg {
    width: 20px;
    height: 20px;
    color: #4ade80;
    flex-shrink: 0;
    margin-top: 2px;
}

.features-list li strong {
    color: white;
}

/* Chat Demo */
.chat-demo {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.chat-message.user-message {
    flex-direction: row-reverse;
}

.chat-avatar {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.chat-bubble {
    padding: 0.9rem 1.1rem;
    border-radius: 16px;
    max-width: 280px;
}

.chat-bubble p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.brf-message .chat-bubble {
    background: rgba(99, 102, 241, 0.2);
    color: rgba(255, 255, 255, 0.9);
    border-bottom-left-radius: 4px;
}

.user-message .chat-bubble {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-bottom-right-radius: 4px;
}

/* Platform Overview */
.platform-overview {
    padding: 5rem 0;
}

.platform-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.platform-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.platform-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.platform-link {
    color: #818cf8;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.platform-link:hover {
    color: #a5b4fc;
}

/* Pricing Preview */
.pricing-preview {
    padding: 5rem 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    overflow: visible;
    padding-top: 1rem;
}

.pricing-preview .pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    color: white;
}

.pricing-preview .pricing-card.featured {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.15), rgba(255, 255, 255, 0.03));
    border-color: rgba(99, 102, 241, 0.4);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-preview .pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-preview .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.pricing-preview .price span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-preview .pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.pricing-preview .pricing-card li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-preview .pricing-card li:last-child {
    border-bottom: none;
}

.pricing-preview .pricing-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-preview .pricing-card.featured .pricing-cta {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: transparent;
}

.pricing-preview .pricing-cta:hover {
    background: rgba(255, 255, 255, 0.15);
}

.pricing-preview .pricing-card.featured .pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* Final CTA */
.final-cta {
    padding: 5rem 2rem;
    margin: 3rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    border-radius: 32px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    text-align: center;
}

.final-cta__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.final-cta__content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.final-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive - New Landing Page */
@media (max-width: 1024px) {
    .hero-primary {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-primary h1 {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto 2rem;
    }

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

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

    .hero-primary__visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-text {
        text-align: center;
    }

    .features-list {
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .features-list li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero-primary h1 {
        font-size: 2.25rem;
    }

    .steps-grid,
    .platform-cards,
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .trust-bar__content {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .final-cta__content h2 {
        font-size: 2rem;
    }

    .features-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-primary h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-primary,
    .cta-secondary {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button svg {
        width: 24px;
        height: 24px;
    }
}
