/* ============================================
   TRONCREATE - LIGHT CORPORATE THEME
   Clean, Professional, Trustworthy
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    /* Brand Colors - Emerald Green */
    --primary: #059669;
    --primary-light: #10B981;
    --primary-dark: #047857;
    --primary-50: #ECFDF5;
    --primary-100: #D1FAE5;
    --primary-200: #A7F3D0;
    
    /* Accent */
    --accent: #0D9488;
    --accent-light: #14B8A6;
    
    /* Gradient */
    --gradient: linear-gradient(135deg, #059669 0%, #10B981 100%);
    --gradient-light: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    
    /* Light Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFB;
    --bg-gray: #F1F5F9;
    --bg-card: #FFFFFF;
    --bg-input: #F8FAFB;
    
    /* Text Colors */
    --text-dark: #0F172A;
    --text-body: #334155;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --text-white: #FFFFFF;
    
    /* Border Colors */
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --border-focus: #059669;
    
    /* Status Colors */
    --success: #059669;
    --error: #DC2626;
    --warning: #D97706;
    --info: #0284C7;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 10px 40px -10px rgba(5, 150, 105, 0.3);
    
    /* Radius */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-2xl: 24px;
    --r-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-light);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   BEAUTIFUL GRADIENT BACKGROUND
   ============================================ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        /* Soft green glow top-left */
        radial-gradient(ellipse 80% 60% at 10% 5%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
        /* Soft green glow top-right */
        radial-gradient(ellipse 70% 50% at 90% 10%, rgba(5, 150, 105, 0.10) 0%, transparent 45%),
        /* Center subtle glow */
        radial-gradient(ellipse 100% 60% at 50% 50%, rgba(209, 250, 229, 0.3) 0%, transparent 50%),
        /* Bottom accent */
        radial-gradient(ellipse 80% 40% at 50% 100%, rgba(167, 243, 208, 0.2) 0%, transparent 50%),
        /* Base - Light gradient */
        linear-gradient(180deg, 
            #FFFFFF 0%, 
            #F8FAFB 20%,
            #F1F5F9 50%,
            #F8FAFB 80%,
            #FFFFFF 100%
        );
    pointer-events: none;
    z-index: -2;
}

/* Floating orbs animation */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle 400px at 20% 30%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
        radial-gradient(circle 350px at 80% 70%, rgba(5, 150, 105, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: none;
}

@keyframes floatOrbs {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 10px); }
    100% { transform: translate(20px, -10px); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 12px 0;
}

.navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(5, 150, 105, 0.3));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 6px 20px rgba(5, 150, 105, 0.4));
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.logo:hover .logo-highlight::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Centered Navigation */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 auto !important;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 10px 16px !important;
    border-radius: var(--r-sm);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link i {
    font-size: 0.85rem;
    color: var(--text-light);
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--text-dark) !important;
    background: var(--bg-gray);
}

.nav-link:hover i {
    color: var(--primary);
}

.btn-get-started {
    background: var(--gradient) !important;
    color: var(--text-white) !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    border-radius: var(--r-sm) !important;
    border: none !important;
    box-shadow: var(--shadow-green);
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
}

.btn-get-started i {
    font-size: 0.85rem;
    color: var(--text-white) !important;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px rgba(5, 150, 105, 0.4);
}

.navbar-toggler {
    border: 1px solid var(--border);
    padding: 8px 12px;
    background: var(--bg-white);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(0);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23334155' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    position: relative;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
    padding: 10px 22px;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary);
    animation: pulse 2s ease-in-out infinite;
    will-change: opacity, transform;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Badge Top */
.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    border: 1px solid var(--primary-200);
    padding: 10px 20px;
    border-radius: var(--r-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease both;
    box-shadow: var(--shadow-sm);
}

.hero-badge-top i {
    color: var(--primary);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title-line {
    display: block;
}

.hero-title-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-badge-inline {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--primary-50);
    border: 2px solid var(--primary);
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    text-transform: uppercase;
    transform: rotate(-2deg);
    box-shadow: var(--shadow-sm);
}

