/* ============================================
   HitPublish - Centralized Main Styles
   ============================================ */

:root {
    --accent: #3B82F6;
    --accent-light: #60A5FA;
    --accent-dark: #2563EB;
    --accent-glow: rgba(59, 130, 246, 0.3);
    --electric: #0EA5E9;
    --electric-dim: rgba(14, 165, 233, 0.1);
    --white: #FFFFFF;
    --light: #F8FAFC;
    --light-card: #FFFFFF;
    --light-elevated: #F1F5F9;
    --dark: #0F172A;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --border: rgba(15, 23, 42, 0.08);
    --border-strong: rgba(15, 23, 42, 0.12);
    --gradient-hero: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 50%, #F0F9FF 100%);
    --gradient-accent: linear-gradient(135deg, #2563EB 0%, #3B82F6 50%, #60A5FA 100%);
    --gradient-electric: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    width: 100%;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

/* Animated Background */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   NAVIGATION - Refined & Sexy
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Home page: nav starts at top 42px, transparent until scrolled */
body.home .nav {
    top: 42px;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    padding: 1.5rem 0;
}

body.home .nav.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 1rem 0;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.85;
}

.logo i {
    font-size: 1.3rem;
    color: var(--accent);
}

.logo strong {
    font-weight: 800;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link.active {
    color: var(--accent);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-actions .btn-ghost {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
}

.nav-actions .btn-primary {
    padding: 0.65rem 1.5rem;
    font-size: 0.875rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.05);
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 16px;
}

.btn-electric {
    background: var(--gradient-electric);
    color: white;
    font-weight: 700;
}

.btn-electric:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--electric-dim);
}

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

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 1.35rem;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-toggle:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--accent);
}

.mobile-toggle:active {
    transform: scale(0.96);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 11.5rem 0 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: -1;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: pulse-glow 8s ease-in-out infinite;
}

.hero-glow-1 {
    top: -20%;
    right: -10%;
    background: var(--accent);
}

.hero-glow-2 {
    bottom: -30%;
    left: -10%;
    background: var(--electric);
    animation-delay: 4s;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.35; }
}

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

.hero-text {
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--electric-dim);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-badge i {
    font-size: 1rem;
    color: var(--electric);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    color: var(--text-primary);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-item i {
    color: #10B981;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.dashboard-mock {
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.02) inset;
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-mock:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.02);
}

.mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.mock-dots {
    display: flex;
    gap: 6px;
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mock-dot:nth-child(1) { background: #FF5F57; }
.mock-dot:nth-child(2) { background: #FEBC2E; }
.mock-dot:nth-child(3) { background: #28C840; }

.mock-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mock-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    padding: 1.25rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.stat-card:nth-child(2) {
    background: linear-gradient(135deg, var(--electric) 0%, #0EA5E9 100%);
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

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

.mock-sites {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: var(--light);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.site-row:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.site-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.site-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.site-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: blink 2s ease infinite;
}

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

/* Floating Elements */
.float-element {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 5%;
    right: -10%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 10%;
    left: -5%;
    animation-delay: 2s;
}

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

.float-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.float-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.float-text {
    font-size: 0.85rem;
}

.float-text strong {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
}

.float-text span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Stats Bar */
.stats-bar {
    background: var(--dark);
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

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

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

.stat-value {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Section Styles */
.section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Page Hero (sub-pages) */
.page-hero {
    padding: 11.5rem 0 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Page Header (contact, privacy, terms) */
.page-header {
    padding: 11.5rem 0 4rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.header-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.header-glow-1 {
    top: -20%;
    right: 10%;
    background: var(--accent);
}

.header-glow-2 {
    bottom: -30%;
    left: 10%;
    background: var(--electric);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-dark);
}

.breadcrumb i {
    font-size: 0.7rem;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.page-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 1.5rem;
}

/* Content Wrapper */
.content-wrapper {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-group input.error,
.form-group textarea.error {
    border-color: #EF4444;
}

.form-error {
    color: #EF4444;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.form-success {
    color: #10B981;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Contact Success */
.success-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 0 4rem;
    position: relative;
    z-index: 1;
}

.success-card {
    max-width: 500px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.success-card h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.success-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Privacy / Terms Content */
.privacy-content {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
}

.content-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.content-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.content-section h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.content-section p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-section a {
    color: var(--accent);
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Features Section */
.features {
    background: var(--light);
}

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

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

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

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

.feature-card p a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}
.feature-card p a:hover {
    text-decoration: underline;
}

/* How It Works */
.how-it-works {
    background: var(--white);
}

.steps-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-line {
    position: absolute;
    top: 60px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--electric));
    z-index: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

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

.step-number {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--white);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.step-item:hover .step-number {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1);
    border-color: transparent;
}

.step-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

/* Testimonials */
.testimonials {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    color: #F59E0B;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: var(--text-primary);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    opacity: 1;
    pointer-events: none;
}

.pricing-card {
    background: var(--light);
    border: 2px solid var(--accent);
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.pricing-left {
    padding-right: 2rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-accent);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.pricing-divider {
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

.pricing-center {
    text-align: center;
    padding: 0 2rem;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 0.5rem;
}

.price-value {
    font-family: 'Syne', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-cta {
    width: 100%;
}

.pricing-cta .btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pricing-guarantee i {
    color: var(--electric);
}

.pricing-right {
    padding-left: 2rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-features li i {
    width: 22px;
    height: 22px;
    background: var(--electric-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--accent-dark);
    flex-shrink: 0;
}

/* FAQ Section */
.faq {
    background: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--accent);
    font-size: 1.2rem;
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 2.2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 50%, #60A5FA 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
}

.cta-feature i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-light);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Live Activity Notification */
.live-activity {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 100;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 320px;
}

.live-activity.show {
    transform: translateX(0);
}

.live-activity-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.live-activity-content {
    flex: 1;
}

.live-activity-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.live-activity-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-dark));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    padding: 0.75rem;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.urgency-banner span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.urgency-banner .spots-count {
    background: white;
    color: var(--accent-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
}

/* Typing Effect */
.typing-text {
    display: inline;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--accent);
    margin-left: 4px;
    animation: blink-cursor 1s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes blink-cursor {
    50% { opacity: 0; }
}

/* Mystery Teaser */
.mystery-teaser {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.08);
    border: 1px dashed var(--accent);
    border-radius: 100px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.mystery-teaser:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: scale(1.02);
}

.mystery-teaser i {
    animation: bounce-right 1s ease infinite;
}

@keyframes bounce-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Glowing CTA */
.btn-glow {
    position: relative;
    overflow: visible;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: var(--gradient-accent);
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    transition: all 0.4s ease;
    border-radius: inherit;
}

.btn-glow:hover::after {
    filter: blur(30px);
    opacity: 0.7;
}

/* Animated Stats */
.live-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.counter-pulse {
    animation: counter-pop 0.3s ease;
}

@keyframes counter-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Sneak Peek Section */
.sneak-peek {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sneak-peek-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #F59E0B 0%, #EAB308 100%);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    animation: pulse-badge 2s ease infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
}

.sneak-peek h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.sneak-peek p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.preview-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.preview-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s ease;
    cursor: pointer;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    border-color: var(--accent);
}

.preview-card-icon {
    width: 50px;
    height: 50px;
    background: var(--electric-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
}

.preview-card-text {
    text-align: left;
}

.preview-card-text strong {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.preview-card-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.locked-overlay {
    position: relative;
}

.locked-overlay::after {
    content: '🔒 Unlock with Free Trial';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    white-space: nowrap;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 90vw);
    max-width: 90vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(15, 23, 42, 0.06);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.5rem 1.25rem;
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 40px;
    min-height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.mobile-menu-close:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--accent);
}

.mobile-menu-close:active {
    transform: scale(0.95);
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu-links a {
    display: block;
    padding: 0.9rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-links a:hover {
    background: rgba(59, 130, 246, 0.08);
    color: var(--accent);
}

.mobile-menu-links a.active {
    background: rgba(59, 130, 246, 0.12);
    color: var(--accent);
    font-weight: 600;
}

.mobile-menu-btns {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu-btns .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    /* Nav: reduce spacing for tablet */
    .nav,
    body.home .nav {
        padding: 0.875rem 0;
    }

    .nav-links {
        gap: 1.75rem;
    }

    .nav-link {
        font-size: 0.875rem;
    }

    .nav-actions .btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.815rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .float-element {
        display: none;
    }

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

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

    .steps-line {
        display: none;
    }

    .pricing-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-left,
    .pricing-right {
        padding: 0;
    }

    .pricing-divider {
        width: 100%;
        height: 2px;
        margin: 1rem 0;
    }

    .pricing-features {
        align-items: center;
    }
}

@media (max-width: 900px) {
    /* Switch to mobile menu on small tablets */
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    body.home .nav,
    .nav {
        top: 0;
    }

    .nav {
        padding: 0.75rem 0;
    }

    .logo img {
        max-height: 26px;
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .container {
        padding: 0 1rem;
    }

    .nav {
        padding: 0.65rem 0;
    }

    .logo img {
        max-height: 24px;
    }

    .mobile-menu {
        width: min(300px, 88vw);
        padding: 1.25rem 1rem;
    }

    .mobile-menu-links a {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

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

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

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

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .float-element {
        display: none !important;
    }

    .dashboard-mock {
        transform: none;
        margin: 0 auto;
        max-width: 100%;
    }

    .dashboard-mock:hover {
        transform: none;
    }

    .hero-bg {
        overflow: hidden;
    }

    .hero-glow {
        width: 400px;
        height: 400px;
    }

    .hero-glow-1 {
        right: -20%;
        top: -10%;
    }

    .hero-glow-2 {
        left: -20%;
        bottom: -10%;
    }

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

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

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

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

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 1.75rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .price-value {
        font-size: 4rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .live-activity {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
    }

    .mystery-teaser {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .preview-cards {
        flex-direction: column;
        align-items: center;
    }

    .preview-card {
        width: 100%;
        max-width: 320px;
    }

    .sneak-peek {
        padding: 4rem 0;
    }

    .pricing-features {
        align-items: flex-start;
        padding-left: 1rem;
    }

    .page-header,
    .page-hero {
        padding: 7rem 0 3rem;
    }

    .page-title {
        font-size: 2rem;
    }

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

    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .success-section {
        padding: 7rem 0 3rem;
    }

    .success-card {
        padding: 2rem 1.5rem;
    }

    .privacy-content {
        padding: 1.5rem 1rem;
    }

    .content-section h2 {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .nav {
        padding: 0.55rem 0;
    }

    .logo img {
        max-height: 22px;
    }

    .mobile-menu {
        width: min(100%, 320px);
        padding: 1rem 1rem;
    }

    .mobile-menu-links a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .mobile-menu-btns .btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

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

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .price-value {
        font-size: 3.5rem;
    }

    .currency {
        font-size: 1.5rem;
    }

    .privacy-content {
        padding: 1.25rem 1rem;
    }
}

/* ============================================
   COOKIE CONSENT - BOTTOM RIGHT FLOATING CARD
   ============================================ */

.cookie-consent-overlay {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    left: auto;
    top: auto;
    z-index: 99999;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(120%) translateY(10px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.35s ease,
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent-overlay.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0);
}

.cookie-consent-modal {
    background: #ffffff;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    max-width: 340px;
    width: calc(100vw - 2.5rem);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.cookie-consent-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.5rem;
}

.cookie-consent-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--electric) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}

.cookie-consent-modal h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.cookie-consent-modal p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.45;
    margin: 0 0 0.875rem 0;
}

.cookie-consent-modal a {
    color: var(--accent);
    text-decoration: none;
}

.cookie-consent-modal a:hover {
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.5rem;
}

.cookie-consent-actions .btn {
    flex: 1;
    min-width: 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

.cookie-consent-actions .btn-primary {
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

@media (max-width: 480px) {
    .cookie-consent-overlay {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .cookie-consent-modal {
        max-width: none;
    }
}

/* ============================================
   LANDING PAGES - Minimal Nav, Conversion-Focused
   ============================================ */

body.landing-page .nav {
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 1rem 0;
}

body.landing-page .nav-links {
    display: none;
}

body.landing-page .nav-inner {
    justify-content: space-between;
}

body.landing-page .nav-actions {
    margin-left: 0;
}

body.landing-page .mobile-toggle {
    display: none;
}

.lp-hero {
    padding: 6rem 0 3.5rem;
    text-align: center;
}

.lp-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.lp-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.lp-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 36rem;
    margin: 0 auto 2rem;
}

.lp-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.lp-benefit-card {
    background: var(--light-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.25s ease;
}

.lp-benefit-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.08);
}

.lp-benefit-card i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.lp-benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.lp-benefit-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.lp-benefit-card p a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}
.lp-benefit-card p a:hover {
    text-decoration: underline;
}

.lp-cta-box {
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
}

.lp-cta-box h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.lp-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.lp-cta-box .btn {
    background: white;
    color: var(--dark);
}

.lp-cta-box .btn:hover {
    background: var(--light);
}

@media (max-width: 768px) {
    .lp-hero h1 {
        font-size: 1.85rem;
    }
}
