:root {
    --background: #ffffff;
    --foreground: #0a0a0a;
    --muted: #f5f5f5;
    --muted-foreground: #737373;
    --border: #e5e5e5;
    --accent: #F87630;
    --accent-foreground: #ffffff;
    --secondary: #f5f5f5;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
}

.navbar-content {
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--foreground);
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), #fb923c);
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 600;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--foreground);
    background-color: var(--secondary);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
}

.btn-ghost:hover {
    background: var(--secondary);
}

.btn-hero {
    background: linear-gradient(135deg, var(--accent), #fb923c);
    color: var(--accent-foreground);
    box-shadow: 0 10px 30px -10px rgba(248, 118, 48, 0.3);
}

.btn-hero:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 40px -10px rgba(248, 118, 48, 0.4);
}

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

.btn-outline:hover {
    background: var(--secondary);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #fb923c);
    color: var(--accent-foreground);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 64px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(248, 118, 48, 0.08), transparent);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.6s ease-out;
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.badge-text {
    color: var(--muted-foreground);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    animation: slideUp 0.6s ease-out 0.1s both;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.hero h1 span {
    display: block;
    background: linear-gradient(to right, var(--accent), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2rem;
    animation: slideUp 0.6s ease-out 0.2s both;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideUp 0.6s ease-out 0.3s both;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-stats {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    animation: slideUp 0.6s ease-out 0.4s both;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: rgba(245, 245, 245, 0.3);
}

.section-header {
    max-width: 42rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

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

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

.feature-card {
    position: relative;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: var(--background);
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(248, 118, 48, 0.2);
}

.feature-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--secondary);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent), #fb923c);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--foreground);
    transition: color 0.3s;
}

.feature-card:hover .feature-icon svg {
    color: var(--accent-foreground);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Features List - Alternating Layout */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(248, 118, 48, 0.1) 0%, rgba(251, 146, 60, 0.15) 100%);
    flex-shrink: 0;
    transition: all 0.3s;
}

.feature-icon-large svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon-large {
    background: linear-gradient(135deg, var(--accent), #fb923c);
    box-shadow: 0 10px 30px rgba(248, 118, 48, 0.3);
}

.feature-item:hover .feature-icon-large svg {
    color: white;
    transform: scale(1.1);
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.feature-content p {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Responsive for Features List */
@media (max-width: 768px) {
    .features-list {
        gap: 2rem;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .feature-icon-large {
        width: 64px;
        height: 64px;
        margin: 0 auto;
    }

    .feature-icon-large svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 640px) {
    .features-list {
        gap: 1.5rem;
    }

    .feature-icon-large {
        width: 56px;
        height: 56px;
    }

    .feature-content h3 {
        font-size: 1.125rem;
    }

    .feature-content p {
        font-size: 0.9375rem;
    }
}

/* Features Compact Grid - 2 Column Layout */
.features-compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-compact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon-medium {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(248, 118, 48, 0.1) 0%, rgba(251, 146, 60, 0.15) 100%);
    flex-shrink: 0;
    transition: all 0.3s;
}

.feature-icon-medium svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
    transition: all 0.3s;
}

.feature-compact:hover .feature-icon-medium {
    background: linear-gradient(135deg, var(--accent), #fb923c);
    box-shadow: 0 8px 20px rgba(248, 118, 48, 0.25);
    transform: translateY(-2px);
}

.feature-compact:hover .feature-icon-medium svg {
    color: white;
    transform: scale(1.1);
}

.feature-compact h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: var(--foreground);
}

.feature-compact p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Responsive for Compact Grid */
@media (max-width: 768px) {
    .features-compact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .features-compact-grid {
        gap: 1.25rem;
    }

    .feature-compact {
        gap: 0.75rem;
    }

    .feature-icon-medium {
        width: 48px;
        height: 48px;
    }

    .feature-icon-medium svg {
        width: 24px;
        height: 24px;
    }

    .feature-compact h3 {
        font-size: 1rem;
    }

    .feature-compact p {
        font-size: 0.875rem;
    }
}

/* Feature Tabs - Interactive Layout */
.feature-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tab-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s;
}

.tab-btn:hover {
    border-color: rgba(248, 118, 48, 0.3);
    background: rgba(248, 118, 48, 0.05);
    color: var(--foreground);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--accent), #fb923c);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(248, 118, 48, 0.3);
}

.tab-btn.active svg {
    color: white;
}

.tab-content-wrapper {
    position: relative;
    min-height: 300px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
}

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

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

.tab-feature:hover {
    border-color: rgba(248, 118, 48, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.tab-feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(248, 118, 48, 0.1) 0%, rgba(251, 146, 60, 0.15) 100%);
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.tab-feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    transition: all 0.3s;
}

