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

:root {
    --primary-blue: #4F6EF7;
    --primary-violet: #7B5CFA;
    --primary-red: #d32127;
    --old-blue: #1d5b96;
    --bg-dark: #0a0a0f;
    --bg-dark-secondary: #0d0d1a;
    --bg-dark-tertiary: #0f0f1a;
    --text-white: #f0f0f0;
    --text-light: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.65);
    --text-subtle: rgba(255, 255, 255, 0.5);
    --text-faint: rgba(255, 255, 255, 0.4);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-light: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-white);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--bg-dark);
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 10px;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 24px;
}

.logo svg {
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:not(.btn-primary-small):hover {
    color: white;
}

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

.nav-links a:not(.btn-primary-small):hover::after {
    width: 100%;
}

.btn-primary-small {
    padding: 8px 16px;
    background: rgba(79, 110, 247, 0.15);
    color: var(--primary-blue) !important;
    border: 1px solid rgba(79, 110, 247, 0.4);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-primary-small:hover {
    background: rgba(79, 110, 247, 0.25);
    border-color: rgba(79, 110, 247, 0.6);
    transform: translateY(-1px);
}

.btn-primary-small::after {
    display: none;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0 120px 0;
    overflow: visible;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.6;
}

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

.btn-primary, .btn-secondary {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 20px rgba(79, 110, 247, 0.3);
}

.btn-primary:hover {
    background: #6b85f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(79, 110, 247, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-stats {
    font-size: 14px;
    color: var(--text-subtle);
    margin-top: 24px;
    gap: 16px;
    display: flex;
    align-items: center;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-mockup-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color-light);
    padding: 28px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(79, 110, 247, 0.2);
    transition: transform 0.3s ease;
}

.hero-mockup-card:hover {
    transform: translateY(-8px);
}

.hero-mockup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.hero-mockup-item {
    aspect-ratio: 1;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-mockup-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-mockup-item:hover::before {
    opacity: 1;
}

.platform-icon {
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-mockup-item:nth-child(1) {
    animation-delay: 0s;
}

.hero-mockup-item:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-mockup-item:nth-child(3) {
    animation-delay: 1s;
}

.hero-mockup-item:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-blue), var(--primary-violet));
    top: -300px;
    right: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-violet), var(--primary-blue));
    bottom: -200px;
    left: -200px;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.08;
    }
}

/* Fade-in Animations */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay-1 {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.fade-in-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

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

/* Section Styles */
section {
    padding: 100px 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(79, 110, 247, 0.15);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-header h2 {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Metrics Strip Section */
.metrics-strip {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    justify-content: space-around;
    padding: 48px 80px;
    gap: 40px;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric .number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.metric .label {
    font-size: 14px;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8px;
    display: block;
}

/* Products Section */
.products-section {
    background: var(--bg-dark);
    padding: 100px 80px;
}

.products-section .eyebrow {
    text-align: center;
}

.products-section h2 {
    text-align: center;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 32px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
}

.product-card:hover {
    border-color: rgba(79, 110, 247, 0.4);
    transform: translateY(-4px);
}

.product-card.coming-soon {
    opacity: 0.5;
    pointer-events: none;
}

.product-card .badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
}

.product-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.product-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Featured Product Section */
.featured-product {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
}

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

.product-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

.product-content > p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s, border-color 0.2s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(79, 110, 247, 0.3);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(79, 110, 247, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(79, 110, 247, 0.3);
}

.feature-icon svg {
    stroke: var(--primary-blue);
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #FFFFFF;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.browser-mockup {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color-light);
    border-radius: 12px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.browser-mockup:hover {
    transform: translateY(-8px);
}

.browser-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

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

.browser-dots span:nth-child(1) {
    background: #ff5f56;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #27c93f;
}

.browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

.browser-content {
    padding: 24px;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
    min-height: 300px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.social-item {
    aspect-ratio: 1;
    border-radius: 12px;
    animation: fadeIn 0.5s ease-out backwards;
}

.social-item:nth-child(1) { animation-delay: 0.1s; }
.social-item:nth-child(2) { animation-delay: 0.2s; }
.social-item:nth-child(3) { animation-delay: 0.3s; }
.social-item:nth-child(4) { animation-delay: 0.4s; }
.social-item:nth-child(5) { animation-delay: 0.5s; }
.social-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Reveal Animation System */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

button, a.btn-primary, a.btn-secondary, a.btn-primary-small {
    transition: all 0.2s ease;
}

/* About Section */
.about {
    background: var(--bg-dark-tertiary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.about-text p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 13px;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.value-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 32px;
    border-radius: 14px;
    border: 1px solid rgba(79, 110, 247, 0.2);
    transition: all 0.2s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    background: rgba(79, 110, 247, 0.08);
    border-color: rgba(79, 110, 247, 0.4);
}

.value-card .icon {
    width: 32px;
    height: 32px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.value-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: radial-gradient(ellipse at center, rgba(79, 110, 247, 0.15) 0%, var(--bg-dark) 70%);
    color: white;
    overflow: hidden;
    padding: 120px 80px;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-muted);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 16px;
}

.cta-section .btn-primary:hover {
    box-shadow: 0 0 30px rgba(79, 110, 247, 0.4);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 16px;
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 110, 247, 0.2), transparent);
    top: -300px;
    left: -200px;
}

.orb-4 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 92, 250, 0.2), transparent);
    bottom: -250px;
    right: -150px;
    animation-delay: 1s;
}

