:root {
    --primary: #1B5E20;
    --primary-dark: #0D3B12;
    --primary-light: #2E7D32;
    --accent: #FF6F00;
    --accent-dark: #E65100;
    --accent-light: #FFA726;
    --success: #43A047;
    --warning: #FF9800;
    --error: #E53935;
    --info: #1E88E5;
    --dark: #0A0F1A;
    --dark-secondary: #141B2D;
    --dark-third: #1C2438;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --light: #F1F5F0;
    --white: #FFFFFF;
    --cricket-green: #2E7D32;
    --pitch-green: #4CAF50;
    --gradient-primary: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #43A047 100%);
    --gradient-accent: linear-gradient(135deg, #FF6F00 0%, #FFA726 100%);
    --gradient-dark: linear-gradient(135deg, #0A0F1A 0%, #141B2D 50%, #1C2438 100%);
    --gradient-hero: linear-gradient(160deg, #0A0F1A 0%, #0D2818 40%, #1B5E20 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 60px rgba(27, 94, 32, 0.25);
    --shadow-accent-glow: 0 0 40px rgba(255, 111, 0, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
}

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

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

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

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

.navbar .logo span {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    transition: color 0.3s;
}

.navbar.scrolled .logo span {
    color: var(--dark);
}

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

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.938rem;
    transition: color 0.3s;
}

.navbar.scrolled .nav-links a {
    color: var(--gray);
}

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

.navbar.scrolled .nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.navbar.scrolled .nav-cta {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-1px);
}

.navbar.scrolled .nav-cta:hover {
    background: var(--primary-dark) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
    color: var(--dark);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 128, 113, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 128, 113, 0.15);
    border: 1px solid rgba(0, 128, 113, 0.3);
    color: var(--primary-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 128, 113, 0.4);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 128, 113, 0.5);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat .number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat .label {
    font-size: 0.813rem;
    color: var(--gray-light);
    margin-top: 4px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 570px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-glow), 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.phone-mockup .screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
}

.phone-mockup .screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-mockup .notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 0 0 18px 18px;
    z-index: 5;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    animation: float 6s ease-in-out infinite;
}

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

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

.floating-card .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.floating-card .icon-circle.green {
    background: var(--gradient-accent);
}

.floating-card .icon-circle.teal {
    background: var(--gradient-primary);
}

.floating-card .card-label {
    font-size: 0.75rem;
    color: var(--gray-light);
}

.floating-card .card-value {
    font-size: 0.938rem;
    font-weight: 700;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ─── Features ─── */
.features {
    padding: 120px 0;
    background: var(--light);
}

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

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 128, 113, 0.08);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--white);
}

.feature-icon.teal {
    background: var(--gradient-primary);
}

.feature-icon.green {
    background: var(--gradient-accent);
}

.feature-icon.blue {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
}