.highlight-box {
    position: relative;
    display: inline-block;
    color: var(--primary-dark);
}

.highlight-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    right: -4px;
    height: 35%;
    background: var(--primary-100);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle-wrapper {
    animation: fadeInUp 0.6s ease 0.2s both;
    margin-bottom: 2.5rem;
}

.hero-subtitle {
    font-size: 1.1875rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--text-dark);
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--text-body);
    font-weight: 500;
}

.hero-checklist li i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    font-size: 0.625rem;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease 0.25s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 16px 24px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
}

.hero-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: var(--r-md);
    color: var(--text-white);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-green);
}

.hero-feature-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-feature-text strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
}

.hero-feature-text span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Hero Trust */
.hero-trust {
    margin-top: 0rem;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-trust > span {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

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

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.trust-badge i {
    color: var(--primary);
    font-size: 0.8rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--r-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary {
    background: var(--gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-green);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px -15px rgba(5, 150, 105, 0.5);
}

.hero-cta .btn-outline-primary {
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.hero-cta .btn-outline-primary:hover {
    background: var(--primary-50);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}

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

.stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    color: var(--primary);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-md), 0 0 0 4px var(--primary-50);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.section-header {
    margin-bottom: 56px;
}

.section-badge {
    display: inline-block;
    background: var(--primary-50);
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid var(--primary-100);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
}

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

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

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

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

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: var(--r-md);
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--text-white);
    box-shadow: var(--shadow-green);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* ============================================
   TOKEN CREATION SECTION
   ============================================ */
/* ============================================================
   CREATE TOKEN SECTION — Hero-level prominence
   ============================================================ */
.create-token-section {
    padding: 80px 0 90px;
    position: relative;
    background:
        radial-gradient(ellipse 70% 50% at 15% 50%, rgba(5,150,105,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 85% 30%, rgba(16,185,129,0.07) 0%, transparent 60%),
        linear-gradient(155deg, #0f1f18 0%, #111d2a 50%, #0d1c12 100%);
    overflow: hidden;
    border-top: 1px solid rgba(5,150,105,0.12);
    border-bottom: 1px solid rgba(5,150,105,0.12);
}

/* Animated mesh grid */
.create-token-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(5,150,105,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5,150,105,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
}

/* Top glow orb */
.create-token-section::after {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(5,150,105,0.22) 0%, transparent 70%);
    pointer-events: none;
    animation: none;
}

@keyframes ctGlow {
    from { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
    to   { opacity: 1;   transform: translateX(-50%) scaleX(1.15); }
}

/* ── Section header on dark bg ────────────────────────────── */
.create-token-section .section-badge {
    background: rgba(5, 150, 105, 0.18);
    color: #6ee7b7;
    border-color: rgba(52, 211, 153, 0.35);
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 10px 24px;
    box-shadow: 0 0 20px rgba(5,150,105,0.2);
}

.create-token-section .section-title {
    color: #ffffff;
    font-size: clamp(2.6rem, 5.5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 0 60px rgba(5,150,105,0.4);
    line-height: 1.1;
    margin-bottom: 18px;
}

.create-token-section .section-title .gradient-text {
    background: linear-gradient(135deg, #34d399 0%, #10b981 40%, #6ee7b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.create-token-section .section-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Trust pills row */
.ct-trust-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.ct-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 9999px;
    padding: 7px 16px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    backdrop-filter: blur(8px);
    transition: background 0.2s;
}

.ct-trust-pill i {
    color: #34d399;
    font-size: 0.8rem;
}

.ct-trust-pill:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* ── Form card ───────────────────────────────────────────── */
.create-token-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(5,150,105,0.2);
    border-radius: 32px;
    padding: 56px 56px 48px;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(5,150,105,0.08),
        0 4px 6px rgba(0,0,0,0.04),
        0 24px 64px rgba(0,0,0,0.45),
        0 0 100px rgba(5,150,105,0.18);
    backdrop-filter: blur(2px);
    margin-top: 20px;
}

/* Glowing top border accent */
.create-token-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, #34d399, #10b981, transparent);
    border-radius: 9999px;
}

/* Price badge floating in top-right of card */
.ct-price-badge {
    position: absolute;
    top: -18px;
    right: 40px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 9999px;
    box-shadow: 0 8px 24px rgba(5,150,105,0.4);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.ct-price-badge i { font-size: 0.8rem; opacity: 0.9; }

@media (max-width: 768px) {
    .create-token-section { padding: 80px 0 90px; }
    .create-token-card {
        padding: 32px 20px 28px;
        border-radius: 24px;
    }
    .ct-price-badge { right: 20px; font-size: 0.75rem; }
    .create-token-section .section-title { font-size: clamp(2rem, 8vw, 2.8rem); }
}

/* Form Sections */
.form-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 28px;
    padding-bottom: 0;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.section-number {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: var(--shadow-green);
}

.optional-badge {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-gray);
    padding: 4px 12px;
    border-radius: var(--r-full);
    margin-left: auto;
}

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

.required {
    color: var(--primary);
}

.form-control,
.form-select {
    background: var(--bg-input) !important;
    border: 2px solid var(--border) !important;
    border-radius: var(--r-sm) !important;
    color: var(--text-dark) !important;
    padding: 14px 16px !important;
    font-size: 0.9375rem !important;
    transition: all 0.2s ease !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px var(--primary-50) !important;
    background: var(--bg-white) !important;
    outline: none !important;
}

.form-control::placeholder {
    color: var(--text-light) !important;
}

.form-select option {
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Supply Presets */
.supply-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.supply-preset-btn {
    flex: 1 0 auto;
    min-width: 52px;
    padding: 8px 13px;
    font-size: 0.8125rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.4px;
    color: #047857 !important;
    background: #ECFDF5 !important;
    border: 1.5px solid #A7F3D0 !important;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
    white-space: nowrap;
    line-height: 1;
    outline: none;
    box-shadow: none;
}

.supply-preset-btn:hover {
    background: #D1FAE5 !important;
    border-color: #059669 !important;
    color: #047857 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.2) !important;
}

.supply-preset-btn:focus {
    background: #D1FAE5 !important;
    border-color: #059669 !important;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15) !important;
}

.supply-preset-btn.active {
    background: #059669 !important;
    border-color: #047857 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4) !important;
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .supply-preset-btn {
        min-width: 44px;
        padding: 6px 9px;
        font-size: 0.75rem;
    }
}

/* Supply Display */
.supply-display {
    display: none;
    background: linear-gradient(135deg, var(--primary-50) 0%, #ECFDF5 100%);
    border: 1px solid var(--primary-100);
    border-radius: var(--r-md);
    padding: 12px 16px;
    margin-top: 10px;
    animation: fadeIn 0.3s ease;
}

.supply-display.active {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.supply-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: 'Space Grotesk', monospace;
    letter-spacing: 0.5px;
}

.supply-words {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.supply-words::before {
    content: '=';
    font-weight: 400;
    color: var(--text-muted);
}

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

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

/* ============================================
   LOGO UPLOAD - Premium Light Style
   ============================================ */
.logo-upload-container {
    width: 100%;
}

.logo-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 20px;
    background: var(--bg-input);
    border: 2px dashed var(--border);
    border-radius: var(--r-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.logo-upload-label:hover {
    border-color: var(--primary);
    background: var(--primary-50);
}

.logo-upload-label.has-image {
    padding: 20px;
    border-style: solid;
    border-color: var(--primary);
    background: var(--primary-50);
}

.logo-upload-label svg {
    color: var(--primary);
    opacity: 0.7;
}

.logo-upload-label span {
    font-weight: 600;
    color: var(--text-body);
}

.logo-upload-label small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Logo Preview - Beautiful Card Style */
.logo-preview-wrapper {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 12px;
    background: var(--bg-white);
    border-radius: var(--r-md);
    box-shadow: var(--shadow);
}

.logo-preview-wrapper.active {
    display: flex;
}

.logo-preview-image {
    width: 72px;
    height: 72px;
    border-radius: var(--r-md);
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-green);
    flex-shrink: 0;
}

.logo-preview-info {
    flex: 1;
    text-align: left;
}

.logo-preview-info .file-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 4px;
    word-break: break-all;
}

.logo-preview-info .file-size {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.logo-preview-change {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-white);
    font-weight: 600;
    padding: 8px 16px;
    background: var(--gradient);
    border-radius: var(--r-full);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-green);
}

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

.upload-default-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.upload-default-content.hidden {
    display: none;
}

.upload-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.5rem;
}

.upload-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.upload-hint {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Logo Preview Overlay */
.logo-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 150, 105, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: var(--r-md);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
}

.logo-preview-overlay i {
    font-size: 1.25rem;
}

.logo-preview-wrapper:hover .logo-preview-overlay {
    opacity: 1;
}

.logo-preview-wrapper {
    position: relative;
    display: none;
}

.logo-preview-wrapper.active {
    display: block;
}

.logo-upload-label.has-image {
    padding: 20px;
    border-style: solid;
    border-color: var(--primary);
    background: var(--primary-50);
}

.logo-upload-label.has-image .upload-default-content {
    display: none;
}

.logo-preview-image {
    width: 100px;
    height: 100px;
    border-radius: var(--r-md);
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-green);
}

/* ============================================
   TOGGLE SWITCHES - Clean & Visible
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-toggle {
    background: var(--bg-input);
    border: 2px solid var(--border);
    border-radius: var(--r-md);
    padding: 16px;
    transition: all 0.2s ease;
}

.feature-toggle:hover {
    border-color: var(--primary-200);
    background: var(--primary-50);
}

.feature-toggle.active {
    border-color: var(--primary);
    background: var(--primary-50);
}

.feature-toggle .form-check {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.feature-toggle .form-check-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    cursor: pointer;
    flex: 1;
}

.feature-toggle .form-check-label strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-toggle .form-check-label small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Custom Toggle Switch - Light Theme */
.form-check-input[type="checkbox"] {
    width: 52px !important;
    height: 28px !important;
    background: #CBD5E1 !important;
    border: 2px solid #CBD5E1 !important;
    border-radius: var(--r-full) !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    position: relative !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.form-check-input[type="checkbox"]::before {
    content: '' !important;
    position: absolute !important;
    top: 2px !important;
    left: 2px !important;
    width: 20px !important;
    height: 20px !important;
    background: #FFFFFF !important;
    border-radius: 50% !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) !important;
}

/* Hover - Unchecked */
.form-check-input[type="checkbox"]:hover {
    background: #94A3B8 !important;
    border-color: #94A3B8 !important;
}

/* Checked State - Green */
.form-check-input[type="checkbox"]:checked {
    background: var(--gradient) !important;
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-green) !important;
}

.form-check-input[type="checkbox"]:checked::before {
    transform: translateX(24px) !important;
    background: #FFFFFF !important;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3) !important;
}

/* Focus State */
.form-check-input[type="checkbox"]:focus {
    box-shadow: 0 0 0 4px var(--primary-50) !important;
    outline: none !important;
}

.feature-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 16px;
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: var(--r-sm);
    font-size: 0.8125rem;
    color: var(--primary-dark);
}

/* Wallet Connect */
.wallet-connect-section .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: var(--bg-white);
    border: 2px solid var(--border);
    color: var(--text-body);
    padding: 14px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--r-md);
    transition: all 0.2s ease;
}

