/* Global styles */
:root {
    --primary: #1a365d;      /* Deep navy - authority, trust, stability */
    --secondary: #4f8a9a;    /* Modern blue-teal - fresh, intelligence */
    --accent: #d4b26a;       /* Subtle gold - prestige, wisdom */
    --text-dark: #2d3748;    /* Charcoal - professional, readable */
    --text-medium: #4a5568;  /* Medium gray - balanced, sophisticated */
    --text-light: #718096;   /* Light slate - subtle, modern */
    --bg-white: #ffffff;     /* Crisp white - clean, minimal */
    --bg-light: #edf2f7;     /* Pale blue-gray - subtle differentiation */
    --border-light: #e2e8f0; /* Light gray - subtle separation */
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.06);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, rgba(212, 178, 106, 0.15) 0%, rgba(212, 178, 106, 0.05) 100%);
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 5;
    transition: all 0.3s;
}

.btn i {
    position: relative;
    z-index: 5;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-10px);
    font-size: 14px;
}

.btn:hover span {
    transform: translateX(-5px);
}

.btn:hover i {
    opacity: 1;
    transform: translateX(0);
}

.btn::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    top: -50px;
    left: -100px;
    transform: rotate(35deg);
    transition: all 0.6s;
    z-index: 1;
}

.btn:hover::after {
    left: 120%;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 54, 93, 0.5) 0%, var(--primary) 100%);
    opacity: 0.4;
    transition: all 0.4s;
    z-index: 0;
}

.btn-primary:hover::before {
    opacity: 0.4;
}

.btn-primary:hover span,
.btn-primary:hover i {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    letter-spacing: 0.02em;
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 138, 154, 0.3);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(79, 138, 154, 0.5) 0%, var(--secondary) 100%);
    opacity: 0.4;
    transition: all 0.4s;
    z-index: 0;
}

.btn-secondary:hover::before {
    opacity: 0.4;
}

.btn-secondary:hover span,
.btn-secondary:hover i {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: rgba(26, 54, 93, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.15);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 54, 93, 0.05) 0%, rgba(26, 54, 93, 0.1) 100%);
    opacity: 0.4;
    transition: all 0.4s;
    z-index: 0;
}

.btn-outline:hover::before {
    opacity: 0.4;
}

.btn-outline:hover span,
.btn-outline:hover i {
    color: var(--primary-dark);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.btn-coming-soon {
    background: rgba(26, 54, 93, 0.7);
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}

.btn-coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: -1;
}

.btn-coming-soon:hover {
    transform: none;
    box-shadow: none;
}

.btn i {
    margin-right: 8px;
}

/* Coming Soon Price Style */
.price-coming-soon {
    color: var(--secondary);
    font-size: 28px;
    position: relative;
    display: inline-block;
}

.price-coming-soon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary) 0%, rgba(79, 138, 154, 0.3) 100%);
}

/* Header & Navigation */
header {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo svg {
    width: 52px;
    height: 52px;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.4)) brightness(1.5);
}

.logo svg path[stroke] {
    stroke: url(#logoGradient);
}

.logo svg path[fill="url(#logoGradient)"] {
    fill: url(#logoGradient);
}

.logo svg path[fill="white"] {
    fill: white;
}

.logo svg path.scale-pulse {
    animation: scalePulse 3s infinite alternate ease-in-out;
    transform-origin: center;
}

@keyframes scalePulse {
    0% {
        transform: scale(1);
        opacity: 0.05;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.05;
    }
}

.logo svg path[stroke-dasharray] {
    stroke-dashoffset: 100;
    animation: dash 15s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transition: width 0.3s ease;
}

.logo a:hover h1::after {
    width: 100%;
}

.logo a:hover svg {
    filter: drop-shadow(0 4px 8px rgba(26, 54, 93, 0.2));
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}

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

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

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

.cta-buttons {
    display: flex;
    gap: 16px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    position: relative;
    background-color: var(--bg-white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.07) 0%, rgba(var(--secondary-rgb), 0.03) 100%);
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 550px;
    flex: 1;
}

.hero-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: linear-gradient(90deg, rgba(26, 54, 93, 0.08) 0%, rgba(212, 178, 106, 0.08) 100%);
    border-radius: 30px;
}

