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

/* Text Selection Styling */
::selection {
    background-color: var(--primary);
    color: var(--secondary);
    text-shadow: none;
}

::-moz-selection {
    background-color: var(--primary);
    color: var(--secondary);
    text-shadow: none;
}

/* For better visibility on different backgrounds */
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {
    background-color: var(--primary);
    color: var(--secondary);
}

p::selection,
li::selection,
span::selection,
a::selection {
    background-color: var(--primary);
    color: var(--secondary);
}

/* Special selection for light backgrounds */
.btn-primary::selection,
.btn-secondary::selection {
    background-color: rgba(255, 255, 255, 0.3);
    color: inherit;
}

:root {
    /* Primary Colors - Cool Mint */
    --primary: #34F5C5;
    --primary-dark: #2DD4BF;
    --primary-light: #5EEAD4;
    
    /* Secondary Colors - Deep Navy */
    --secondary: #0B1220;
    --secondary-light: #1E293B;
    
    /* Accent Colors - Hot Coral */
    --accent: #FF6B6B;
    --accent-dark: #FF5252;
    --accent-light: #FF8E8E;
    
    /* Neutral Colors */
    --text-primary: #0B1220;
    --text-secondary: #475569;
    --text-tertiary: #94A3B8;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-tertiary: #F3F4F6;
    --bg-dark: #030712;
    
    /* Border Colors */
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    
    /* Status Colors */
    --success: #10B981;
    --error: #FF6B6B;
    --warning: #F59E0B;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.98) 10%, rgba(249, 250, 251, 0.95) 30%, rgba(52, 245, 197, 0.06) 50%, rgba(52, 245, 197, 0.08) 70%, rgba(52, 245, 197, 0.10) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header and Navigation */
header {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

nav {
    padding: 1rem 0;
}

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

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo-link:active {
    transform: scale(0.98);
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    min-width: 40px;
    object-fit: contain;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: transform 0.3s ease;
    vertical-align: middle;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    background: transparent;
}

.logo-link:hover .logo-img {
    transform: rotate(-5deg) scale(1.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
}

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

.nav-links a:active {
    transform: translateY(0);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 245, 197, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active::before, .btn-secondary:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 4px 12px rgba(52, 245, 197, 0.3);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 245, 197, 0.4);
    color: var(--secondary);
}

.btn-secondary {
    background: white;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 6px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

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

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: transparent;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step {
    position: relative;
    padding: 2.5rem;
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(52, 245, 197, 0.2);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(52, 245, 197, 0.03) 0%, var(--bg-primary) 100%);
}

.step:active {
    transform: translateY(-4px) scale(1.01);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary);
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.step:hover .step-number {
    opacity: 0.25;
}

.step-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(52, 245, 197, 0.1) 0%, rgba(52, 245, 197, 0.05) 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover .step-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(52, 245, 197, 0.2) 0%, rgba(52, 245, 197, 0.1) 100%);
}

.step-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.step h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--font-size-base);
}

/* What It's Not */
.what-its-not {
    padding: 6rem 0;
    background: transparent;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: transparent;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion-item {
    margin-bottom: 1rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(11, 18, 32, 0.08);
}

.faq-accordion-item.active {
    border-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(11, 18, 32, 0.12);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(11, 18, 32, 0.02);
}

.faq-question:focus {
    outline: none;
    background: rgba(11, 18, 32, 0.04);
}

.faq-question span {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-accordion-item.active .faq-question span {
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 2rem;
}

.faq-accordion-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--font-size-base);
    margin: 0;
}

.faq-answer ul, .faq-answer ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-answer a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.not-list {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.not-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.not-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.15);
    border-left-width: 6px;
}

.not-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.not-item:hover .not-icon-wrapper {
    background: rgba(255, 107, 107, 0.2);
    transform: scale(1.1);
}

.not-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    stroke-width: 2.5;
}