.wallet-connect-section .btn:hover {
    border-color: var(--primary);
    background: var(--primary-50);
    color: var(--primary);
}

.wallet-connect-section .btn.connected {
    background: var(--primary-50);
    border-color: var(--primary);
    color: var(--primary);
}

/* Price Summary */
.price-summary {
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: var(--r-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.price-row span {
    color: var(--text-body);
}

.price-row strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--primary-dark);
}

/* Create Button */
#createTokenBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: var(--gradient);
    border: none;
    color: var(--text-white);
    padding: 18px 24px;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-green);
}

#createTokenBtn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px -15px rgba(5, 150, 105, 0.5);
}

#createTokenBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works-section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.step-card {
    text-align: center;
    padding: 40px 24px 32px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    top: -12px;
    left: 24px;
    border: 3px solid var(--bg-white);
    box-shadow: var(--shadow);
}

.step-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--text-white);
    font-size: 1.75rem;
    border-radius: var(--r-lg);
    margin: 0 auto 24px;
    box-shadow: var(--shadow-green);
}

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

.step-card p {
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

/* Stats bar */
.faq-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px 40px;
    margin-bottom: 56px;
    box-shadow: var(--shadow);
}

.faq-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
}

.faq-stat-divider {
    width: 1px;
    height: 44px;
    background: var(--border);
    flex-shrink: 0;
}