.hero-eyebrow i {
    margin-right: 8px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-title span {
    color: var(--secondary);
    display: block;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-medium);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-main {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, filter 0.3s ease;
    object-fit: contain;
    max-height: 400px;
}

.hero-image-main:hover {
    transform: scale(1.02) translateY(-5px);
    filter: drop-shadow(0 15px 35px rgba(var(--primary-rgb), 0.2));
}

.hero-image-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    animation: pulse 4s infinite alternate ease-in-out;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent) 0%, rgba(212, 178, 106, 0.3) 100%);
    border-radius: 50%;
    top: -20px;
    right: 20%;
    opacity: 0.15;
    z-index: 0;
    animation: float 6s infinite alternate ease-in-out;
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 10%;
    left: 10%;
    opacity: 0.1;
    z-index: 0;
    animation: morph 8s infinite alternate ease-in-out;
}

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

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

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.floating-card {
    position: absolute;
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.card-1 {
    top: 20%;
    left: -10%;
}

.card-2 {
    bottom: 20%;
    right: -10%;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, rgba(79, 138, 154, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.floating-card-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.floating-card-content p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--text-light);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-header p {
    font-size: 18px;
    color: var(--text-medium);
}

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

.feature-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(79, 138, 154, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translate(30%, 30%);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.12);
    border-color: rgba(79, 138, 154, 0.3);
    background-color: rgba(255, 255, 255, 0.9);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
    transform: translate(20%, 20%) scale(1.5);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.08) 0%, rgba(79, 138, 154, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.08) 0%, rgba(79, 138, 154, 0.08) 100%);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, rgba(79, 138, 154, 0.08) 0%, rgba(26, 54, 93, 0.08) 100%);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, rgba(212, 178, 106, 0.08) 0%, rgba(26, 54, 93, 0.08) 100%);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.08) 0%, rgba(212, 178, 106, 0.08) 100%);
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, rgba(79, 138, 154, 0.08) 0%, rgba(212, 178, 106, 0.08) 100%);
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, rgba(212, 178, 106, 0.08) 0%, rgba(79, 138, 154, 0.08) 100%);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.15) 0%, rgba(79, 138, 154, 0.15) 100%);
    transform: scale(1.1);
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed var(--secondary);
    opacity: 0.3;
    animation: spin 15s linear infinite;
}

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

.feature-icon i {
    font-size: 28px;
    color: var(--secondary);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

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

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    opacity: 0.5;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.feature-card:hover h3::after {
    width: 60px;
    opacity: 1;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 15px;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-top: 40px;
}

.comparison-table th {
    background: linear-gradient(90deg, rgba(26, 54, 93, 0.04) 0%, rgba(79, 138, 154, 0.04) 100%);
    padding: 16px 24px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
    background-color: var(--bg-white);
    color: var(--text-medium);
}

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

.comparison-table tr:hover td {
    background-color: rgba(26, 54, 93, 0.02);
}

.comparison-table i.fa-check {
    color: var(--secondary);
}

.comparison-table i.fa-times {
    color: var(--text-light);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary);
}

.benefit-card ul {
    list-style-type: none;
}

.benefit-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 28px;
    color: var(--text-medium);
}

.benefit-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.faq-item {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 16px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--primary);
    font-weight: 600;
}

.toggle {
    color: var(--secondary);
    transition: transform 0.3s;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05) 0%, rgba(79, 138, 154, 0.05) 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-medium);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-col h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo svg {
    width: 52px;
    height: 52px;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.4)) brightness(1.5);
}

