/* Base Styles */
:root {
    --primary-color: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #4D94FF;
    --secondary-color: #00084d;
    --text-color: #1A2A42;
    --text-light: #4A5568;
    --background-color: #ffffff;
    --background-light: #F5F8FC;
    --background-dark: #EDF2F7;
    --border-color: #E2E8F0;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --border-radius: 6px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --container-width: 1200px;
    --section-spacing: 100px;
    --card-spacing: 24px;
    --color-primary: #0066ff;
    --color-secondary: #00084d;
    --color-white: #ffffff;
    --color-light-bg: #f8f9fa;
    --color-text-dark: #0a1e3b;
    --color-text-light: #6c757d;
    --color-border: #e9ecef;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

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

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

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.75rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

.btn-secondary:hover {
    background-color: var(--background-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}

.link-arrow:hover {
    text-decoration: underline;
}

section {
    padding: var(--section-spacing) 0;
}

/* Announcement Banner */
.announcement-banner {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.announcement-banner a {
    color: white;
    text-decoration: underline;
    margin-left: 5px;
}

/* Navigation */
.main-nav {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 18px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary-color);
}

.main-nav .logo-icon {
    color: var(--primary-color);
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    color: var(--primary-color); /* For SVGs using currentColor */
}

.footer .logo-icon {
    color: white; /* For SVGs using currentColor in the footer */
}

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

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background-color: var(--background-light);
    text-align: center;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(10, 30, 59, 0.05) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Animation Background */
.animation-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    opacity: .5;
}

.icon-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
}

.orbit-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 2px solid rgba(0, 102, 255, 0.1);
    border-radius: 50%;
}

.orbit-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 2px solid rgba(0, 102, 255, 0.1);
    border-radius: 50%;
}

.orbit-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(0, 102, 255, 0.1);
    border-radius: 50%;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.15);
    transition: all 0.3s ease;
    transform-origin: center center;
}

.floating-icon:hover {
    transform: scale(1.2) !important;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
    z-index: 10;
}

.floating-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

/* Orbit-specific animations */
.floating-icon.orbit-1 {
    animation: orbit1 20s linear infinite;
}

.floating-icon.orbit-2 {
    animation: orbit2 25s linear infinite;
}

.floating-icon.orbit-3 {
    animation: orbit3 30s linear infinite;
}

@keyframes orbit1 {
    0% {
        transform: rotate(0deg) translateY(-100px);
    }
    100% {
        transform: rotate(360deg) translateY(-100px);
    }
}

@keyframes orbit2 {
    0% {
        transform: rotate(0deg) translateY(-200px);
    }
    100% {
        transform: rotate(360deg) translateY(-200px);
    }
}

@keyframes orbit3 {
    0% {
        transform: rotate(0deg) translateY(-300px);
    }
    100% {
        transform: rotate(360deg) translateY(-300px);
    }
}

.floating-icon:nth-child(1) { animation-delay: 0s; }
.floating-icon:nth-child(2) { animation-delay: -2s; }
.floating-icon:nth-child(3) { animation-delay: -4s; }
.floating-icon:nth-child(4) { animation-delay: -6s; }
.floating-icon:nth-child(5) { animation-delay: -8s; }
.floating-icon:nth-child(6) { animation-delay: -10s; }
.floating-icon:nth-child(7) { animation-delay: -12s; }
.floating-icon:nth-child(8) { animation-delay: -14s; }
.floating-icon:nth-child(9) { animation-delay: -16s; }
.floating-icon:nth-child(10) { animation-delay: -18s; }
.floating-icon:nth-child(11) { animation-delay: -20s; }
.floating-icon:nth-child(12) { animation-delay: -22s; }
.floating-icon:nth-child(13) { animation-delay: -24s; }
.floating-icon:nth-child(14) { animation-delay: -26s; }
.floating-icon:nth-child(15) { animation-delay: -28s; }

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 2rem;
    color: var(--secondary-color);
}