.faq-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    background: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-stat-item strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.faq-stat-item span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* FAQ accordion cards */
.faq-accordion.accordion {
    max-width: 100%;
}

.faq-card.accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--border) !important;
    border-left: 3px solid transparent !important;
    border-radius: var(--r-lg) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.faq-card.accordion-item:hover {
    border-color: var(--primary-200) !important;
    border-left-color: var(--primary-200) !important;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-card.accordion-item:has(.faq-btn:not(.collapsed)) {
    border-left-color: var(--primary) !important;
    box-shadow: var(--shadow-green);
}

.faq-btn.accordion-button {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-white) !important;
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 18px 20px;
    box-shadow: none !important;
    transition: background 0.25s ease, color 0.25s ease;
}

.faq-btn.accordion-button:not(.collapsed) {
    background: var(--primary-50) !important;
    color: var(--primary-dark) !important;
}

.faq-btn.accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23059669'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    margin-left: auto;
    flex-shrink: 0;
}

.faq-q-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.faq-btn.accordion-button:not(.collapsed) .faq-q-icon {
    background: var(--primary);
    color: var(--text-white);
}

.accordion-body.faq-body {
    padding: 4px 20px 20px 70px;
    color: var(--text-muted);
    line-height: 1.75;
    border-top: 1px solid var(--border-light);
}

