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

:root {
    --primary: #1B7F5A;
    --primary-dark: #155d43;
    --primary-light: #22a06f;
    --primary-50: #f0fdf4;
    --primary-100: #dcfce7;
    --secondary: #F59E0B;
    --text-900: #0f172a;
    --text-700: #334155;
    --text-500: #64748b;
    --text-400: #94a3b8;
    --text-300: #cbd5e1;
    --bg-white: #ffffff;
    --bg-50: #f8fafc;
    --bg-100: #f1f5f9;
    --bg-900: #0f172a;
    --bg-800: #1e293b;
    --border: #e2e8f0;
    --success: #22C55E;
    --danger: #EF4444;
    --amber: #F59E0B;
    --blue: #3B82F6;
    --purple: #8B5CF6;
    --rose: #F43F5E;
    --teal: #14B8A6;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.04);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.15);
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-900);
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-links a:hover {
    color: var(--text-900);
}

.nav-links a.active {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary) !important;
    color: white !important;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.2s !important;
    box-shadow: 0 2px 8px rgba(27, 127, 90, 0.25);
}

.btn-nav:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 127, 90, 0.35) !important;
}

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

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-900);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(27, 127, 90, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 127, 90, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid var(--border);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--primary-50);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-700);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-ghost:hover {
    color: var(--primary);
    background: var(--primary-50);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* ===== SECTION BADGES ===== */
.section-badge {
    display: inline-block;
    background: var(--primary-50);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid var(--primary-100);
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-50) 0%, var(--bg-white) 100%);
    margin-top: 64px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-50);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid var(--primary-100);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    color: var(--text-900);
    letter-spacing: -0.03em;
}

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

.hero-description {
    font-size: 19px;
    color: var(--text-500);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 520px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
}

.stat {
    display: flex;
    flex-direction: column;
    padding: 0 28px;
}

.stat:first-child {
    padding-left: 0;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: var(--text-400);
    font-weight: 500;
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    background: var(--text-900);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(255,255,255,0.1) inset;
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--text-900);
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    background: var(--bg-50);
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 9/19;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 30px;
}

/* Floating cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-700);
    white-space: nowrap;
    border: 1px solid var(--border);
    animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 32px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.trust-content {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-400);
    font-size: 14px;
    font-weight: 500;
}

.trust-item svg {
    stroke: var(--text-300);
}

/* ===== FEATURES ===== */
.features {
    padding: 120px 0;
    background: var(--bg-white);
}

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

.section-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-900);
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 19px;
    color: var(--text-500);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-icon-amber {
    background: #FFF7ED;
    color: var(--amber);
}

.feature-icon-blue {
    background: #EFF6FF;
    color: var(--blue);
}

.feature-icon-purple {
    background: #F5F3FF;
    color: var(--purple);
}

.feature-icon-rose {
    background: #FFF1F2;
    color: var(--rose);
}

.feature-icon-teal {
    background: #F0FDFA;
    color: var(--teal);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-900);
}

.feature-description {
    color: var(--text-500);
    line-height: 1.7;
    font-size: 15px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-50);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-100);
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(27, 127, 90, 0.25);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-900);
}

.step-description {
    font-size: 15px;
    color: var(--text-500);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 100px;
    color: var(--text-300);
    flex-shrink: 0;
}

/* ===== PREMIUM SECTION ===== */
.premium-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-900) 0%, #0c2d1f 50%, var(--bg-900) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.premium-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(27, 127, 90, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.premium-badge {
    display: inline-block;
    background: rgba(27, 127, 90, 0.2);
    color: #6EE7B7;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(110, 231, 183, 0.2);
}

.premium-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.premium-description {
    font-size: 18px;
    opacity: 0.75;
    margin-bottom: 40px;
    line-height: 1.7;
}

.premium-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.premium-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.premium-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(27, 127, 90, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #6EE7B7;
}

.premium-feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.premium-feature-item p {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.6;
}

/* Premium Card Glass */
.premium-card-glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.premium-card-header {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
}

.premium-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.premium-price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.premium-price-amount {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.premium-price-period {
    font-size: 18px;
    opacity: 0.6;
}

.premium-card-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.premium-card-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.premium-card-feature svg {
    color: #6EE7B7;
    flex-shrink: 0;
}

.premium-card-cta {
    background: white;
    color: var(--text-900);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.premium-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 880px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    padding: 40px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.pricing-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-900);
}

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

.price-amount {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.price-period {
    font-size: 18px;
    color: var(--text-400);
}

.pricing-description {
    color: var(--text-500);
    font-size: 15px;
}

.pricing-features-list {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-700);
    font-size: 15px;
}

