:root {
    /* Primary Colors */
    --deep-indigo: #2D3561;
    --white: #FFFFFF;
    --electric-blue: #0085FF;
    
    /* Secondary Colors */
    --magenta: #E91E63;
    --cyan: #00D9FF;
    --soft-gray: #F4F6F9;
    --success-green: #10B981;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--deep-indigo);
    background: var(--soft-gray);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Display', serif;
}

/* Navigation */
.navbar {
    background: var(--white) !important;
    box-shadow: 0 2px 12px rgba(45, 53, 97, 0.08);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--deep-indigo) !important;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 28px;
    width: auto;
    vertical-align: middle;
}

.nav-link {
    color: var(--deep-indigo) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--electric-blue) !important;
}

/* Base Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-nav-primary {
    background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
    color: var(--white) !important;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 133, 255, 0.3);
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--deep-indigo) 0%, #1a1f3d 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 133, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    left: -10%;
    bottom: -10%;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(120deg, var(--electric-blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 133, 255, 0.4);
    color: var(--white);
    text-decoration: none;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    text-decoration: none;
}

/* Document Mockup */
.document-mockup {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.document-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-magenta { background: var(--magenta); }
.dot-blue { background: var(--electric-blue); }
.dot-green { background: var(--success-green); }

.document-line {
    height: 8px;
    background: var(--soft-gray);
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.document-line.highlight-line {
    background: linear-gradient(90deg, var(--electric-blue), var(--cyan));
    height: 12px;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--deep-indigo);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--soft-gray);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(45, 53, 97, 0.12);
    border-color: var(--electric-blue);
}

.feature-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-icon.icon-blue {
    background: linear-gradient(135deg, rgba(0, 133, 255, 0.1), rgba(0, 217, 255, 0.1));
    color: var(--electric-blue);
}

.feature-icon.icon-magenta {
    background: rgba(233, 30, 99, 0.1);
    color: var(--magenta);
}

.feature-icon.icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--deep-indigo);
}

.feature-text {
    color: #666;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: var(--soft-gray);
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(45, 53, 97, 0.08);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.pricing-card.featured {
    border-color: var(--electric-blue);
    box-shadow: 0 16px 48px rgba(0, 133, 255, 0.2);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(45, 53, 97, 0.12);
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--deep-indigo);
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: #666;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    color: var(--success-green);
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-pricing:hover {
    text-decoration: none;
}

.btn-pricing-primary {
    background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
    color: var(--white);
    border: none;
    text-decoration: none;
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 133, 255, 0.3);
    color: var(--white);
    text-decoration: none;
}

.btn-pricing-secondary {
    background: var(--white);
    color: var(--deep-indigo);
    border: 2px solid var(--deep-indigo);
    text-decoration: none;
}

.btn-pricing-secondary:hover {
    background: var(--deep-indigo);
    color: var(--white);
    text-decoration: none;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: var(--white);
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 133, 255, 0.3);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--deep-indigo);
}

.step-text {
    color: #666;
    line-height: 1.7;
}

/* Security strip (hero) */
.security-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 500;
}

.security-shield-icon {
    color: var(--success-green);
    font-size: 1rem;
}

.security-badge .security-shield-icon i {
    color: inherit;
}

/* Security section (shield cards) */
.security-section {
    padding: 5rem 0;
    background: var(--white);
    border-top: 1px solid rgba(45, 53, 97, 0.08);
}

.shield-card {
    background: var(--soft-gray);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    border: 2px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.shield-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.15) 0%, transparent 100%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    pointer-events: none;
}

.shield-card:hover {
    border-color: var(--success-green);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.12);
    transform: translateY(-4px);
}

.shield-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(0, 133, 255, 0.1));
    color: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.shield-card-title {
    font-size: 1.35rem;
    color: var(--deep-indigo);
    margin-bottom: 1rem;
}

.shield-card-text {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-indigo) 0%, #1a1f3d 100%);
    position: relative;
    overflow: visible;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 133, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

/* Legal Disclaimer Section */
.disclaimer-section {
    padding: 3rem 0;
    background: var(--soft-gray);
    border-top: 3px solid var(--electric-blue);
}

.disclaimer-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(45, 53, 97, 0.08);
    border-left: 4px solid var(--magenta);
}

.disclaimer-title {
    font-size: 1.5rem;
    color: var(--deep-indigo);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.disclaimer-title i {
    color: var(--magenta);
}

.disclaimer-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.disclaimer-text strong {
    color: var(--deep-indigo);
}

/* Footer */
.footer {
    background: var(--deep-indigo);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 28px;
    width: auto;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--electric-blue);
    transform: translateY(-3px);
    color: var(--white);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .pricing-amount {
        font-size: 2.5rem;
    }
}