/* Fallback for generic accordion (outside FAQ) */
.accordion:not(.faq-accordion) {
    max-width: 800px;
    margin: 0 auto;
}

.accordion:not(.faq-accordion) .accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--border) !important;
    border-radius: var(--r-lg) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion:not(.faq-accordion) .accordion-button {
    background: var(--bg-white) !important;
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 24px;
    box-shadow: none !important;
}

.accordion:not(.faq-accordion) .accordion-button:not(.collapsed) {
    background: var(--primary-50) !important;
    color: var(--primary-dark) !important;
}

.accordion:not(.faq-accordion) .accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23059669'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion:not(.faq-accordion) .accordion-body {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .faq-stats-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 24px 20px;
    }
    .faq-stat-divider { display: none; }
    .faq-stat-item { flex: 0 0 calc(50% - 10px); justify-content: flex-start; padding: 0 10px; }
}

@media (max-width: 575px) {
    .faq-stat-item { flex: 0 0 100%; }
    .accordion-body.faq-body { padding-left: 20px; }
}

/* ============================================
   SKIP LINK (Accessibility)
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 9999;
    background: var(--primary);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--r-sm);
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 40%, #ecfdf5 100%);
    border-top: 1px solid #d1fae5;
    border-bottom: 1px solid #d1fae5;
    padding: 0;
}

.stat-card {
    padding: 36px 20px;
    text-align: center;
    border-right: 1px solid rgba(5, 150, 105, 0.1);
    transition: background 0.25s ease;
    position: relative;
}

.stat-card:hover { background: rgba(5, 150, 105, 0.04); }

.stat-card-alt {
    background: rgba(5, 150, 105, 0.03);
}

.stat-number {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 6px;
}

.stat-suffix {
    font-size: 1.1rem;
    font-weight: 700;
    margin-left: 2px;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(5, 150, 105, 0.1);
        padding: 24px 16px;
    }
    .stat-card:last-child { border-bottom: none; }
}

/* ============================================
   TOKEN USE CASES SECTION
   ============================================ */