.hero-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    stroke: var(--primary-color);
}

.hero h1 {
    max-width: 900px;
    margin: 0 auto 24px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.35rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 36px;
}

/* Screenshot Section */
.screenshot {
    padding: 120px 0 60px 0;
    background-color: var(--background-light);
    position: relative;
}

.screenshot::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--background-color));
    z-index: 1;
}

.dashboard-img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Features Section */
.features {
    text-align: center;
    background-color: white;
    padding-top: 120px;
}

.section-description {
    max-width: 900px;
    margin: 0 auto 70px;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 48px;
    margin-top: 70px;
}

.feature-card {
    text-align: left;
    padding: 28px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: var(--background-light);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--border-color);
    background-color: white;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    background-color: rgba(0, 102, 255, 0.1);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 32px;
    height: 32px;
}

.feature-subtitle {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.feature-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial {
    background-color: var(--background-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(10, 30, 59, 0.03) 100%);
    z-index: 0;
}

.testimonial .container {
    position: relative;
    z-index: 1;
}

.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slides {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-card {
    background-color: var(--primary-color);
    color: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.2);
    position: relative;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-logo {
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 24px;
    letter-spacing: 2px;
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial-card blockquote {
    font-size: 1.35rem;
    line-height: 1.7;
    font-weight: 500;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 102, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    background-color: var(--primary-color);
    opacity: 0.8;
}

/* Extensions Section */
.extensions {
    text-align: center;
    background-color: white;
    position: relative;
}

.extensions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.extensions-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 70px;
    text-align: left;
}

.extension-feature {
    background-color: var(--background-light);
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.extension-feature .feature-icon {
    margin-bottom: 24px;
}

.extension-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--border-color);
    background-color: white;
}

/* Hide the old logo elements */
.extension-logo, .tool-logo {
    display: none;
}

.extension-feature h3 {
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.extension-feature p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    text-align: center;
    background-color: white;
    position: relative;
    padding: 100px 0;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.cta .container {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    margin-bottom: 24px;
}

.cta p {
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: var(--text-light);
}

.cta .btn {
    margin: 0 auto;
    display: inline-block;
}

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

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(10, 30, 59, 0.03) 100%);
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    width: 100%;
    max-width: 350px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-button-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.price {
    display: flex;
    align-items: baseline;
}

.amount {
    font-size: 34px;
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
}

.period {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-left: 5px;
}

.price-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.pricing-features ul {
    margin-bottom: 40px;
}

.pricing-features li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 30px;
    color: var(--text-color);
}

.pricing-features li strong.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Crect width='24' height='24' fill='none'/%3E%3Cpath fill='%230066FF' d='M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.pricing-features li.unlimited-api::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Crect width='24' height='24' fill='none'/%3E%3Cpath fill='%230066FF' d='M216,40H40A16,16,0,0,0,24,56V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40ZM204.28,156.28a40,40,0,0,1-56.4.17L97.29,111.34,97,111A24,24,0,1,0,97,145c.36-.36.71-.73,1-1.1a8,8,0,1,1,12,10.6c-.55.62-1.13,1.23-1.71,1.81a40,40,0,1,1-.17-56.73l50.58,45.11.33.31A24,24,0,1,0,159,111c-.36.36-.7.72-1,1.1a8,8,0,0,1-12-10.59c.54-.62,1.12-1.24,1.71-1.82a40,40,0,0,1,56.57,56.56Z'/%3E%3C/svg%3E");
}