.check-green {
    color: var(--success);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.trial-note {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-400);
}

/* ===== DOWNLOAD ===== */
.download {
    padding: 120px 0;
    background: var(--bg-white);
    text-align: center;
}

.download-content {
    max-width: 640px;
    margin: 0 auto;
}

.download-icon {
    margin-bottom: 28px;
}

.download-app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.download-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-900);
    letter-spacing: -0.02em;
}

.download-description {
    font-size: 19px;
    color: var(--text-500);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--text-900);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
    background: var(--bg-800);
}

.store-svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 400;
}

.store-name {
    font-size: 18px;
    font-weight: 700;
}

.download-note {
    color: var(--text-400);
    font-size: 13px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--bg-50);
}

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

.contact-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-900);
    letter-spacing: -0.02em;
}

.contact-description {
    font-size: 17px;
    color: var(--text-500);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 2px;
}

.contact-detail-item a,
.contact-detail-item p {
    font-size: 15px;
    color: var(--text-500);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    color: var(--text-700);
    background: var(--bg-white);
    transition: all 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 127, 90, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    margin-top: 8px;
    font-size: 16px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-900);
    margin: 16px 0 8px;
}

.form-success p {
    color: var(--text-500);
}

/* ===== LEGAL SECTIONS ===== */
.legal-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.legal-section-alt {
    background: var(--bg-50);
}

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

.legal-card {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.legal-section-alt .legal-card {
    background: var(--bg-white);
}

.legal-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.legal-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
}

.legal-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 12px;
}

.legal-card ul {
    list-style: none;
    margin-bottom: 12px;
}

.legal-card ul li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: var(--text-500);
    line-height: 1.6;
}

.legal-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.legal-card p {
    font-size: 14px;
    color: var(--text-500);
    line-height: 1.6;
}

.legal-highlight {
    background: var(--primary-50);
    color: var(--primary) !important;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    font-size: 13px !important;
    margin-top: 8px;
    border: 1px solid var(--primary-100);
}

/* Accordion */
.terms-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item:hover {
    border-color: var(--primary-100);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-900);
    font-family: inherit;
    text-align: left;
    transition: all 0.2s;
}

.accordion-header:hover {
    color: var(--primary);
}

.accordion-chevron {
    transition: transform 0.3s ease;
    color: var(--text-400);
    flex-shrink: 0;
}

.accordion-item.active .accordion-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 0 24px 20px;
}

.accordion-body p {
    font-size: 15px;
    color: var(--text-500);
    line-height: 1.7;
    margin-bottom: 8px;
}

.accordion-body ul {
    list-style: none;
    margin: 8px 0;
}

.accordion-body ul li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 15px;
    color: var(--text-500);
}

.accordion-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.accordion-body a {
    color: var(--primary);
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-900);
    color: white;
    padding: 72px 0 32px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-studio {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-links li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* ===== LEGAL PAGE HERO ===== */
.legal-hero {
    padding: 140px 0 48px;
    background: var(--bg-50);
    margin-top: 64px;
    text-align: center;
}

.legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-500);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.legal-back-link:hover {
    color: var(--primary);
}

.legal-hero-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-900);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.legal-hero-description {
    font-size: 18px;
    color: var(--text-500);
    margin-bottom: 36px;
}

.legal-nav-tabs {
    display: inline-flex;
    gap: 4px;
    background: var(--bg-100);
    padding: 4px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.legal-tab {
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-500);
    text-decoration: none;
    transition: all 0.2s;
}

.legal-tab:hover {
    color: var(--text-900);
}

.legal-tab.active {
    background: var(--bg-white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content,
    .premium-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-title {
        font-size: 46px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px 24px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

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

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .stat {
        padding: 0;
    }

    .section-title {
        font-size: 32px;
    }

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

    .steps-grid {
        flex-direction: column;
        gap: 0;
    }

    .step-connector {
        padding-top: 0;
        transform: rotate(90deg);
        padding: 8px 0;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .premium-title,
    .download-title {
        font-size: 32px;
    }

    .download-buttons {
        flex-direction: column;
    }

    .store-button {
        justify-content: center;
    }

    .contact-grid {
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

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

    .floating-card {
        display: none;
    }

    .phone-mockup {
        width: 240px;
    }

    .legal-hero-title {
        font-size: 32px;
    }

    .legal-nav-tabs {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }
}

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

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .premium-card-glass {
        padding: 24px;
    }

    .pricing-card {
        padding: 28px;
    }
}