.use-cases-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #ffffff 0%, #f0fdf8 45%, #e8faf2 100%);
    border-bottom: 1px solid #d1fae5;
}

.use-case-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.use-case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-100);
}

.use-case-card:hover::before { opacity: 1; }

.use-case-icon {
    width: 54px;
    height: 54px;
    background: var(--primary-50);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    background: var(--gradient);
    color: #fff;
    transform: scale(1.1);
}

.use-case-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.use-case-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.use-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-tags li {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: var(--primary-50);
    border-radius: var(--r-full);
    padding: 3px 10px;
}

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

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card-featured {
    border-color: var(--primary-200);
    background: var(--primary-50);
    box-shadow: var(--shadow-green);
}

.testimonial-card-featured:hover {
    box-shadow: 0 24px 48px -12px rgba(5,150,105,0.3);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
    color: #F59E0B;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.75;
    flex-grow: 1;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-card-featured .testimonial-text { color: var(--text-dark); }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    margin-top: auto;
}

.testimonial-card-featured .testimonial-author { border-color: var(--primary-100); }

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    font-style: normal;
    line-height: 1.3;
}

.testimonial-role {
    font-size: 0.8125rem;
    color: var(--text-muted);
    display: block;
}

.testimonials-aggregate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 52px;
    padding: 20px 32px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.agg-stars { color: #F59E0B; font-size: 1.1rem; display: flex; gap: 3px; }

.agg-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.agg-text strong { color: var(--text-dark); }

/* ============================================
   COMPARISON TABLE SECTION
   ============================================ */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9375rem;
    vertical-align: middle;
}

.comparison-table thead th {
    background: var(--bg-gray);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.comparison-table thead th:first-child { border-radius: var(--r-xl) 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 var(--r-xl) 0 0; }

.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:last-child td:first-child { border-radius: 0 0 0 var(--r-xl); }
.comparison-table tbody tr:last-child td:last-child { border-radius: 0 0 var(--r-xl) 0; }

.comparison-table tbody tr:hover { background: var(--bg-gray); }

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.col-us {
    background: var(--primary-50);
}

.comparison-table thead .col-us {
    background: var(--gradient);
    color: #fff;
}

.comp-yes { color: var(--primary-dark); font-weight: 600; }
.comp-no { color: #DC2626; font-weight: 500; }
.comp-warn { color: #D97706; font-weight: 500; }

.comp-yes i { margin-right: 4px; }
.comp-no i { margin-right: 4px; }
.comp-warn i { margin-right: 4px; }

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

.final-cta-card {
    background: var(--gradient);
    border-radius: var(--r-2xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}

.final-cta-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 560px;
}

.final-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.final-cta-features span {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.final-cta-features span i { color: rgba(255,255,255,0.75); }

.final-cta-btn {
    background: #fff !important;
    color: var(--primary-dark) !important;
    border: none !important;
    font-weight: 700 !important;
    padding: 16px 32px !important;
    border-radius: var(--r-lg) !important;
    font-size: 1rem !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    white-space: nowrap;
}

.final-cta-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.2) !important;
}

.final-cta-note {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .final-cta-card { padding: 40px 28px; }
    .final-cta-features { gap: 10px; }
}

@media (max-width: 575px) {
    .final-cta-card { padding: 32px 20px; }
    .final-cta-btn { width: 100%; justify-content: center; }
}

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

.footer-address {
    font-style: normal;
    margin-top: 4px;
}

.footer-address-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-address-item i {
    color: var(--primary);
    margin-top: 3px;
    width: 14px;
    flex-shrink: 0;
}

.footer-address-item a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-address-item a:hover {
    color: var(--primary);
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-brand .logo {
    font-size: 1.25rem;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    max-width: 320px;
}

footer h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

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

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

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

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

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    max-width: 100%;
    margin: 0 auto;
    font-size: 0.875rem;
}

.footer-bottom i {
    color: var(--primary);
}

/* ============================================
   LIVE SUPPORT WIDGET - Premium Clean Design
   ============================================ */
.live-support-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.support-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--r-lg);
    background: var(--gradient);
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-green);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-toggle-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(5, 150, 105, 0.5);
}