.pricing-features li.data-feature::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Crect width='24' height='24' fill='none'/%3E%3Cpath fill='%230066FF' d='M128,24C74.17,24,32,48.6,32,80v96c0,31.4,42.17,56,96,56s96-24.6,96-56V80C224,48.6,181.83,24,128,24Zm80,104c0,9.62-7.88,19.43-21.61,26.92C170.93,163.35,150.19,168,128,168s-42.93-4.65-58.39-13.08C55.88,147.43,48,137.62,48,128V111.36c17.06,15,46.23,24.64,80,24.64s62.94-9.68,80-24.64Zm-21.61,74.92C170.93,211.35,150.19,216,128,216s-42.93-4.65-58.39-13.08C55.88,195.43,48,185.62,48,176V159.36c17.06,15,46.23,24.64,80,24.64s62.94-9.68,80-24.64V176C208,185.62,200.12,195.43,186.39,202.92Z'/%3E%3C/svg%3E");
}

.pricing-note {
    margin-top: 40px;
    color: var(--text-light);
}

.pricing-note a {
    font-weight: 600;
}

/* Media queries for pricing cards */
@media (max-width: 1200px) {
    .pricing-cards {
        justify-content: center;
    }
    
    .pricing-card {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }
}

/* Security Section */
.security {
    text-align: center;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(10, 30, 59, 0.03) 100%);
    z-index: 0;
}

.security .container {
    position: relative;
    z-index: 1;
}

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

.security-feature {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.security-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.security-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    fill: var(--primary-color);
    stroke: var(--primary-color);
    background-color: rgba(0, 102, 255, 0.1);
    padding: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon img {
    width: 48px;
    height: 48px;
}

/* Remove the content URLs since we're using image tags now */
.security-icon.zero-data svg,
.security-icon.secure-mcp svg,
.security-icon.transparent svg {
    content: none;
}

.security-feature h3 {
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.security-feature p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(10, 30, 59, 0.05) 100%);
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 1.8rem;
}

.footer-logo .logo-icon {
    fill: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 70px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: #a1a1aa;
    transition: color 0.3s ease;
}

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

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

.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #a1a1aa;
}

.social-icon:hover {
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    max-width: 60%;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.cookie-btn.reject {
    background-color: var(--background-dark);
    color: var(--text-color);
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-btn.close {
    background-color: transparent;
    font-size: 1.5rem;
    padding: 0 10px;
    color: var(--text-light);
}

/* Payment Notification */
.payment-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.payment-notification.show {
    transform: translateX(0);
}

.payment-notification.success {
    border-left: 4px solid var(--success-color);
}

.payment-notification.error {
    border-left: 4px solid var(--error-color);
}

.notification-content {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
    padding-right: 10px;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0;
    margin: 0;
    line-height: 1;
}

.notification-close:hover {
    color: var(--text-color);
}

/* Icon Preview Section */
.icon-preview-section {
    margin-top: 100px;
    padding: 30px 30px 15px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
}

.icon-preview-section h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.icon-preview-description {
    margin-bottom: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.icon-attribution {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-style: italic;
}

.icon-attribution a {
    color: var(--primary-color);
    text-decoration: none;
}

.icon-attribution a:hover {
    text-decoration: underline;
}

.small-text {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
}

.search-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.icon-search-input {
    width: 100%;
    max-width: 400px;
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.icon-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.1);
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 20px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
    position: relative;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: var(--background-light);
}

.icon-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: white;
}

.icon-svg {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
}

.icon-name {
    font-size: 0.75rem;
    text-align: center;
    color: var(--text-color);
    word-break: break-word;
    line-height: 1.2;
}

.icon-style-selector {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.style-button {
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background-color: white;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.style-button.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.style-button:hover:not(.active) {
    background-color: var(--background-light);
}

/* Custom scrollbar for icon grid */
.icon-grid::-webkit-scrollbar {
    width: 6px;
}

.icon-grid::-webkit-scrollbar-track {
    background: var(--background-light);
    border-radius: 10px;
}

.icon-grid::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}

.icon-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Message for when there are too many search results */
.more-results, .no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    background-color: var(--background-light);
    border-radius: 8px;
    margin-top: 15px;
}

.no-results {
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .cookie-content p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .feature-card, .resource-card {
        padding: 20px;
    }
}
