/* Import the numbered steps styles */
@import url("numbered-steps.css");

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-on-light);
    line-height: 1.5;
    font-size: 16px;
    overflow-x: hidden;
    background-color: var(--white);
}

/* Color Variables - Consolidated with fixes.css */
:root {
    /* Base colors - Light mode */
    --primary: #0A2042;         /* Darker blue for better contrast */
    --primary-dark: #081631;    /* Even darker blue */
    --primary-light: #2a4a7c;   /* Lighter blue variant */
    --secondary: #D4AF37;       /* Gold */
    --secondary-dark: #A88C1B;  /* Darker gold for better contrast */
    --secondary-light: #e5c455; /* Lighter gold variant */
    
    /* Text colors */
    --text-on-dark: #FFFFFF;    /* White text for dark backgrounds */
    --text-on-light: #222222;   /* Dark text for light backgrounds */
    
    /* UI Colors */
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --charcoal: #333333;
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #FF3B30;
    --accent: #5E72E4;
    
    /* Dark mode colors - To be used with @media (prefers-color-scheme: dark) */
    --dark-bg-primary: #121822;      /* Dark blue-gray background */
    --dark-bg-secondary: #1E2734;    /* Slightly lighter blue-gray */
    --dark-bg-tertiary: #2A3548;     /* Accent background color */
    --dark-text-primary: #EAEEF3;    /* Off-white for main text */
    --dark-text-secondary: #B0B8C4;  /* Light gray for secondary text */
    --dark-border: #3A4659;          /* Border color */
    --dark-gold: #F0CF65;            /* Brighter gold for dark backgrounds */
    --dark-gold-muted: #A38F3B;      /* Muted gold for secondary elements */
    --dark-card-bg: #1A202C;         /* Card background */
    --dark-input-bg: #2D3748;        /* Form input background */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

p, li {
    color: var(--text-on-light);
}

h1 {
    font-size: 52px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 26px;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

.small-text {
    font-size: 14px;
    line-height: 1.4;
}

.text-accent {
    color: var(--secondary);
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Spacing */
section {
    padding: 100px 0;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.btn:hover {
    transform: scale(1.03);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

.btn:active::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary), var(--secondary));
}

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

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

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

.btn-tertiary:hover {
    background: var(--light-gray);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 20px;
    background: var(--secondary);
    color: var(--primary);
    padding: 10px 15px;
    z-index: 9999;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.skip-link:focus {
    left: 20px;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: padding 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
}

.logo {
    display: inline-block;
    max-width: 420px;
    margin-right: 20px;
    flex-shrink: 0;
}

.logo span {
    color: var(--secondary);
}

/* Logo SVG Styles */
.logo-text-primary {
    fill: var(--primary);
}

.logo-text-accent {
    fill: var(--secondary);
}

.logo-text-white {
    fill: var(--white);
}

.logo-svg {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.nav-logo-svg {
    max-width: 100%;
    height: auto;
}

.footer-logo-svg {
    filter: brightness(0) invert(1);
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    display: block;
}

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

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 2001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    left: 8px;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
    top: 14px;
}

.hamburger-line:nth-child(2) {
    top: 19px;
}

.hamburger-line:nth-child(3) {
    top: 24px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 19px;
    background-color: var(--white);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
    top: 19px;
    background-color: var(--white);
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    z-index: 1001;
    width: 100%;
    height: 3px;
    background: transparent;
}

.progress-bar {
    height: 3px;
    background: var(--secondary);
    width: 0%;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    width: 100%;
    max-width: 600px; /* Increased to accommodate larger logo */
    padding: 20px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.logo-container {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Loading Animation */
.loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.loader div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--secondary);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loader div:nth-child(1) {
    left: 8px;
    animation: loader1 0.6s infinite;
}
.loader div:nth-child(2) {
    left: 8px;
    animation: loader2 0.6s infinite;
}
.loader div:nth-child(3) {
    left: 32px;
    animation: loader2 0.6s infinite;
}
.loader div:nth-child(4) {
    left: 56px;
    animation: loader3 0.6s infinite;
}
@keyframes loader1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes loader3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes loader2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    color: var(--white);
    overflow: hidden;
    padding: 160px 0 140px;
    perspective: 1000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0.6;
    z-index: 0;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

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

.hero h1 {
    color: var(--white);
    margin-bottom: 25px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 45px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-fill {
    fill: var(--white);
}

/* Success Ticker */
.success-ticker {
    margin-top: 40px;
    overflow: hidden;
    height: 30px;
    position: relative;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    padding: 0 10px;
    backdrop-filter: blur(5px);
}

.ticker-content {
    display: flex;
    animation: ticker 20s linear infinite;
    color: var(--secondary);
    font-style: italic;
    align-items: center;
    height: 100%;
}

.ticker-content div {
    white-space: nowrap;
    padding: 0 40px;
    font-weight: 500;
}

.ticker-content div {
    white-space: nowrap;
    padding: 0 40px;
    font-weight: 500;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Trusted By Section */
.trusted-by {
    background-color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.trusted-by h3 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--charcoal);
    margin-bottom: 30px;
    opacity: 0.7;
}

.trusted-by-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.trusted-logo {
    height: 30px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.trusted-logo:hover {
    opacity: 0.9;
}

.client-logo {
    color: var(--charcoal);
}

/* Problem/Solution Section */
.problem-solution {
    background-color: var(--white);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-intro p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto;
}

.problem-illustration, .solution-illustration {
    margin-top: 30px;
    text-align: center;
}

.problem-svg, .solution-svg {
    max-width: 100%;
    height: auto;
}

/* Callout Boxes */
.callout {
    background-color: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--secondary);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.callout-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    opacity: 0.05;
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.how-it-works::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0.05;
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--light-gray), #e6e9f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 36px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--secondary);
    top: 0;
    left: 0;
    animation: spin 20s linear infinite;
    opacity: 0.3;
}

.step-svg {
    display: block;
    margin: 0 auto;
}

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

.process-diagram {
    margin-top: 60px;
    width: 100%;
    height: 300px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

#flow-diagram {
    width: 100%;
    height: 300px;
    margin: 30px auto;
    max-width: 1000px;
}

/* Responsive styles for the flow diagram */
@media (max-width: 992px) {
    #flow-diagram {
        height: 250px;
    }
}

@media (max-width: 768px) {
    #flow-diagram {
        height: 200px;
        margin: 20px auto;
        overflow-x: auto;
    }
    
    .process-diagram {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    #flow-diagram {
        height: 180px;
        margin: 15px auto;
    }
}

/* Three-Step Process Section */
.three-step {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.three-step::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: var(--light-gray);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.numbered-steps {
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.numbered-step {
    flex: 1;
    padding: 0 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.step-number {
    display: none;
}

.step-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    transition: all 0.3s ease;
    position: relative;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-icon-container {
    margin-top: 20px;
    text-align: center;
}

.step-detail-svg {
    max-width: 100%;
    opacity: 0.7;
}

.numbered-steps::before {
    display: none;
}

/* Examples Section */
.examples {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.examples::before {
    content: '@';
    position: absolute;
    font-size: 400px;
    color: var(--primary);
    opacity: 0.03;
    top: -100px;
    right: -100px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.example-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.example-tab {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 0 10px 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    opacity: 0.6;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.example-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.example-tab.active {
    opacity: 1;
    color: var(--primary);
}

.example-tab.active::after {
    width: 100%;
}

.example-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.example-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.example-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 14px;
}

.email-example {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

.email-content-label {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.email-body {
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 20px;
}

.example-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.email-cta {
    color: var(--primary);
    border-color: var(--primary);
}

/* Differentiation Section */
.differentiation {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.differentiation::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.2;
    top: -200px;
    right: -200px;
}

.differentiation::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.2;
    bottom: -150px;
    left: -150px;
}

.differentiation h2 {
    color: var(--white);
}

.differentiation .section-intro p {
    color: rgba(255, 255, 255, 0.8);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.diff-card {
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.diff-card:hover {
    transform: translateY(-15px);
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.diff-card h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.diff-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
}

.diff-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.pricing::before {
    content: '£';
    position: absolute;
    font-size: 400px;
    color: var(--primary);
    opacity: 0.03;
    bottom: -100px;
    left: -100px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.price-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.price-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    border-radius: 12px 12px 0 0;
}

.price-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-amount {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary);
    margin: 30px 0;
    line-height: 1;
}

.price-amount span {
    font-size: 20px;
    opacity: 0.7;
    font-weight: 400;
}

.price-features {
    list-style: none;
    margin: 40px 0;
    text-align: left;
}

.price-features li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 18px;
}

.price-action {
    margin-top: 30px;
}

/* Order Form Styles */
.order-form-container {
    max-width: 800px;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-form {
    width: 100%;
    text-align: left;
}

.order-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;
    font-size: 24px;
}

.order-form h4 {
    color: var(--white);
    margin-top: 25px;
    margin-bottom: 15px;
}

.order-form p {
    color: rgba(255, 255, 255, 0.8);
}

.order-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.order-form .form-row {
    margin-bottom: 5px;
}

.order-form .form-group {
    margin-bottom: 20px;
}

.order-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 6px;
}

.order-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.order-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
    outline: none;
}

.order-form textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.order-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

.order-form select.form-control option {
    background-color: #1A365D;
    color: white;
    padding: 12px;
    font-size: 15px;
}

.order-form select.form-control option:hover,
.order-form select.form-control option:focus {
    background-color: #284978;
}

/* Add a hover effect to inputs */
.order-form .form-control:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.13);
}

/* Add a subtle highlight to required fields */
.order-form .form-control[required] {
    border-left: 3px solid rgba(212, 175, 55, 0.6);
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.order-form .btn-primary {
    background-color: var(--secondary);
    color: var(--primary-dark);
    border: none;
    font-weight: 700;
    padding: 12px 30px;
    min-width: 200px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.order-form .btn-primary:hover {
    background-color: #e9c346;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0.6;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 42px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-secondary-links {
    margin-top: 30px;
    font-size: 16px;
}

.cta-secondary-links a {
    color: var(--white);
    margin: 0 15px;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cta-secondary-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.tagline {
    margin-top: 50px;
    font-style: italic;
    font-size: 20px;
    color: var(--secondary);
    font-weight: 300;
}

/* Footer */
footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer-content.simplified {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    color: var(--secondary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 0.8;
}

/* Privacy Policy and Terms of Service Pages */
.privacy-policy, .terms-of-service {
    padding: 100px 0;
    background-color: var(--white);
}

.policy-content, .terms-content {
    margin-top: 40px;
    line-height: 1.7;
}

.policy-content h2, .terms-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.policy-content ul, .terms-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li, .terms-content li {
    margin-bottom: 10px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-logo {
    flex: 0 0 100%;
    max-width: 350px;
    margin-bottom: 20px;
}

.footer-logo-svg {
    filter: brightness(0) invert(1);
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    display: block;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-contact {
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-icon {
    width: 20px;
    margin-right: 15px;
    display: inline-block;
    opacity: 0.5;
}

.copyright {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.copyright a {
    color: var(--secondary);
    text-decoration: none;
}

/* Floating CTA for Mobile */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 90%;
    max-width: 300px;
    animation: float 2s ease-in-out infinite;
}

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

/* Live Visitors Counter */
.live-visitors {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 54, 93, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    display: none;
}

#visitor-count {
    font-weight: bold;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 54, 93, 0.95);
    color: white;
    padding: 15px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.cookie-notice.active {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 200px;
    margin: 0 20px 0 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.cookie-actions .btn {
    padding: 8px 15px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.back-to-top::before {
    content: '↑';
    font-size: 20px;
    font-weight: bold;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

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

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: calc(var(--item-index) * 0.1s);
}

.mobile-nav.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links a {
    color: var(--white);
    font-size: 28px;
    text-decoration: none;
    font-weight: 300;
    position: relative;
    padding: 10px 0;
    display: inline-block;
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

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

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.mobile-nav-cta {
    margin-top: 40px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Accessibility Focus Styles */
a:focus, button:focus, input:focus, textarea:focus, [tabindex]:focus {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    header, 
    .progress-container,
    .back-to-top,
    .mobile-nav,
    .hero-wave,
    .cookie-notice,
    .floating-cta,
    .hero-buttons,
    #particles,
    .process-diagram,
    .roi-visual-container,
    #roi-visualization {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    section {
        page-break-inside: avoid;
        margin-bottom: 20pt;
    }
    
    .hero {
        height: auto;
        padding: 20pt 0;
    }
    
    .hero h1 {
        font-size: 24pt;
    }
    
    .particles-container {
        display: none;
    }
    
    .roi-visual-container {
        display: none;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 34px;
    }

    section {
        padding: 80px 0;
    }

    .logo {
        max-width: 320px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    section {
        padding: 70px 0;
    }

    .process-steps, .diff-grid {
        grid-template-columns: repeat(2, 1fr); /* Changed to 2 columns instead of 1 */
        gap: 30px;
    }

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

    .numbered-steps {
        flex-direction: column;
    }

    .numbered-steps::before {
        display: none;
    }

    .numbered-step {
        margin-bottom: 40px;
        padding: 0 10px; /* Reduced side padding */
    }

    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Fixed nav structure */
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }
    
    .logo {
        margin-bottom: 0;
        max-width: 270px;
    }
    
    .nav-links {
        display: none; /* Hide on tablets and below */
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

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

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

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

    .hero p {
        font-size: 18px;
    }

    .process-steps, .diff-grid {
        grid-template-columns: 1fr; /* Back to 1 column on mobile */
    }
    
    .diff-card {
        padding: 30px 20px; /* Reduced padding on mobile */
    }
    
    .calculator-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-buttons, .example-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn, .example-cta .btn {
        width: 100%;
    }

    /* Mobile navigation fixes */
    .mobile-nav {
        overflow-y: auto; /* Allow scrolling for tall menus */
        padding: 60px 20px; /* Add some padding */
    }

    .floating-cta {
        display: block;
        z-index: 998; /* Below mobile nav but above other content */
    }

    .example-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .example-tab {
        flex: 1 1 calc(50% - 10px);
        min-width: 120px;
        margin: 0; /* Remove margin to avoid layout issues */
        padding: 8px 5px; /* Reduce padding */
        font-size: 14px; /* Smaller font */
    }

    .form-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        margin-bottom: 15px;
    }
    
    .form-control {
        font-size: 14px;
        padding: 12px;
    }
    
    .calculator-container {
        padding: 25px 15px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-content p {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .example-content {
        padding: 25px 15px;
    }

    .email-body {
        padding: 15px 10px;
    }

    .price-card {
        padding: 30px 20px;
    }

    .price-amount {
        font-size: 48px;
    }

    .order-form-container {
        padding: 30px 20px;
        margin: 30px auto;
    }

    .order-form h3 {
        font-size: 22px;
    }

    .order-form .btn-primary {
        width: 100%;
    }

    .nav-logo-svg {
        width: 315px;
        height: auto;
    }
    
    .logo-container {
        max-width: 420px;
    }

    .footer-logo {
        max-width: 280px;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }
    
    p, li {
        font-size: 15px; /* Slightly smaller text on very small screens */
    }

    .hero {
        padding: 100px 0 80px;
    }
    
    .success-ticker {
        height: 40px; /* Taller for text wrapping */
    }

    .step-card, .diff-card, .example-content {
        padding: 20px 15px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .step-indicator-line {
        top: 20px;
    }
    
    .step-indicator-node span {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .calculator-container {
        padding: 20px 15px;
    }
    
    .result-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .result-value {
        margin-top: 5px;
    }

    .cta h2 {
        font-size: 30px;
    }

    .cta p {
        font-size: 16px;
    }

    .nav-logo-svg {
        max-width: 180px;
        height: auto;
    }
    
    .logo-container {
        max-width: 220px;
    }
    
    .footer-logo-svg {
        max-width: 180px;
    }
    
    .example-tab {
        font-size: 12px; /* Even smaller font for very small screens */
        padding: 8px 4px;
    }
    
    .email-body {
        font-size: 14px; /* Smaller text in email examples */
    }
    
    .callout {
        padding: 15px 10px; /* Smaller padding */
    }
    
    /* Better mobile navigation */
    .mobile-nav-links a {
        font-size: 22px; /* Smaller font */
        padding: 8px 0;
    }
    
    .mobile-nav-cta {
        margin-top: 30px;
    }
    
    /* Fix for uneven FAQ on mobile */
    .faq-question {
        padding: 8px 0;
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 10px 0;
    }
    
    /* Fix for order form on mobile */
    .order-form label {
        font-size: 15px;
    }
    
    /* Fix for the ROI calculator visualization */
    .roi-visual-container {
        height: 400px; /* Taller for mobile to fit content */
        overflow-x: auto; /* Allow horizontal scrolling if needed */
    }

    .preloader-content {
        max-width: 100%;
        padding: 15px;
    }
    
    .logo-svg {
        max-width: 220px;
    }

    .results-container {
        padding: 20px 15px;
    }

    .order-form-container {
        padding: 25px 15px;
        margin: 20px auto;
    }

    .order-form h3 {
        font-size: 20px;
    }

    .order-form .btn-primary {
        width: 100%;
    }
}

/* Fix for mobile menu button position */
@media (max-width: 360px) {
    .nav-logo-svg {
        max-width: 150px;
    }
    
    .mobile-menu-btn {
        transform: scale(0.9);
    }
    
    h1 {
        font-size: 26px;
    }
    
    .hero p {
        font-size: 16px;
    }
}

/* Fix for mobile navigation visibility */
.mobile-nav.active {
    display: flex;
    transform: translateY(0);
    z-index: 9999; /* Ensure it's on top */
}

/* Add proper transitions to mobile menu items */
.mobile-nav-links li {
    transform: translateY(10px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: calc(var(--item-index) * 0.1s);
}

.mobile-nav.active .mobile-nav-links li {
    transform: translateY(0);
    opacity: 1;
}

/* Enhance form responsiveness */
.form-control {
    width: 100%;
    box-sizing: border-box;
}

/* Fix the floating CTA */
.floating-cta {
    position: fixed;
    bottom: 15px; 
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 300px;
    z-index: 998; /* Below mobile nav but above other content */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Fix for calculator visualization on mobile */
#roi-visualization svg {
    max-width: 100%;
    height: auto;
}

/* Fix for email examples */
.copy-email-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

/* Fix for tables in examples */
.email-body {
    overflow-x: auto; /* Add horizontal scrolling for tables if needed */
}

/* Fix for cookie notice on mobile */
.cookie-notice.active {
    padding: 15px 0;
}

.cookie-actions .btn {
    padding: 8px 12px;
    font-size: 14px;
}

/* Dark Mode Support - Using variables defined in fixes.css */
@media (prefers-color-scheme: dark) {
    /* Base styling */
    body {
        background-color: var(--dark-bg-primary);
        color: var(--dark-text-primary);
    }

    h1, h2, h3, h4, h5, h6 {
        color: var(--dark-text-primary);
    }

    p {
        color: var(--dark-text-secondary);
    }

    /* UI Components */
    .preloader {
        background: var(--dark-bg-primary);
    }

    header {
        background-color: var(--dark-bg-secondary);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-links a {
        color: var(--dark-text-primary);
    }

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

    .btn-tertiary {
        background: var(--dark-bg-secondary);
        color: var(--dark-text-primary);
        border-color: var(--dark-border);
    }

    .hamburger-line {
        background-color: var(--dark-text-primary);
    }

    /* Sections */
    .trusted-by {
        background-color: var(--dark-bg-secondary);
    }

    .client-logo {
        color: var(--dark-text-primary);
    }

    .problem-solution {
        background-color: var(--dark-bg-secondary);
    }

    .step-card, .example-content, .results-container {
        background-color: var(--dark-card-bg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid var(--dark-border);
    }

    .step-icon {
        background: linear-gradient(135deg, var(--dark-bg-primary), var(--dark-bg-secondary));
    }

    .process-diagram {
        background-color: var(--dark-bg-tertiary);
    }

    .callout {
        background-color: rgba(240, 207, 101, 0.05);
        border: 1px solid var(--dark-border);
    }

    .email-body {
        background-color: var(--dark-bg-secondary);
        color: var(--dark-text-primary);
        border-color: var(--dark-border);
    }

    .calculator-container {
        background-color: var(--dark-card-bg);
        border: 1px solid var(--dark-border);
    }

    /* Form Controls */
    .form-control {
        background-color: var(--dark-input-bg);
        border-color: var(--dark-border);
        color: var(--dark-text-primary);
    }

    .form-control:focus {
        border-color: var(--dark-gold);
        box-shadow: 0 0 0 2px rgba(240, 207, 101, 0.25);
    }

    .form-control::placeholder {
        color: var(--dark-text-secondary);
        opacity: 0.7;
    }

    /* Misc Components */
    .stat-item {
        background-color: var(--dark-bg-tertiary);
        border: 1px solid var(--dark-border);
    }

    .faq, .pricing {
        background-color: var(--dark-bg-primary);
    }

    .faq-item {
        border-bottom-color: var(--dark-border);
    }

    .price-card {
        background-color: var(--dark-card-bg);
        border: 1px solid var(--dark-border);
    }

    /* Scrollbar */
    ::-webkit-scrollbar-track {
        background: var(--dark-bg-secondary);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--dark-gold-muted);
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--dark-gold);
    }
}

/* Step Indicator */
.step-indicator {
    position: relative;
    width: 80%;
    margin: 0 auto 60px;
    max-width: 800px;
}

.step-indicator-line {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    z-index: 1;
}

.step-indicator-nodes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-indicator-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.step-indicator-node span {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--white), var(--light-gray));
    color: var(--primary);
    border: 3px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-indicator-node.active span {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    transform: scale(1.1);
}

.node-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    max-width: 120px;
    transition: all 0.3s ease;
}

.step-indicator-node.active .node-label {
    color: var(--secondary);
    font-weight: 700;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .step-indicator {
        width: 90%;
        margin-bottom: 40px;
    }
    
    .step-indicator-node span {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .node-label {
        font-size: 12px;
        max-width: 80px;
    }
}

/* Diff Icon */
.diff-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* ROI Calculator Section */
.roi-calculator {
    background-color: var(--white);
    padding: 80px 0;
}

.calculator-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.calculator-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5ee;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-control.error {
    border-color: #e74c3c;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.results-container {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: 600;
}

.result-value {
    font-weight: 700;
    color: var(--primary);
}

.result-highlight {
    color: var(--secondary);
    font-size: 20px;
}

.roi-visual-container {
    height: 300px;
    width: 100%;
}

#roi-visualization {
    width: 100%;
    height: 100%;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    transition: all 0.3s ease;
}

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

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 15px 0;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    display: block;
    max-height: 1000px;
}

/* Reduced animations for performance */
@media (max-width: 768px) {
    .fade-in, .slide-in-left, .slide-in-right, .scale-in {
      transition-duration: 0.3s;
    }
    
    /* Disable some heavy animations */
    .step-icon::after {
      animation: none;
    }
    
    /* Limit particles on mobile */
    .particles-container {
      opacity: 0.3;
    }
  }