.support-toggle-btn .close-icon {
    display: none;
}

.support-toggle-btn.active .chat-icon {
    display: none;
}

.support-toggle-btn.active .close-icon {
    display: inline;
}

/* Support Panel - Premium Card */
.support-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    max-width: calc(100vw - 48px);
    background: var(--bg-white);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.support-header {
    background: var(--gradient);
    padding: 20px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 16px;
}

.support-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.support-header-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text-white);
}

.offline-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

.offline-status i {
    font-size: 6px;
    color: #F59E0B;
}

.support-body {
    padding: 20px;
}

.support-welcome {
    background: var(--bg-gray);
    border-radius: var(--r-md);
    padding: 16px;
    margin-bottom: 20px;
}

.support-welcome p {
    font-size: 0.875rem;
    color: var(--text-body);
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.response-time i {
    color: var(--primary);
}

.support-form-group {
    margin-bottom: 16px;
}

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

.support-form-group input,
.support-form-group select,
.support-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-input);
    border: 2px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.875rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.support-form-group input:focus,
.support-form-group select:focus,
.support-form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-50);
}

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

.support-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: var(--gradient);
    border: none;
    border-radius: var(--r-sm);
    color: var(--text-white);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-green);
}

.support-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -8px rgba(5, 150, 105, 0.5);
}

.support-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-gray);
    border-top: 1px solid var(--border);
}

.support-footer-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.support-channels {
    display: flex;
    gap: 8px;
}

.support-channel {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--text-muted);
    transition: all 0.2s ease;
}

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

.support-channel i {
    font-size: 1.1rem;
}

/* ============================================
   CUSTOM MODAL - Clean Design
   ============================================ */
.custom-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal {
    background: var(--bg-white);
    border-radius: var(--r-xl);
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.custom-modal-overlay.active .custom-modal {
    transform: scale(1) translateY(0);
}

.custom-modal-header {
    padding: 32px 24px 24px;
    text-align: center;
    position: relative;
}

.custom-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-gray);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-modal-close:hover {
    background: var(--border);
    color: var(--text-dark);
}

.custom-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.custom-modal-icon.success {
    background: var(--primary-50);
    color: var(--primary);
}

.custom-modal-icon.error {
    background: #FEF2F2;
    color: var(--error);
}

.custom-modal-icon.warning {
    background: #FFFBEB;
    color: var(--warning);
}

.custom-modal-icon.info {
    background: #EFF6FF;
    color: var(--info);
}

.custom-modal-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.custom-modal-body {
    padding: 0 24px;
    text-align: center;
}

.custom-modal-body p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

