/* ========================================
   CRYPTOVAULT - FINTECH/CRYPTO PLATFORM
   Improved Design with Better Structure
   ======================================== */

:root {
    /* Dark Palette */
    --bg-primary: #0A0A0F;
    --bg-secondary: #12121A;
    --bg-card: rgba(255, 255, 255, 0.05);
    /* Increased from 0.03 */
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    --border-color: rgba(255, 255, 255, 0.12);
    /* Increased from 0.08 */
    --border-hover: rgba(255, 255, 255, 0.25);

    /* Text */
    --text-white: #FFFFFF;
    --text-gray: #D1D5DB;
    /* Lighter gray for better readability */
    --text-muted: #9CA3AF;

    /* Accent Colors */
    --purple: #8B5CF6;
    --purple-light: #A78BFA;
    --cyan: #06B6D4;
    --green: #10B981;
    --red: #EF4444;

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-gap: 120px;
    --container-max: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: var(--purple);
    color: var(--text-white);
}

/* ========================================
   WATERMARK
   ======================================== */
.watermark {
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    pointer-events: none;
    z-index: 9999;
    writing-mode: vertical-rl;
}

/* ========================================
   ANIMATED BACKGROUND
   ======================================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05), transparent 70%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: var(--purple);
    top: -25%;
    right: -15%;
    animation: floatOrb1 20s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--cyan);
    bottom: -15%;
    left: -10%;
    animation: floatOrb2 25s ease-in-out infinite;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: #EC4899;
    top: 40%;
    left: 25%;
    opacity: 0.25;
    animation: floatOrb3 18s ease-in-out infinite;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-60px, 60px) scale(1.1);
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, -40px) scale(0.95);
    }
}

@keyframes floatOrb3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-40px, -60px);
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Ensure all sections are visible by default (GSAP fallback) */
.feature-card,
.stat-card,
.pricing-card,
.testimonial-card,
.faq-item,
.security-item,
.partner,
.hero-badge,
.hero-content h1,
.hero-desc,
.hero-actions,
.hero-metrics,
.dashboard-card,
.floating-badge,
.cta-card,
.security-text,
.shield-container {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1rem;
    font-weight: 500;
}

p {
    color: var(--text-gray);
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.35);
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-primary.full {
    width: 100%;
}

.btn-primary i {
    width: 18px;
    height: 18px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--purple);
}

.btn-outline.large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-outline.full {
    width: 100%;
}

.btn-outline i {
    width: 18px;
    height: 18px;
}

.btn-ghost {
    padding: 10px 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
}

.btn-ghost:hover {
    color: var(--text-white);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-symbol {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
}

.nav-menu a:hover {
    color: var(--text-white);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: 0.3s;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    padding: 140px 24px 80px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-content h1 .line {
    display: block;
}

.hero-desc {
    font-size: 1.15rem;
    max-width: 500px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 32px;
}

.metric {
    text-align: left;
}

.metric-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.dashboard-card {
    width: 100%;
    max-width: 420px;
    padding: 28px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.badge-green {
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
}

.dashboard-balance {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.dashboard-chart {
    height: 80px;
    margin-bottom: 24px;
}

.dashboard-chart svg {
    width: 100%;
    height: 100%;
}

.crypto-tokens {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.token {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: background 0.3s;
}

.token:hover {
    background: rgba(255, 255, 255, 0.05);
}

.token-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}

.token-icon.btc {
    background: #F7931A;
}

.token-icon.eth {
    background: #627EEA;
}

.token-icon.sol {
    background: linear-gradient(135deg, #00FFA3, #DC1FFF);
}

.token-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.token-name {
    font-size: 0.95rem;
    font-weight: 500;
}

.token-amount {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.token-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.token-change.positive {
    color: var(--green);
}

.token-change.negative {
    color: var(--red);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.85rem;
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge i {
    width: 18px;
    height: 18px;
    color: var(--purple);
}

.badge-1 {
    top: 5%;
    right: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1.5s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ========================================
   PARTNERS SECTION
   ======================================== */
.partners-section {
    padding: 48px 24px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partners-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.partners-logos {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.partner {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-gray);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.partner:hover {
    opacity: 1;
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: var(--section-gap) 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.15));
    border-radius: 14px;
}

.feature-icon i {
    width: 28px;
    height: 28px;
    color: var(--purple);
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 80px 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
}

.stat-card .stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.stat-card .stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cyan);
}

.stat-card .stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ========================================
   SECURITY SECTION
   ======================================== */
.security-section {
    padding: var(--section-gap) 24px;
}

.security-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security-text .section-tag {
    margin-bottom: 16px;
}

.security-text h2 {
    margin-bottom: 20px;
}

.security-text>p {
    margin-bottom: 36px;
}

.security-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.security-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    flex-shrink: 0;
}

.security-icon i {
    width: 22px;
    height: 22px;
    color: var(--purple);
}

.security-info strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.security-info span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Shield Visual */
.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: rotateRing 20s linear infinite;
}

.ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(139, 92, 246, 0.2);
    animation: rotateRing 15s linear infinite reverse;
}

.ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(6, 182, 212, 0.3);
    animation: rotateRing 10s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.shield-center {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.shield-center i {
    width: 48px;
    height: 48px;
    color: var(--text-white);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: var(--section-gap) 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.pricing-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1), var(--bg-card));
    border-color: rgba(139, 92, 246, 0.3);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
}

.plan-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.plan-price {
    margin-bottom: 8px;
}

.plan-price .price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-gray);
}

.plan-desc {
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 28px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
}

.plan-features li i {
    width: 18px;
    height: 18px;
    color: var(--green);
}

.plan-features li.disabled {
    color: var(--text-muted);
}

.plan-features li.disabled i {
    color: var(--text-muted);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: var(--section-gap) 24px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.stars {
    font-size: 1.1rem;
    color: #FBBF24;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: var(--section-gap) 24px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question i {
    width: 20px;
    height: 20px;
    color: var(--text-gray);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--section-gap) 24px;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    text-align: center;
}

.cta-card h2 {
    margin-bottom: 16px;
}

.cta-card>p {
    margin-bottom: 32px;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 20px;
}

.cta-form input {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.cta-form input::placeholder {
    color: var(--text-muted);
}

.cta-form input:focus {
    border-color: var(--purple);
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 80px 24px 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-gray);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--text-white);
}

.social-links a i {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-col a {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.footer-col a:hover {
    color: var(--text-white);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --section-gap: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        order: -1;
    }

    .floating-badge {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .security-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .security-visual {
        order: -1;
    }

    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-metrics {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }

    .metric-divider {
        display: none;
    }

    .dashboard-card {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-form {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}