.feature-icon.orange {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

.feature-icon.pink {
    background: linear-gradient(135deg, #EC4899, #F472B6);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #7C3AED, #A78BFA);
}

.feature-icon.red {
    background: linear-gradient(135deg, #F44336, #EF5350);
}

.feature-card h3 {
    font-size: 1.188rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.938rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ─── Screenshots ─── */
.screenshots {
    padding: 120px 0;
    background: var(--white);
}

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

.screenshots-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0 40px;
    scrollbar-width: none;
}

.screenshots-scroll::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex: 0 0 260px;
    scroll-snap-align: start;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.screenshot-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.screenshot-item img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/* ─── CTA Section ─── */
.cta-section {
    padding: 120px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 128, 113, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-store:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-store i {
    font-size: 1.75rem;
}

.btn-store .store-text {
    text-align: left;
}

.btn-store .store-text small {
    display: block;
    font-size: 0.688rem;
    color: var(--gray-light);
    font-weight: 400;
}

.btn-store .store-text span {
    display: block;
    font-size: 1.063rem;
    font-weight: 600;
}

/* ─── Footer ─── */
.footer {
    background: var(--dark);
    padding: 60px 0 30px;
}

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

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

.footer-brand p {
    color: var(--gray-light);
    font-size: 0.938rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 350px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-brand .logo img {
    height: 40px;
    width: 40px;
    border-radius: 10px;
}

.footer-brand .logo span {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
}

.footer h4 {
    color: var(--white);
    font-size: 0.938rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.938rem;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

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

.footer-bottom p {
    color: var(--gray);
    font-size: 0.813rem;
}

.footer-bottom a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.813rem;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* ─── Legal Page Styles ─── */
.legal-hero {
    background: var(--gradient-dark);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 128, 113, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.legal-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.legal-hero p {
    color: var(--gray-light);
    font-size: 1.063rem;
}

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

.legal-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(0, 128, 113, 0.15);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--dark);
}

/* ─── How It Works ─── */
.how-it-works {
    padding: 120px 0;
    background: var(--white);
}

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

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
}

.step-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--light);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.375rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.step-card h3 {
    font-size: 1.188rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.938rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ─── Stats Section ─── */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    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.05'%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");
}

.stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

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

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

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* ─── Form Utilities ─── */
.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-card h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-card h2 i {
    color: var(--primary);
    margin-right: 8px;
}

.form-subtitle {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-label i {
    color: var(--primary);
    margin-right: 6px;
}

.form-label .optional {
    color: var(--gray-light);
    font-weight: 400;
    font-size: 0.813rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    font-size: 0.938rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    box-sizing: border-box;
    background: var(--white);
    color: var(--dark);
}

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

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.4);
}

/* ─── Alert Messages ─── */
.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2E7D32;
    font-size: 0.938rem;
}

.alert-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 28px;
    color: #C62828;
    font-size: 0.938rem;
}

.alert-error ul {
    margin: 8px 0 0 20px;
    list-style: disc;
}

.alert-warning {
    background: rgba(255, 152, 0, 0.08);
    border: 1px solid rgba(255, 152, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #BF360C;
    font-size: 0.875rem;
    line-height: 1.6;
}

.alert-warning i {
    color: #E65100;
    font-size: 1.1rem;
    margin-top: 2px;
}

.alert-warning strong {
    color: #E65100;
    display: block;
    margin-bottom: 4px;
}

/* ─── Radio Options ─── */
.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 12px;
    transition: border-color 0.3s, background 0.2s;
}

.radio-option:hover {
    border-color: var(--primary);
    background: rgba(27, 94, 32, 0.03);
}

.radio-option input[type="radio"] {
    margin-top: 3px;
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.radio-option strong {
    font-size: 0.938rem;
    color: var(--dark);
    display: block;
    margin-bottom: 4px;
}

.radio-option span {
    font-size: 0.813rem;
    color: var(--gray);
    line-height: 1.5;
}

.radio-option.danger:hover {
    border-color: var(--error);
    background: rgba(244, 67, 54, 0.03);
}

.radio-option.danger input[type="radio"] {
    accent-color: var(--error);
}

/* ─── Contact Info Cards ─── */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(27, 94, 32, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-info-item h4 {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.875rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: var(--primary);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding: 140px 0 40px;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        padding: 0 0 80px;
    }

    .floating-card.card-1 {
        right: -20px;
    }

    .floating-card.card-2 {
        left: -20px;
    }

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

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

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

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

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

    .mobile-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 16px 16px;
    }

    .nav-links.active a {
        color: var(--dark) !important;
    }

    .nav-links.active .nav-cta {
        background: var(--primary) !important;
        color: var(--white) !important;
        text-align: center;
        border-color: var(--primary) !important;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat .number {
        font-size: 1.375rem;
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        width: 240px;
        height: 490px;
    }

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

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

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

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

    .legal-hero h1 {
        font-size: 2rem;
    }
}

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-store {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .screenshot-item {
        flex: 0 0 220px;
    }

    .screenshot-item img {
        height: 440px;
    }
}