.footer-logo svg path[stroke] {
    stroke: url(#footerLogoGradient);
    stroke-opacity: 1;
    stroke-width: 3;
}

.footer-logo svg path[fill="url(#footerLogoGradient)"] {
    fill: url(#footerLogoGradient);
    fill-opacity: 0.8;
}

.footer-logo svg path[fill="white"] {
    fill: white;
}

.footer-logo svg path.scale-pulse {
    fill: url(#footerLogoGradient);
    fill-opacity: 0.5;
    animation: footerPulse 3s infinite alternate ease-in-out;
    transform-origin: center;
}

@keyframes footerPulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

.footer-logo svg path[stroke-dasharray] {
    stroke-dashoffset: 100;
    animation: footerDash 15s linear infinite;
}

@keyframes footerDash {
    to {
        stroke-dashoffset: 0;
    }
}

.footer-logo h2 {
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.footer-col ul {
    list-style-type: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    transition: color 0.2s;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.language-selector select {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.language-selector select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    z-index: 1000;
    padding: 80px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

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

.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.mobile-menu .nav-links a {
    font-size: 20px;
}

.mobile-menu .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 16px;
}

.close-menu {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

body.menu-open {
    overflow: hidden;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.back-to-top:hover {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .floating-card {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .nav-links, .cta-buttons {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-main {
        transform: scale(1);
        max-width: 80%;
    }
    
    .hero-image:hover .hero-image-main {
        transform: scale(1.05) translateY(-5px);
    }
    
    .hero-image {
        min-height: 300px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .waitlist-form-container {
        margin-top: 30px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 10px;
    }
    
    .waitlist-form {
        padding: 30px;
        max-width: 100%;
        box-shadow: 0 10px 25px rgba(26, 54, 93, 0.15);
        border: 1px solid rgba(226, 232, 240, 0.9);
        background-color: rgba(255, 255, 255, 0.98);
    }
    
    .waitlist-form h3 {
        font-size: 24px;
    }
    
    .waitlist-form-container::before {
        display: none;
    }
    
    .waitlist-form::before {
        opacity: 0.8;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }
    
    .hero-eyebrow {
        font-size: 12px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .benefit-card {
        padding: 24px;
    }
    
    .stat-item {
        flex: 1;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .hero-image-main {
        max-width: 90%;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .waitlist-form {
        padding: 25px;
        box-shadow: 0 8px 20px rgba(26, 54, 93, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .form-group input,
    .form-group select {
        padding: 12px 16px;
        border: 1.5px solid rgba(226, 232, 240, 0.95);
    }
    
    .waitlist-form::after {
        height: 4px;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.1);
    border-color: rgba(79, 138, 154, 0.3);
}

.pricing-card.popular {
    border-color: var(--secondary);
    transform: scale(1.05);
}

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

.popular-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--secondary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 30px;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary);
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-medium);
}

.pricing-header p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 0;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style-type: none;
}

.pricing-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 28px;
    color: var(--text-medium);
}

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

.pricing-cta {
    padding: 0 30px 30px;
    text-align: center;
}

.pricing-cta .btn {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .pricing-card.popular {
        transform: scale(1.03);
    }
    
    .pricing-card.popular:hover {
        transform: scale(1.03) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .pricing-header {
        padding: 24px;
    }
    
    .pricing-features, .pricing-cta {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .price {
        font-size: 30px;
    }
}

/* Waitlist Form Styles */
.waitlist-form-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.waitlist-form {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.1);
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(226, 232, 240, 0.7);
    overflow: hidden;
    animation: formAppear 0.8s ease-out forwards;
    transform: translateY(20px);
    opacity: 0;
}

@keyframes formAppear {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.waitlist-form::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05) 0%, rgba(79, 138, 154, 0.05) 100%);
    z-index: -1;
    animation: gradientShift 8s infinite alternate ease-in-out;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.waitlist-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.waitlist-form h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--primary);
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.waitlist-form h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary) 0%, rgba(79, 138, 154, 0.3) 100%);
    border-radius: 3px;
}

.waitlist-form p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s;
    background-color: var(--bg-white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(79, 138, 154, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: var(--text-light);
    transition: all 0.3s;
}

.form-group input:focus::placeholder {
    opacity: 0.7;
    transform: translateX(5px);
}

.form-group label {
    position: absolute;
    top: -10px;
    left: 12px;
    background-color: var(--bg-white);
    padding: 0 8px;
    font-size: 12px;
    color: var(--secondary);
    border-radius: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group select:focus + label {
    opacity: 1;
    transform: translateY(0);
}

.btn-block {
    width: 100%;
    margin-top: 15px;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-block span {
    position: relative;
    z-index: 5;
    transition: all 0.3s;
}

.btn-block i {
    position: relative;
    z-index: 5;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-10px);
    font-size: 14px;
}

.btn-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.15);
}

.btn-block:hover span {
    transform: translateX(-5px);
}

.btn-block:hover i {
    opacity: 1;
    transform: translateX(0);
}

.btn-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 54, 93, 0.1) 0%, rgba(79, 138, 154, 0.1) 100%);
    opacity: 0.4;
    transition: all 0.4s;
    z-index: 0;
}

.btn-block:hover::before {
    opacity: 0.4;
}

.btn-block:hover span,
.btn-block:hover i {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.btn-block::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    top: -50px;
    left: -100px;
    transform: rotate(35deg);
    transition: all 0.6s;
    z-index: 1;
}

.btn-block:hover::after {
    left: 120%;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    top: -50px;
    left: -100px;
    transform: rotate(35deg);
    transition: all 0.6s;
    z-index: 1;
}

.btn-primary:hover::after {
    left: 120%;
}

.form-footer {
    margin-top: 24px;
    text-align: center;
    position: relative;
}

.form-footer::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.7), transparent);
}