.custom-modal-footer {
    padding: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.custom-modal-btn {
    padding: 12px 32px;
    border-radius: var(--r-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.custom-modal-btn.primary {
    background: var(--gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-green);
}

.custom-modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -8px rgba(5, 150, 105, 0.5);
}

.custom-modal-btn.secondary {
    background: var(--bg-gray);
    color: var(--text-body);
}

.custom-modal-btn.secondary:hover {
    background: var(--border);
}

/* ============================================
   PAYMENT PROCESSING MODAL
   ============================================ */
.payment-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.payment-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.payment-modal {
    background: var(--bg-white);
    border-radius: var(--r-2xl);
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.payment-modal-overlay.active .payment-modal {
    transform: scale(1);
}

.payment-modal-content {
    padding: 48px 32px;
    text-align: center;
}

.payment-spinner {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto 32px;
}

.spinner-ring {
    position: absolute;
    inset: 0;
    border: 4px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spinRing 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner-ring:nth-child(2) {
    inset: 8px;
    border-top-color: var(--primary-light);
    animation-delay: -0.3s;
}

.spinner-ring:nth-child(3) {
    inset: 16px;
    border-top-color: var(--accent);
    animation-delay: -0.15s;
}

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.payment-modal h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.payment-modal p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.payment-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    padding: 12px 20px;
    border-radius: var(--r-full);
    font-size: 0.8125rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.payment-status i {
    color: var(--primary);
}

/* ============================================
   SUCCESS TOKEN INFO
   ============================================ */
.token-success-info {
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: var(--r-md);
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.token-success-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--primary-100);
}

.token-success-row:last-child {
    border-bottom: none;
}

.token-success-row span:first-child {
    font-size: 0.8125rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.token-success-row span:last-child {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.copy-contract-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-white);
    border: 1px solid var(--primary);
    border-radius: var(--r-sm);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-contract-btn:hover {
    background: var(--primary);
    color: var(--text-white);
}

/* ============================================
   VALIDATION STATES
   ============================================ */
.form-control.is-valid {
    border-color: var(--primary) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23059669' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
    padding-right: 40px !important;
}

.form-control.is-invalid {
    border-color: var(--error) !important;
}

.invalid-feedback {
    color: var(--error);
    font-size: 0.8125rem;
    margin-top: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .navbar-nav {
        background: var(--bg-white);
        padding: 20px;
        margin-top: 16px;
        border-radius: var(--r-lg);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-nav .nav-item {
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 16px !important;
        border-radius: var(--r-sm);
    }
    
    .btn-get-started {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }
    
    .stat-icon {
        margin: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .support-panel {
        width: 100%;
        max-width: calc(100vw - 48px);
        right: -12px;
    }
}

/* ============================================
   TRONLINK DOWNLOAD MODAL (Mobile)
   ============================================ */
.tronlink-download-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tronlink-download-modal.active {
    opacity: 1;
    visibility: visible;
}

.download-modal-content {
    background: var(--bg-white);
    border-radius: var(--r-2xl);
    padding: 40px 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tronlink-download-modal.active .download-modal-content {
    transform: scale(1);
}

.download-modal-icon {
    margin-bottom: 24px;
}

.download-modal-icon img {
    border-radius: 50%;
    box-shadow: var(--shadow-green);
}

.download-modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.download-modal-content > p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.download-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--r-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.download-btn.primary {
    background: var(--gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-green);
}

.download-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -8px rgba(5, 150, 105, 0.5);
}

.download-btn.secondary {
    background: var(--bg-gray);
    color: var(--text-body);
    border: 1px solid var(--border);
}

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

.download-modal-note {
    margin-top: 24px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.download-modal-note i {
    color: var(--primary);
}

/* Mobile Steps */
.mobile-steps {
    background: var(--bg-gray);
    border-radius: var(--r-md);
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.mobile-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
    color: var(--text-body);
}

.mobile-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mobile-step:first-child {
    padding-top: 0;
}

.mobile-step .step-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--text-white);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.mobile-step strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Download Divider */
.download-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
}

.download-divider::before,
.download-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.download-divider span {
    font-size: 0.8125rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Outline Button */
.download-btn.outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    width: 100%;
}

.download-btn.outline:hover {
    background: var(--primary-50);
    color: var(--primary-dark);
}

/* ============================================
   MOBILE NOTICE (Form Replacement)
   ============================================ */
.mobile-notice {
    text-align: center;
    padding: 20px 0;
}

.mobile-notice-icon {
    margin-bottom: 24px;
}

.mobile-notice-icon img {
    border-radius: 50%;
    box-shadow: var(--shadow-green);
}

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

.mobile-notice > p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto 32px;
}

.mobile-steps-card {
    background: var(--bg-gray);
    border-radius: var(--r-xl);
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.mobile-step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-step-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mobile-step-item:first-child {
    padding-top: 0;
}

.mobile-step-item .step-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.mobile-step-item .step-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-step-item .step-content strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.mobile-step-item .step-content span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.mobile-step-item .step-content .site-url {
    color: var(--primary);
    font-weight: 600;
}

.mobile-open-btn {
    width: 100%;
    margin-bottom: 20px;
}

.mobile-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.mobile-divider::before,
.mobile-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.mobile-divider span {
    font-size: 0.8125rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.mobile-download-btn {
    width: 100%;
    margin-bottom: 24px;
}

.mobile-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.mobile-note i {
    color: var(--primary);
}
