:root {
    --primary: #0F172A;
    --primary-light: #1E293B;
    --accent: #2563EB;
    --text-dark: #0F172A;
    --text-medium: #64748B;
    --text-light: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-gray: #F5F5F5;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --success: #10B981;
}

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

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

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

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: translateY(-2px);
}

.logo:hover .logo-text {
    color: var(--primary-light);
}

.logo-img {
    height: 42px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoFadeIn 0.8s ease-out;
}

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

.logo-text {
    transition: color 0.3s ease;
    animation: logoTextSlide 0.8s ease-out 0.2s both;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--text-dark);
}

.language-switcher {
    display: flex;
    gap: 4px;
    background: var(--bg-gray);
    padding: 4px;
    border-radius: 8px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    color: var(--text-medium);
}

.lang-btn.active {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* ============ BUTTONS ============ */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--text-dark);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--text-dark);
    background: var(--bg-light);
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* ============ HERO SECTION ============ */
.hero {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 160px 0 120px;
    position: relative;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 540px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-feature svg {
    flex-shrink: 0;
    color: var(--success);
}

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

.hero-image-placeholder {
    background: transparent;
    border-radius: 16px;
    padding: 0;
}

/* Browser Mockup */
.browser-mockup {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border);
    position: relative;
    /* Reserve space for 16:9 aspect ratio content */
    min-height: 300px;
}

.browser-header {
    background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d0d0d0;
}

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

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

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

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

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

.dashboard-img,
.dashboard-video {
    width: 100%;
    display: block;
}

.hero-wave {
    display: none;
}

/* ============ STATS SECTION ============ */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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='%23ffffff' fill-opacity='0.03'%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");
    opacity: 0.4;
}

.stats-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.stats-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

.stats-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.stats-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

.stat-card.animate {
    animation: pulseGlow 2s ease-in-out;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
    display: inline-block;
    min-height: 1.2em;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badge svg {
    color: #10B981;
    flex-shrink: 0;
}

/* ============ SECTION HEADERS ============ */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-medium);
    font-weight: 400;
    line-height: 1.6;
}

/* ============ FEATURES SECTION ============ */
.features {
    padding: 120px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 40px 36px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    border-color: var(--border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--text-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
}

/* ============ BENEFITS SECTION ============ */
.benefits {
    padding: 100px 0;
    background: var(--bg-light);
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefit-item.reverse {
    direction: rtl;
}

.benefit-item.reverse > * {
    direction: ltr;
}

.benefit-image-placeholder {
    background: transparent;
    border-radius: 12px;
    overflow: visible;
}

/* App Window Mockup */
.app-window-mockup {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.app-window-mockup:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.window-titlebar {
    background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #d5d5d5;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.window-controls span:nth-child(1) {
    background: #ff5f56;
    border: 0.5px solid #e0443e;
}

.window-controls span:nth-child(2) {
    background: #ffbd2e;
    border: 0.5px solid #dfa123;
}

.window-controls span:nth-child(3) {
    background: #27c93f;
    border: 0.5px solid #1dad2b;
}

.window-title {
    font-size: 13px;
    font-weight: 600;
    color: #5a5a5a;
    flex: 1;
    text-align: center;
    margin-right: 80px;
}

.benefit-img {
    width: 100%;
    display: block;
}

.benefit-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.benefit-text p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.benefit-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.benefit-text ul li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.step {
    text-align: center;
    padding: 32px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: white;
    transition: all 0.2s ease;
    position: relative;
}

.step:hover {
    border-color: var(--text-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--text-dark);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 16px;
    color: var(--text-dark);
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ============ PRICING ============ */
.pricing {
    padding: 120px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 48px 40px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-top: 24px;
}

.pricing-card:hover {
    border-color: var(--border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--text-dark);
    border-width: 1.5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pricing-card .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: white;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    z-index: 10;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-top: 6px;
}

.price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

.price-description {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.pricing-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
}

/* ============ DEMO SECTION ============ */
.demo-section {
    padding: 100px 0;
    background: var(--text-dark);
    color: white;
}

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

.demo-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.demo-text p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    opacity: 0.9;
    line-height: 1.6;
}

.demo-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.demo-form {
    background: white;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
}

.form-message {
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid #EF4444;
    display: block;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    color: var(--text-dark);
    padding: 60px 0 32px;
}

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

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.footer-section p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section ul li a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--text-dark);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--bg-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--text-dark);
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    color: var(--text-medium);
    font-size: 0.85rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content,
    .benefit-item,
    .demo-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

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

    .benefit-item.reverse {
        direction: ltr;
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }

    .trust-badges {
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

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

    .features-grid,
    .steps-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .demo-form {
        padding: 28px 24px;
    }

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

    .btn-large {
        width: 100%;
    }

    .stats-header h2 {
        font-size: 1.75rem;
    }

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

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

    .trust-badges {
        gap: 24px;
        flex-direction: column;
    }

    .stats-section {
        padding: 60px 0;
    }
}

html {
    scroll-behavior: smooth;
}