.form-footer small {
    color: var(--text-light);
    font-size: 13px;
    display: block;
    line-height: 1.6;
}

.waitlist-form-container::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--accent) 0%, rgba(212, 178, 106, 0.3) 100%);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    opacity: 0.1;
    z-index: 0;
    animation: float 8s infinite alternate ease-in-out;
}

.waitlist-form-container::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -50px;
    left: -50px;
    opacity: 0.08;
    z-index: 0;
    animation: morph 10s infinite alternate ease-in-out;
}

/* Form input animations */
@keyframes inputFocus {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Form field animations */
.form-group input, 
.form-group select {
    animation: formFieldAppear 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-10px);
}

.form-group:nth-child(1) input,
.form-group:nth-child(1) select {
    animation-delay: 0.2s;
}

.form-group:nth-child(2) input,
.form-group:nth-child(2) select {
    animation-delay: 0.4s;
}

.form-group:nth-child(3) input,
.form-group:nth-child(3) select {
    animation-delay: 0.6s;
}

.btn-block {
    animation: formFieldAppear 0.5s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
    transform: translateX(-10px);
}

@keyframes formFieldAppear {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .waitlist-form {
        padding: 30px;
        max-width: 100%;
        box-shadow: 0 10px 25px rgba(26, 54, 93, 0.15);
        border: 1px solid rgba(226, 232, 240, 0.9);
        background-color: rgba(255, 255, 255, 0.98);
    }
    
    .waitlist-form h3 {
        font-size: 24px;
    }
    
    .waitlist-form-container::before {
        display: none;
    }
    
    .waitlist-form::before {
        opacity: 0.8;
    }
}

@media (max-width: 480px) {
    .waitlist-form-container {
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .waitlist-form {
        padding: 25px;
        box-shadow: 0 8px 20px rgba(26, 54, 93, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.95);
        border-width: 0;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px 16px;
        border: 1.5px solid rgba(226, 232, 240, 0.95);
        background-color: rgba(255, 255, 255, 0.9);
    }
    
    .waitlist-form::after {
        height: 4px;
    }
} 