/* CSS Reset & Variables - English Navy Theme */
:root {
    /* Navy/Slate Theme */
    --bg-dark: #0f172a; 
    --bg-darker: #020617; 
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    /* English Colors: Royal Blue and Red */
    --primary: #2563eb; 
    --primary-hover: #1d4ed8; 
    --secondary: #dc2626; 
    --accent: #facc15; 
    
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-glow: rgba(37, 99, 235, 0.15);
    
    --font-main: 'Outfit', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-darker);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.bg-glow-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: rgba(37, 99, 235, 0.3); /* Blue glow */
    animation: drift 25s ease-in-out infinite alternate;
}

.bg-glow-2 {
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: rgba(220, 38, 38, 0.15); /* Red glow */
    animation: drift 20s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 10%) scale(1.1); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Typography & Colors */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

p {
    color: var(--text-muted);
}

.text-accent {
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.text-accent::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 30%;
    background: rgba(37, 99, 235, 0.3);
    z-index: -1;
    transform: skewX(-15deg);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.6);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    padding: 16px;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.glow {
    position: relative;
    z-index: 1;
}

.glow::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    border-radius: 16px;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow:hover::before {
    opacity: 0.6;
}

/* Glassmorphism Classes */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
    transition: var(--transition);
}

.glass-header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    background: rgba(2, 6, 23, 0.9);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

/* Header */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-icon {
    color: var(--primary);
}

.desktop-nav {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.desktop-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 18px;
    border-radius: 100px;
}

.desktop-nav a:hover {
    color: var(--text-main);
    background: rgba(37, 99, 235, 0.2);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.4);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.burger-menu.active span:nth-child(2) {
    opacity: 0;
}
.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 105; /* Higher than header to cover it completely */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.close-mobile-nav {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-mobile-nav:hover {
    color: white;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    padding: 0 32px;
}

.mobile-nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

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

.mobile-cta {
    margin-top: 16px;
    font-size: 1.125rem;
    padding: 14px 32px;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #fca5a5;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 95%;
}

.hero-triggers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1.05rem;
}

.trigger i {
    color: var(--primary);
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

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

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    animation: pulse 2s infinite;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-main-photo {
    position: absolute;
    width: 100%;
    max-width: 500px;
    right: 0;
    top: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    aspect-ratio: 4/3;
    z-index: 1;
}

.floating-card {
    position: absolute;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(20px);
    background: rgba(15, 23, 42, 0.9);
    z-index: 2;
}

.stat-card {
    left: -30px;
    bottom: 50px;
    border-radius: 16px;
}

.icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info strong {
    font-size: 1.25rem;
    line-height: 1.2;
}

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

/* Animations */
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(220, 38, 38, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.float-anim-1 {
    animation: floatingObj 4s ease-in-out infinite;
}

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

/* Common Section Styles */
section:not(.hero) {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    transition: var(--transition);
    background: rgba(30, 41, 59, 0.4);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.15);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.benefit-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

/* About / Process */
.about {
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.8), transparent);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.process-list {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-list li {
    display: flex;
    gap: 24px;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--glass-border);
    line-height: 1;
    min-width: 64px;
    flex-shrink: 0;
    text-align: center;
}

.process-list li:hover .step-num {
    color: var(--primary);
    -webkit-text-stroke: 0;
    transition: var(--transition);
}

.step-info h4 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-circle {
    width: 300px;
    height: 300px;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 50px rgba(37, 99, 235, 0.1);
}

.ring {
    position: absolute;
    inset: -20px;
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

.ring-2 {
    inset: -40px;
    border-style: solid;
    border-color: rgba(37, 99, 235, 0.2) transparent;
    animation: spin 20s linear infinite reverse;
}

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

.core-value {
    text-align: center;
}

.core-value h3 {
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 24px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px 32px;
    transition: var(--transition);
    background: rgba(30, 41, 59, 0.4);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
}

.pricing-card.popular {
    border-color: rgba(37, 99, 235, 0.5);
    background: rgba(30, 41, 59, 0.7);
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--primary);
    margin-top: 4px;
}

.pricing-card .btn {
    margin-top: auto;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.review-item {
    background: rgba(30, 41, 59, 0.4);
    display: flex;
    flex-direction: column;
}

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

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

.stars {
    color: var(--accent);
    font-size: 0.875rem;
}



/* FAQ Accordion */
.faq-container {
    max-width: 800px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    padding: 0;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.4);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    padding: 0 24px;
    transition: all 0.3s ease;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 24px 24px 24px;
    opacity: 1;
}

/* Final CTA */
.final-cta {
    padding-bottom: 120px;
}

.cta-container {
    text-align: center;
    padding: 64px 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-color: rgba(37, 99, 235, 0.3);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content p {
    margin: 24px 0 40px;
    font-size: 1.125rem;
}

.guarantee {
    margin-top: 24px;
    font-size: 0.875rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #020617;
    padding: 64px 0 24px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.875rem;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.link-column h4 {
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.link-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
    font-size: 0.875rem;
}

.link-column a:hover {
    color: var(--primary);
}

.socials {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    font-size: 1.25rem;
    color: var(--text-main);
}

.socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.legal {
    display: flex;
    gap: 24px;
}

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

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-content {
    width: 100%;
    max-width: 450px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(255,255,255,0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: white;
}

.modal-header {
    margin-bottom: 32px;
    text-align: center;
}

.modal-header p {
    font-size: 0.875rem;
    margin-top: 8px;
}

.selected-plan-card {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-label i {
    color: var(--accent);
}

.plan-value {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    background: var(--primary);
    padding: 4px 12px;
    border-radius: 8px;
    cursor: default;
}

.plan-value-wrapper {
    position: relative;
    display: inline-block;
}

.plan-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 12px;
    width: 280px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    color: var(--text-main);
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    pointer-events: none;
    text-align: left;
}

.plan-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border-width: 8px;
    border-style: solid;
    border-color: rgba(15, 23, 42, 0.98) transparent transparent transparent;
}

.plan-tooltip-price {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.plan-tooltip-list {
    margin-left: 16px;
    color: var(--text-muted);
    list-style: disc;
}

.plan-tooltip-list li {
    margin-bottom: 6px;
}

@media (min-width: 769px) {
    .plan-value-wrapper:hover .plan-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.input-group input, .input-group select {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.3);
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0,0,0,0.5);
}

.select-group select {
    appearance: none;
    cursor: pointer;
}

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

.terms-agree {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.terms-agree a {
    color: var(--primary);
    text-decoration: none;
}

/* Success Message */
.hidden {
    display: none !important;
}

.success-message {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 24px;
}

.success-message h3 {
    margin-bottom: 12px;
}

.success-message p {
    margin-bottom: 32px;
}

/* Scroll Reveals */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

.fade-left {
    transform: translateX(50px);
}

.fade-left.active {
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-triggers { 
        display: inline-flex;
        align-items: flex-start;
        text-align: left;
    }
    .hero-cta { align-items: center; }
    .subtitle { margin: 0 auto 32px auto; }
    
    .hero-visual {
        margin-top: 64px;
        display: flex;
        justify-content: center;
        height: auto;
    }
    
    .hero-main-photo {
        position: relative;
        top: 0;
    }
    
    .visual-card {
        position: relative;
        right: auto;
        top: auto;
    }
    
    .stat-card { display: none; }
    
    .about-container { grid-template-columns: 1fr; }
    .about-visual { order: -1; }
    .footer-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .header-btn { display: none; }
    .burger-menu { display: flex; }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .plan-value {
        cursor: pointer;
    }
    
    .plan-value-wrapper.show-tooltip .plan-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