.not-content h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.not-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Security Section */
.security {
    padding: 6rem 0;
    background: transparent;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.security-item {
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.security-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 16px 32px rgba(52, 245, 197, 0.15);
    background: linear-gradient(135deg, rgba(52, 245, 197, 0.03) 0%, var(--bg-primary) 100%);
}

.security-icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(52, 245, 197, 0.1) 0%, rgba(52, 245, 197, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.security-item:hover .security-icon-wrapper {
    transform: scale(1.15) rotate(-5deg);
    background: linear-gradient(135deg, rgba(52, 245, 197, 0.2) 0%, rgba(52, 245, 197, 0.1) 100%);
}

.security-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.security-item:hover .security-icon {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.security-item h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.security-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--font-size-base);
}

.security-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.security-item a:hover {
    text-decoration: underline;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(52, 245, 197, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 3rem 2.5rem;
    background: var(--bg-primary);
    border-radius: 20px;
    border: 3px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(52, 245, 197, 0.3);
    border-color: var(--primary);
}

.pricing-card-featured {
    border: 3px solid var(--primary);
    background: linear-gradient(135deg, rgba(52, 245, 197, 0.12) 0%, rgba(52, 245, 197, 0.05) 100%);
    box-shadow: 0 8px 32px rgba(52, 245, 197, 0.25);
}

.pricing-card-featured:hover {
    box-shadow: 0 24px 56px rgba(52, 245, 197, 0.35);
    transform: translateY(-10px);
    border-color: var(--primary-dark);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 20px rgba(52, 245, 197, 0.5);
    border: 2px solid var(--primary-dark);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.price-period {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-savings {
    font-size: var(--font-size-base);
    color: var(--secondary);
    font-weight: 700;
    margin-top: 0.75rem;
    background: var(--primary);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(52, 245, 197, 0.3);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    width: 100%;
    margin-top: auto;
    padding: 16px 32px;
    font-size: var(--font-size-lg);
    font-weight: 600;
    align-self: flex-end;
}

/* Early Access */
.early-access {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1E293B 100%);
    color: white;
}

.early-access-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.early-access .section-header {
    margin-bottom: 2.5rem;
}

.early-access .section-label {
    background: var(--primary);
    color: var(--secondary);
}

.early-access h2 {
    color: white;
}

.early-access .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.waitlist-form {
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.waitlist-form input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: var(--font-size-base);
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.waitlist-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    transition: opacity 0.3s ease;
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(52, 245, 197, 0.2);
}

.waitlist-form input:focus::placeholder {
    opacity: 0.5;
}

.waitlist-form .btn-primary {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 4px 12px rgba(52, 245, 197, 0.3);
}

.waitlist-form .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--secondary);
}

.form-note {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

/* Policy Pages */
.policy-page {
    padding: 3rem 0 5rem;
}

.policy-page h1 {
    font-size: var(--font-size-4xl);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.last-updated {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: var(--font-size-sm);
}

.policy-page section {
    margin-bottom: 3.5rem;
}

.policy-page h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    margin-top: 3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.policy-page h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--text-primary);
    font-weight: 600;
}

.policy-page ul, .policy-page ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.policy-page li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.policy-page p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-page a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.policy-page a:hover {
    text-decoration: underline;
}

.highlight-box {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
    border-color: var(--primary);
}

.policy-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: transparent;
}

/* Contact Page (for backward compatibility if needed) */
.contact-page {
    padding: 3rem 0 5rem;
}

.contact-page h1 {
    font-size: var(--font-size-4xl);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    padding: 2.5rem;
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(11, 18, 32, 0.12);
    border-color: var(--secondary);
}

.contact-icon-wrapper {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(52, 245, 197, 0.1) 0%, rgba(52, 245, 197, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover .contact-icon-wrapper {
    transform: scale(1.15) rotate(-5deg);
    background: linear-gradient(135deg, rgba(52, 245, 197, 0.2) 0%, rgba(52, 245, 197, 0.1) 100%);
}

.contact-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.contact-card h2,
.contact-card h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-link {
    color: var(--primary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.response-time {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-top: 0.75rem;
    font-style: italic;
}

.faq {
    margin: 4rem 0;
}

.faq h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

/* Contact Page FAQ - uses same accordion styles */
.contact-page .faq-accordion {
    max-width: 800px;
    margin: 2rem auto 0;
}

.contact-page .faq h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
}

.company-info {
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
}

.company-info h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: rotate(-5deg) scale(1.1);
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    transition: color 0.3s ease;
}

.footer-logo:hover .footer-logo-text {
    color: var(--primary);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.footer-section h4 {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color 0.2s;
}

.footer-section a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: var(--font-size-3xl);
    }

    .subtitle {
        font-size: var(--font-size-lg);
    }

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

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

    .form-group {
        flex-direction: column;
    }

    .waitlist-form input,
    .waitlist-form button {
        width: 100%;
    }

    .nav-links {
        gap: 1rem;
        font-size: var(--font-size-xs);
    }

    .policy-page h1 {
        font-size: var(--font-size-3xl);
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }
}

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

    .hero {
        padding: 4rem 0;
    }

    .how-it-works,
    .what-its-not,
    .security,
    .early-access {
        padding: 4rem 0;
    }
}
