/* ========================================
   SM tech - Solar-Vergleich Schweiz
   Production CSS
   Theme: Bold, modern, glassmorphism
   Colors: #2563eb, #f59e0b, #0f172a
   Font: Outfit
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #2563eb;
    --blue-light: #3b82f6;
    --blue-dark: #1d4ed8;
    --orange: #f59e0b;
    --orange-light: #fbbf24;
    --orange-dark: #d97706;
    --navy: #0f172a;
    --navy-light: #1e293b;
    --navy-medium: #334155;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --white: #ffffff;
    --green: #22c55e;
    --red: #ef4444;
    --font: 'Outfit', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-rgb: 37, 99, 235;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 50%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

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

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.15rem;
    border-radius: var(--radius-md);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: var(--white) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Hero --- */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--blue);
    top: -200px;
    right: -100px;
    opacity: 0.08;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--orange);
    bottom: -100px;
    left: -100px;
    opacity: 0.06;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--blue-light);
    top: 50%;
    left: 50%;
    opacity: 0.05;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--navy);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--navy);
}

.urgency-icon {
    color: var(--orange);
    display: flex;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glass);
    animation: float 6s ease-in-out infinite;
}

.hero-float-card-1 {
    bottom: 80px;
    left: -30px;
    animation-delay: 0s;
}

.hero-float-card-2 {
    top: 40px;
    right: -20px;
    animation-delay: 3s;
}

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

.float-card-icon {
    font-size: 1.5rem;
}

.hero-float-card strong {
    display: block;
    font-size: 1rem;
    color: var(--navy);
}

.hero-float-card span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    color: var(--navy);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Comparison --- */
.comparison {
    padding: 100px 0;
    background: var(--gray-50);
}

.comparison-cards {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    flex: 1;
    max-width: 380px;
    box-shadow: var(--shadow-glass);
    text-align: center;
}

.comparison-without {
    border: 2px solid rgba(239, 68, 68, 0.15);
}

.comparison-with {
    border: 2px solid rgba(34, 197, 94, 0.2);
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.1);
}

.comparison-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--gray-500);
}

.comparison-icon {
    margin-bottom: 16px;
}

.comparison-amount {
    margin-bottom: 28px;
}

.comparison-amount .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-500);
    vertical-align: super;
}

.comparison-amount .amount {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--navy);
}

.comparison-amount.highlight .amount {
    color: var(--green);
}

.comparison-amount .period {
    font-size: 1rem;
    color: var(--gray-400);
}

.comparison-list {
    text-align: left;
    margin-bottom: 24px;
}

.comparison-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.comparison-list li::before {
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.comparison-list li.negative::before {
    content: '\2717';
    color: var(--red);
}

.comparison-list li.positive::before {
    content: '\2713';
    color: var(--green);
}

.comparison-yearly {
    padding: 14px 0;
    border-top: 1px solid var(--gray-200);
    font-size: 0.95rem;
    color: var(--gray-500);
}

.comparison-yearly strong {
    display: block;
    font-size: 1.2rem;
    color: var(--navy);
    margin-top: 4px;
}

.comparison-yearly.savings strong {
    color: var(--green);
}

.comparison-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    z-index: 2;
}

.vs-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.comparison-cta {
    text-align: center;
}

/* --- Reasons --- */
.reasons {
    padding: 100px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.reason-card {
    position: relative;
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden;
}

.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.2);
}

.reason-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.06);
    line-height: 1;
}

.reason-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--blue);
}

.reason-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.reason-card p {
    font-size: 0.925rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* --- Process --- */
.process {
    padding: 100px 0;
    background: var(--navy);
    color: var(--white);
}

.process .section-tag {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--orange);
}

.process .section-header h2 {
    color: var(--white);
}

.process .section-header p {
    color: var(--gray-400);
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    margin-bottom: 48px;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--orange), transparent);
    z-index: 0;
}

.process-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    position: relative;
}

.step-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
}

.step-icon {
    color: var(--orange);
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.925rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.process-cta {
    text-align: center;
}

.process-cta .btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.process-cta .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

/* --- Trust --- */
.trust {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-item {
    text-align: center;
    padding: 24px;
}

.trust-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(37, 99, 235, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--blue);
}

.trust-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--navy);
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* --- Stats Bar --- */
.stats-bar {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

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

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    display: inline;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
    display: inline;
    margin-left: 4px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-top: 8px;
}

/* --- Reviews --- */
.reviews {
    padding: 100px 0;
    background: var(--gray-50);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-glass);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.review-stars {
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.review-stars span {
    color: var(--orange);
    font-size: 1.2rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
}

.review-author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* --- Pricing Table --- */
.pricing {
    padding: 100px 0;
}

.pricing-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    margin-bottom: 20px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.pricing-table th {
    padding: 18px 24px;
    text-align: left;
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
    vertical-align: middle;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.02);
}

.featured-row {
    background: rgba(37, 99, 235, 0.04) !important;
    position: relative;
}

.featured-row td:first-child {
    position: relative;
}

.featured-row td:first-child::after {
    content: 'Beliebt';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-full);
}

.table-sub {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 400;
    margin-top: 2px;
}

