:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #d1fae5;
    --primary-glow: rgba(16, 185, 129, 0.15);
    --secondary: #3b82f6;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;

    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.3);

    /* Modern Gradients */
    --gradient-brand: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-mesh:
        radial-gradient(at 40% 20%, rgba(16, 185, 129, 0.08) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(59, 130, 246, 0.05) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(16, 185, 129, 0.05) 0px, transparent 50%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8rem 2rem 4rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.mobile-menu-links a:not(.btn-primary) {
    font-size: 1.25rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.mobile-menu-links a:not(.btn-primary):hover {
    color: var(--primary);
}

.mobile-menu .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
}

.mobile-menu-footer {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.mobile-menu-footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-social a {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-brand);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 14px rgba(16, 185, 129, 0.3),
        0 0 0 0 rgba(16, 185, 129, 0.5);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::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-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(16, 185, 129, 0.4),
        0 0 0 4px rgba(16, 185, 129, 0.1);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background:
        var(--gradient-mesh),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes float-blob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.trust-badges i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Hero Visual - App Interface Mockup */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 100%;
    animation: float-up 1s ease-out;
}

@keyframes float-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-window {
    background: white;
    border-radius: 20px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.15),
        0 30px 60px -30px rgba(16, 185, 129, 0.2);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    width: 100%;
}

.app-window:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
    box-shadow:
        0 60px 120px -20px rgba(0, 0, 0, 0.2),
        0 40px 80px -30px rgba(16, 185, 129, 0.3);
}

.window-header {
    background: #f8fafc;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #22c55e;
}

.window-content {
    position: relative;
    background: #000;
    /* Video placeholder */
    aspect-ratio: 16/9;
}

.live-indicator {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blink-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    bottom: -20px;
    right: -20px;
    border: 1px solid var(--border-color);
    animation: float 4s ease-in-out infinite;
    max-width: 90%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.1),
        0 0 0 1px var(--primary-light);
    border-color: var(--primary-light);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(209, 250, 229, 0.3) 100%);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: var(--gradient-brand);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow:
        0 10px 20px -5px rgba(16, 185, 129, 0.3),
        0 0 0 4px rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 15px 30px -5px rgba(16, 185, 129, 0.4),
        0 0 0 6px rgba(16, 185, 129, 0.15);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.9375rem;
}

/* Showcase Section - Multi-Device */
.showcase-section {
    background: var(--gradient-brand);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.showcase-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.showcase-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.devices-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: float-device 3s ease-in-out infinite;
}

.device-item.desktop-device {
    flex: 0 0 auto;
    max-width: 450px;
    animation-delay: 0s;
}

.device-item.tablet-device {
    flex: 0 0 auto;
    max-width: 350px;
    animation-delay: 0.5s;
}

.device-item.mobile-device {
    flex: 0 0 auto;
    max-width: 150px;
    animation-delay: 1s;
}

@keyframes float-device {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.device-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.device-label i {
    font-size: 1.25rem;
}

.device-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0),
        0 0 0 1px rgba(0, 0, 0, 0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.device-item:hover .device-image {
    transform: scale(1.05);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Stats Strip */
.stats-strip {
    background: var(--gradient-brand);
    padding: 4rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}

.stat-item p {
    font-size: 1.0625rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Pricing */
.pricing {
    padding: 5rem 0;
    background:
        var(--gradient-mesh),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
    padding-top: 1rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 28px;
    border: 2px solid rgba(226, 232, 240, 0.6);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top, var(--primary-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.15),
        0 0 0 2px var(--primary-light);
    border-color: var(--primary);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow:
        0 25px 50px -12px rgba(16, 185, 129, 0.25),
        0 0 0 1px var(--primary-light);
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(209, 250, 229, 0.3) 100%);
}

.pricing-card.popular:hover {
    transform: translateY(-12px) scale(1.07);
    box-shadow:
        0 35px 70px -15px rgba(16, 185, 129, 0.35),
        0 0 0 2px var(--primary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 8px 16px -4px rgba(16, 185, 129, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: var(--text-main);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    letter-spacing: -0.02em;
}

.price span {
    font-size: 1.0625rem;
    color: var(--text-muted);
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 0.875rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.features-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: #064e3b;
    /* Dark Emerald */
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand p {
    color: #a7f3d0;
    /* Emerald 200 */
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: #d1fae5;
    /* Emerald 100 */
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a7f3d0;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 1rem;
    }

    .floating-card {
        right: 0;
        bottom: -15px;
        max-width: 100%;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-brand h2 {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .showcase-header h2 {
        font-size: 2rem;
    }

    .showcase-header p {
        font-size: 1rem;
    }

    .devices-showcase {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .device-item.desktop-device,
    .device-item.tablet-device,
    .device-item.mobile-device {
        max-width: 100%;
    }

    .device-item.desktop-device {
        max-width: 90%;
    }

    .device-item.tablet-device {
        max-width: 60%;
    }

    .device-item.mobile-device {
        max-width: 10%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .trust-badges span {
        justify-content: center;
        width: 100%;
    }

    .showcase-section {
        padding: 4rem 0;
    }

    .showcase-header {
        margin-bottom: 3rem;
    }

    .showcase-header h2 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .showcase-header p {
        font-size: 0.95rem;
    }

    .devices-showcase {
        gap: 2.5rem;
    }

    .device-item.desktop-device {
        max-width: 100%;
    }

    .device-item.tablet-device {
        max-width: 90%;
    }

    .device-item.mobile-device {
        max-width: 40%;
    }

    .device-label {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .features {
        padding: 4rem 0;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .icon-box {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .stats-strip {
        padding: 3rem 0;
    }

    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 1rem;
    }

    .pricing {
        padding: 4rem 0;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card h3 {
        font-size: 1.25rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .price span {
        font-size: 1rem;
    }

    .features-list {
        margin-bottom: 2rem;
    }

    .features-list li {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .app-window {
        border-radius: 16px;
    }

    .floating-card {
        display: none;
    }
}