:root {
    --primary: #5d5fef;
    --primary-dark: #4a4cd6;
    --primary-light: #8687f7;
    --secondary: #00bcd4;
    --accent: #ff7043;
    --text: #2d3748;
    --text-light: #718096;
    --background: #ffffff;
    --background-alt: #f7fafc;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), #0097a7);
    --gradient-accent: linear-gradient(135deg, var(--accent), #f4511e);
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--background);
}

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

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

nav {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 40px;
    width: auto;
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: brightness(1.1) saturate(1.1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:not(.cta-button):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.nav-links .cta-button {
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
    color: var(--text);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 99;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(93, 95, 239, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(93, 95, 239, 0.4);
}

/* Section styling */
main {
    margin-top: 4rem;
}

.section {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 9rem 2rem 6rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/pattern-bg.svg');
    background-repeat: no-repeat;
    background-position: top right;
    opacity: 0.05;
    z-index: -1;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.75rem;
    line-height: 1.1;
    margin-bottom: 1.75rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.hero-visual::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(93, 95, 239, 0.1), rgba(0, 188, 212, 0.1));
    z-index: -1;
    animation: pulse 8s infinite ease-in-out;
}

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

.hero-image {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 15px 30px rgba(93, 95, 239, 0.2);
}

/* New Hero Elements */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(93, 95, 239, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.hero-feature svg {
    color: var(--primary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: white !important;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.8;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.trust-item svg {
    color: var(--primary);
}

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.floating-element.chatgpt {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-element.claude {
    top: 30%;
    left: -15%;
    animation-delay: 1.5s;
}

.floating-element.grok {
    bottom: 30%;
    right: -5%;
    animation-delay: 3s;
}

.floating-element.gemini {
    bottom: 10%;
    left: -10%;
    animation-delay: 4.5s;
}

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

/* AI Providers Section */
.ai-providers {
    padding: 6rem 2rem;
    background: var(--background);
}

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

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ai-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.ai-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(93, 95, 239, 0.05), rgba(93, 95, 239, 0.02));
}

.ai-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.ai-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(93, 95, 239, 0.1);
}

.ai-icon.openai {
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.1), rgba(16, 163, 127, 0.05));
}

.ai-icon.anthropic {
    background: linear-gradient(135deg, rgba(204, 102, 51, 0.1), rgba(204, 102, 51, 0.05));
}

.ai-icon.xai {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
}

.ai-icon.google {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(66, 133, 244, 0.05));
}

.ai-icon.deepseek {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(139, 69, 19, 0.05));
}

.ai-icon.local {
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.1), rgba(128, 128, 128, 0.05));
}

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

.ai-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.ai-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.ai-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(93, 95, 239, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.ai-providers-note {
    text-align: center;
    padding: 2rem;
    background: rgba(93, 95, 239, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(93, 95, 239, 0.1);
}

.ai-providers-note p {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text);
}

/* Key Facts Section */
.key-facts {
    background-color: var(--background-alt);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.key-facts::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(93, 95, 239, 0.05) 0%, rgba(93, 95, 239, 0) 70%);
    top: -400px;
    left: -200px;
    z-index: 0;
}

.key-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.fact-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

.fact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.fact-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(93, 95, 239, 0.1);
    border-radius: 50%;
    margin-bottom: 1.75rem;
}

.fact-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary);
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 2rem;
    background: var(--background-alt);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-section::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.05) 0%, rgba(0, 188, 212, 0) 70%);
    bottom: -400px;
    right: -200px;
    z-index: 0;
}

.pricing-section .section-title {
    width: 100%;
}

.pricing-card {
    background: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 2rem auto;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Enterprise card styling */
.enterprise-card {
    margin-top: 3rem;
    border: 2px solid var(--primary);
    background: var(--background);
}

/* Make cards display side by side on larger screens */
@media (min-width: 1024px) {
    .pricing-section {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        align-items: stretch;
    }
    
    .pricing-section h2.section-title {
        width: 100%;
    }
    
    .pricing-card {
        flex: 1;
        min-width: 300px;
        max-width: 450px;
        margin: 0;
        display: flex;
        flex-direction: column;
    }
    
    .enterprise-card {
        margin-top: 0;
    }
    
    .pricing-section > p {
        width: 100%;
        margin-top: 2rem;
    }
}

.pricing-label {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 0 var(--radius) 0 var(--radius);
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1.5rem 0;
    line-height: 1;
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-features {
    margin: 2.5rem 0;
    text-align: left;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.feature-item i, .feature-item svg {
    color: var(--primary);
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text);
    font-size: 1.05rem;
}

/* Feature Matrix */
.feature-matrix {
    overflow-x: auto;
    margin: 4rem 0;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: var(--background);
    box-shadow: var(--shadow);
}

.feature-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.feature-table th, .feature-table td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.feature-table th {
    font-weight: 600;
    background: var(--background-alt);
}

.feature-table th:first-child, .feature-table td:first-child {
    text-align: left;
}

.feature-table tr:hover td {
    background: rgba(93, 95, 239, 0.03);
}

.feature-check {
    color: var(--primary);
    font-size: 1.5rem;
}

.feature-x {
    color: #f56565;
    font-size: 1.5rem;
}

.feature-partial {
    color: #f59e0b;
    font-size: 1.5rem;
}

.feature-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Apps Section */
.app-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* Showcase Section */
.showcase {
    padding: 6rem 2rem;
    background: var(--background-alt);
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.showcase-item {
    background: var(--background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.showcase-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.showcase-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.showcase-content h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.showcase-content p {
    color: var(--text-light);
    flex-grow: 1;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
}

.faq-container {
    max-width: 850px;
    margin: 3.5rem auto;
}

.faq-item {
    margin-bottom: 1.25rem;
    border-radius: var(--radius-md);
    background: var(--background);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

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

.faq-question h3 {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
}

.faq-question svg {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    margin-top: 0;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 6rem 2rem;
    background: var(--background-alt);
    position: relative;
}

.contact-info {
    margin: 2.5rem 0;
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: inline-block;
    min-width: 300px;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    text-align: left;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method svg {
    color: var(--primary);
    min-width: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-method p {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: var(--text);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: var(--gradient-primary);
    border-radius: 1.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
}

.footer-links a svg {
    min-width: 16px;
    flex-shrink: 0;
    position: relative;
    top: 1px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(3px);
}

.copyright {
    text-align: center;
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e0;
    font-size: 0.95rem;
}

/* Legal Pages */
.legal-content {
    max-width: 850px;
    margin: 7rem auto 4rem;
    padding: 0 2rem;
}

.legal-text {
    margin-top: 2.5rem;
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.legal-text h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    text-align: left;
}

.legal-text h2:first-child {
    margin-top: 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        padding-top: 7rem;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
    
    .hero {
        padding-top: 6rem;
        gap: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .floating-element {
        display: none;
    }
    
    .ai-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-providers {
        padding: 4rem 1.5rem;
    }
    
    .key-facts-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2.5rem 1.5rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .feature-legend {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .ai-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ai-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .feature-legend {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

.pricing-card .cta-button {
    margin-top: auto;
    align-self: center;
} 