.highlight-cell {
    color: var(--green) !important;
    font-weight: 700;
}

.payback-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue);
    font-weight: 600;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-align: center;
    margin-bottom: 32px;
}

.pricing-cta {
    text-align: center;
}

/* --- FAQ --- */
.faq {
    padding: 100px 0;
    background: var(--gray-50);
}

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

.faq-item {
    margin-bottom: 12px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.2);
}

.faq-item.active {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--blue);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--gray-400);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--blue);
}

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* --- Final CTA --- */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.05;
    top: -200px;
    right: -200px;
    filter: blur(80px);
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 540px;
    margin: 0 auto 36px;
}

.final-cta .btn-xl {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    margin-bottom: 40px;
}

.final-cta .btn-xl:hover {
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.final-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.final-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.final-badge svg {
    color: var(--green);
}

/* --- Footer --- */
.footer {
    padding: 60px 0 30px;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: inline-block;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.footer-links a:hover {
    color: var(--blue-light);
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.7;
}

.footer-contact .btn-outline {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--gray-400);
}

.footer-contact .btn-outline:hover {
    border-color: var(--blue-light);
    color: var(--blue-light);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Mobile Overlay --- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* --- Responsive 1024px --- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-grid {
        gap: 40px;
    }

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

    .section-header h2 {
        font-size: 2.1rem;
    }

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

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

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

    .process-line {
        display: none;
    }

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

/* --- Responsive 768px --- */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 20px;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.35s ease;
        z-index: 1000;
        align-items: flex-start;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.05rem;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        display: block;
        padding: 14px 24px !important;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

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

    .hero-image {
        order: -1;
    }

    .hero-float-card-1 {
        left: 10px;
        bottom: 40px;
    }

    .hero-float-card-2 {
        right: 10px;
        top: 20px;
    }

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

    .comparison-card {
        max-width: 100%;
        width: 100%;
    }

    .comparison-with {
        transform: none;
    }

    .comparison-vs {
        padding: 20px 0;
        flex-direction: row;
    }

    .vs-arrow {
        transform: rotate(90deg);
    }

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

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .process-step {
        max-width: 100%;
        width: 100%;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

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

    .section-header h2 {
        font-size: 1.8rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .final-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

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

    .pricing-table th,
    .pricing-table td {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

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

    .hero-actions .btn {
        width: 100%;
    }
}

/* === ENHANCED ANIMATIONS === */

/* Floating animation for cards and images */
@keyframes enhanced-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Subtle pulse glow effect */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(var(--glow-rgb), 0.2); }
  50% { box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.4), 0 0 40px rgba(var(--glow-rgb), 0.1); }
}

/* Gradient shift animation for backgrounds */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Slide in from left */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Slide in from right */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Scale up bounce */
@keyframes scaleUpBounce {
  0% { opacity: 0; transform: scale(0.8); }
  60% { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

/* Rotate in */
@keyframes rotateIn {
  from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

/* Typewriter cursor blink */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Shimmer effect for buttons */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Sun rays rotation */
@keyframes sunRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Reveal animation classes */
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale { opacity: 0; transform: scale(0.85); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.visible, .reveal-right.visible, .reveal-up.visible, .reveal-scale.visible { opacity: 1; transform: none; }

/* Stagger children animation */
.stagger-children > * { opacity: 0; transform: translateY(30px); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }

/* Floating cards effect */
.float-card { animation: enhanced-float 6s ease-in-out infinite; }
.float-card:nth-child(2) { animation-delay: -2s; }
.float-card:nth-child(3) { animation-delay: -4s; }

/* Enhanced button hover with shimmer */
.btn-shimmer {
  background-size: 200% auto;
  background-image: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  animation: shimmer 3s linear infinite;
}

/* Hover lift effect */
.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }

/* Counter number animation style */
.counter-animated { display: inline-block; transition: all 0.3s; }

/* Parallax-ready sections */
.parallax-bg { transition: background-position 0.1s linear; }

/* Smooth image zoom on hover */
.img-zoom { overflow: hidden; }
.img-zoom img { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.img-zoom:hover img { transform: scale(1.08); }

/* Text gradient animation */
.text-gradient-animated {
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

/* Underline animation on hover */
.hover-underline { position: relative; }
.hover-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-underline:hover::after { width: 100%; }

/* Magnetic button effect placeholder */
.btn-magnetic { transition: transform 0.2s ease; }

/* Border animation on cards */
.border-animate {
  position: relative;
  overflow: hidden;
}
.border-animate::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, transparent 30%, currentColor 50%, transparent 70%);
  background-size: 200% 200%;
  animation: gradientShift 3s linear infinite;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
 pointer-events: none;}
.border-animate:hover::before { opacity: 0.3; }

/* === Mobile Logo Size === */
@media (max-width: 768px) {
  .logo img, .nav-logo img, .navbar-brand img, .nav-brand img, .navbar__logo img {
    height: 36px !important;
  }
}

/* === Mobile Hero Text === */
@media (max-width: 768px) {
  .hero h1, .hero-content h1, .hero__content h1 { font-size: 2rem; }
}