.tab-feature:hover .tab-feature-icon {
    background: linear-gradient(135deg, var(--accent), #fb923c);
    box-shadow: 0 8px 20px rgba(248, 118, 48, 0.3);
}

.tab-feature:hover .tab-feature-icon svg {
    color: white;
    transform: scale(1.1);
}

.tab-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.tab-feature p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Responsive for Tabs */
@media (max-width: 768px) {
    .tab-nav {
        gap: 0.75rem;
    }

    .tab-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .tab-btn svg {
        width: 18px;
        height: 18px;
    }

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

    .tab-feature {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .tab-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .tab-feature-icon {
        width: 56px;
        height: 56px;
    }

    .tab-feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .tab-feature h3 {
        font-size: 1.125rem;
    }
}

/* Newsletter Section */
.newsletter {
    padding: 6rem 0;
}

.newsletter-content {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .newsletter h2 {
        font-size: 2.25rem;
    }
}

.newsletter>div>p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 28rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
        gap: 1rem;
    }
}

.newsletter-form input {
    flex: 1;
    height: 48px;
    padding: 0 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input:focus {
    border-color: var(--accent);
}

.newsletter-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--foreground);
    color: var(--background);
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta h2 {
        font-size: 3rem;
    }
}

.cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 36rem;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--background);
}

.cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    background: rgba(245, 245, 245, 0.3);
}

.footer-content {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

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

.footer-brand p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

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

.social-links a {
    color: var(--muted-foreground);
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--foreground);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Page Content */
.page-content {
    padding: 8rem 0 4rem;
    min-height: 80vh;
}

.page-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.page-content p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Section Styles */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(248, 118, 48, 0.1), rgba(251, 146, 60, 0.1));
    border: 1px solid rgba(248, 118, 48, 0.2);
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Section Backgrounds */
.bg-gradient-orange {
    background: linear-gradient(180deg, rgba(248, 118, 48, 0.03) 0%, rgba(248, 118, 48, 0.08) 100%);
}

.bg-gradient-gray {
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

.bg-gradient-light-orange {
    background: linear-gradient(135deg, rgba(248, 118, 48, 0.05) 0%, rgba(251, 146, 60, 0.05) 100%);
}

.bg-white-orbs {
    background: white;
    position: relative;
    overflow: hidden;
}

.decorative-orb-top {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 118, 48, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.decorative-orb-bottom {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 118, 48, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* How It Works - Numbered Badges */
.number-badge {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #fb923c);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(248, 118, 48, 0.3);
}

/* Why Choose Unicoarn - Enhanced Cards */
.icon-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(248, 118, 48, 0.1) 0%, rgba(251, 146, 60, 0.15) 100%);
    margin-bottom: 1.5rem;
}

.icon-box svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.card-footer-link {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.card-footer-link span {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Stats Row */
.stats-row {
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Pricing Cards */
.pricing-card-popular {
    border: 2px solid var(--accent);
    position: relative;
    background: linear-gradient(135deg, rgba(248, 118, 48, 0.02) 0%, rgba(251, 146, 60, 0.05) 100%);
    box-shadow: 0 10px 40px rgba(248, 118, 48, 0.15);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #fb923c);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(248, 118, 48, 0.3);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted-foreground);
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
}

/* Newsletter Section - Two Column Layout */
.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .newsletter-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.newsletter-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #fb923c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.newsletter-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #fb923c);
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 14px;
    height: 14px;
    stroke: white;
    stroke-width: 3;
}

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

.newsletter-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-card-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    text-align: center;
}

.newsletter-form-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form-vertical input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}

.newsletter-form-vertical input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(248, 118, 48, 0.1);
}

.newsletter-form-vertical button {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.form-footer p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.success-message {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.5rem;
    text-align: center;
}

.success-message p {
    color: rgb(34, 197, 94);
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 1.75rem;
    }

    .newsletter-title {
        font-size: 1.75rem;
    }

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

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

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stats-row {
        padding: 2rem;
        margin-top: 3rem;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .newsletter-form-card {
        padding: 2rem 1.5rem;
    }

    .decorative-orb-top,
    .decorative-orb-bottom {
        width: 250px;
        height: 250px;
    }
}

/* Pricing Card Responsive */
@media (max-width: 1024px) {
    .pricing-card-popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .features-grid {
        gap: 1rem;
    }

    .feature-card {
        padding: 1.25rem;
    }
}

/* Section Padding Responsive */
@media (max-width: 768px) {

    .features,
    .newsletter,
    .cta {
        padding: 4rem 0;
    }

    .page-content {
        padding: 6rem 0 3rem;
    }
}

@media (max-width: 640px) {

    .features,
    .newsletter,
    .cta {
        padding: 3rem 0;
    }
}