/* Footer */
.footer {
    background: #07070d;
    color: white;
    padding: 60px 80px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 15px;
}

.footer-address {
    margin-top: 24px;
}

.footer-address p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.6;
    margin: 4px 0;
}

.footer-address strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    section {
        padding: 80px 40px;
    }

    .hero {
        padding: 100px 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .product-showcase,
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .product-visual {
        order: -1;
    }

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

    .metrics-strip {
        padding: 40px 40px;
        flex-wrap: wrap;
    }

    .footer {
        padding: 60px 40px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .cta-section {
        padding: 100px 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px;
        gap: 24px;
        transition: left 0.3s ease;
        border-right: 1px solid var(--border-color);
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger span {
        background: white;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    section {
        padding: 60px 24px;
    }

    .hero {
        min-height: auto;
        padding: 80px 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .metrics-strip {
        flex-direction: column;
        gap: 32px;
        padding: 48px 24px;
    }

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

    .stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-content {
        gap: 40px;
    }

    .footer {
        padding: 60px 24px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

    .cta-section {
        padding: 80px 24px;
    }
}

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

    .hero-subtitle {
        font-size: 16px;
    }

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

    .product-content h3 {
        font-size: 28px;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }
}

/* Legal Pages Styles */
.legal-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: #f8f9fa;
    text-align: center;
}

.legal-hero-content h1 {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.legal-subtitle {
    font-size: 20px;
    color: #4a4a4a;
    font-weight: 600;
    margin-bottom: 8px;
}

.legal-date {
    font-size: 16px;
    color: #6a6a6a;
    font-style: italic;
}

.legal-content {
    padding: 80px 0 120px;
    background: #ffffff;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 0;
    box-shadow: none;
}

.legal-intro {
    padding-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 40px;
}

.legal-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 16px;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2a2a2a;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 12px;
}

.legal-section a {
    color: #4F6EF7;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(79, 110, 247, 0.3);
}

.legal-section a:hover {
    color: #3a56d4;
    border-bottom-color: #3a56d4;
}

.legal-intro a {
    color: #4F6EF7;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(79, 110, 247, 0.3);
}

.legal-intro a:hover {
    color: #3a56d4;
    border-bottom-color: #3a56d4;
}

.legal-intro strong {
    color: #1a1a1a;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.legal-footer p {
    font-size: 14px;
    color: #6a6a6a;
    line-height: 1.8;
}

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

.legal-footer a:hover {
    color: #3a56d4;
}

@media (max-width: 768px) {
    .legal-hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .legal-document {
        padding: 40px 24px;
        border-radius: 12px;
    }

    .legal-section h2 {
        font-size: 24px;
    }

    .legal-section h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .legal-hero-content h1 {
        font-size: 32px;
    }

    .legal-subtitle {
        font-size: 18px;
    }

    .legal-date {
        font-size: 14px;
    }

    .legal-document {
        padding: 32px 20px;
    }
}
