/* ============================================
   AJAIA - Marketing Landing Page Styles
   Glassmorphic Design with Animated Elements
   ============================================ */

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

:root {
    --bg-primary: #0D1117;
    --bg-secondary: #161B22;
    --bg-tertiary: #1F2937;
    --bg-card: rgba(31, 41, 55, 0.6);

    --text-primary: #FFFFFF;
    --text-secondary: #B0B8C4;
    --text-tertiary: #9CA3AF;

    --accent-blue: #60A5FA;
    --accent-purple: #A78BFA;
    --accent-cyan: #22D3EE;
    --accent-green: #10B981;
    --accent-orange: #F59E0B;
    --accent-pink: #EC4899;

    --border-color: rgba(75, 85, 99, 0.5);
    --border-focus: rgba(59, 130, 246, 0.5);

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --nav-height: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === Gradient Text === */
.gradient-text {
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Navigation Header === */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-header.scrolled {
    background: rgba(13, 17, 23, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav-secondary {
    padding: 10px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-nav-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-nav-primary {
    padding: 10px 20px;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* === Mobile Navigation === */
.mobile-nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.mobile-nav-links {
    list-style: none;
    margin-bottom: 24px;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-mobile-secondary,
.btn-mobile-primary {
    display: block;
    padding: 14px 24px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
}

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

.btn-mobile-primary {
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    color: white;
}

/* === Hero Section === */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--nav-height) + 80px) 32px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Background Animations */
.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.grid-background {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0.3; transform: scale(1) translateY(0); }
    50% { opacity: 0.8; transform: scale(1.2) translateY(-20px); }
}

.connections-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    stroke: url(#connectionGradient);
    stroke-width: 1;
    stroke-dasharray: 5, 5;
    animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 200; }
}

.agent-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.agent-orb {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 2px;
    animation: orbFloat 4s ease-in-out infinite;
}

.agent-orb-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-15px) scale(1.05); opacity: 1; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: var(--accent-purple);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease-out;
}

.hero-badge i {
    font-size: 12px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Hero Bullets - Why Teams Choose AJAIA */
.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.25s both;
}

.hero-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.hero-bullet:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(139, 92, 246, 0.3);
}

.hero-bullet i {
    color: var(--accent-purple);
    font-size: 14px;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.btn-hero-primary i {
    transition: transform 0.2s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 14px;
    transition: all 0.3s ease;
}

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

.btn-hero-secondary i {
    font-size: 20px;
    color: var(--accent-blue);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

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

.hero-stat .stat-value {
    font-size: 36px;
    font-weight: 700;
}

.hero-stat .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1100px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.dashboard-screenshot {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.15);
    border: 1px solid var(--border-color);
}

.hero-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Floating Chatbot Preview */
.chatbot-preview {
    position: absolute;
    right: -40px;
    bottom: -20px;
    width: 280px;
    animation: floatChatbot 4s ease-in-out infinite;
    z-index: 20;
}

.chatbot-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(139, 92, 246, 0.3);
    border: 2px solid var(--accent-purple);
}

.chatbot-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.chatbot-badge i {
    font-size: 14px;
}

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

@media (max-width: 900px) {
    .chatbot-preview {
        position: relative;
        right: auto;
        bottom: auto;
        width: 220px;
        margin: 20px auto 0;
    }
}

.screenshot-placeholder {
    aspect-ratio: 16 / 9;
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.screenshot-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(6, 182, 212, 0.1) 100%);
}

.placeholder-content {
    position: relative;
    text-align: center;
    color: var(--text-tertiary);
}

.placeholder-content i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    opacity: 0.5;
}

.placeholder-content span {
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.placeholder-note {
    font-size: 14px;
    opacity: 0.7;
}

/* === Section Styles === */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: var(--accent-blue);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* === Features Section === */
.features-section {
    padding: 120px 32px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.feature-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.feature-icon.ai-icon {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
}

.feature-icon.integration-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
}

.feature-icon.sync-icon {
    background: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
}

.feature-icon.desktop-icon {
    background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
}

.feature-icon.voice-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
}

.feature-icon.extension-icon {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
}

.feature-icon.mcp-icon {
    background: linear-gradient(135deg, #06B6D4 0%, #14B8A6 100%);
}

.feature-icon.portfolio-icon {
    background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
}

.feature-list li i {
    color: var(--accent-green);
    font-size: 12px;
}

/* Feature Card CTA Button */
.btn-feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--accent-blue);
    border-radius: 8px;
    color: var(--accent-blue);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-feature-cta:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateX(4px);
}

.btn-feature-cta i {
    font-size: 12px;
}

/* === Integrations Section === */
.integrations-section {
    padding: 120px 32px;
    background: var(--bg-secondary);
}

.integration-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.integration-node {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Align ADO and Jira icons with AJAIA icon (account for AI-Powered badge height) */
.ado-node,
.jira-node {
    padding-bottom: 36px; /* Compensate for AI-Powered badge + gap */
}

.integration-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.ado-node .integration-icon-large {
    background: linear-gradient(135deg, #0078D4 0%, #00BCF2 100%);
    color: white;
}

.jira-node .integration-icon-large {
    background: linear-gradient(135deg, #0052CC 0%, #2684FF 100%);
    color: white;
}

.ajaia-node .integration-icon-large {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    padding: 16px;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
}

.integration-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.integration-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.ajaia-label-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 12px;
    color: var(--accent-purple);
}

.integration-lines {
    flex: 1;
    max-width: 200px;
    display: none;
}

.integration-svg {
    width: 100%;
    height: 60px;
}

.connection-path {
    fill: none;
    stroke: url(#connectionGradient);
    stroke-width: 2;
    stroke-dasharray: 8, 4;
    animation: dashFlow 2s linear infinite;
}

@keyframes dashFlow {
    0% { stroke-dashoffset: 24; }
    100% { stroke-dashoffset: 0; }
}

.integration-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.integration-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 15px;
}

.integration-feature i {
    color: var(--accent-cyan);
    font-size: 18px;
}

/* === Security Section === */
.security-section {
    padding: 120px 32px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.security-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.security-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 20px;
}

.security-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.security-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Security Intro Text */
.security-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 15px;
    color: var(--text-secondary);
    padding: 16px 24px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
}

.security-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
}

.security-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.security-feature-item i {
    color: var(--accent-green);
}

/* === Pricing Section === */
.pricing-section {
    padding: 120px 32px;
    background: var(--bg-primary);
}

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

.pricing-grid-business {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: linear-gradient(90deg, #8B5CF6 0%, #EC4899 100%);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.pricing-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-ideal {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.pricing-hero-feature {
    font-size: 13px;
    color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.08);
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 16px;
    color: var(--text-tertiary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features li i {
    color: var(--accent-green);
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-pricing.featured {
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    border: none;
}

.btn-pricing.featured:hover {
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

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

.btn-view-pricing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: gap 0.2s ease;
}

.btn-view-pricing:hover {
    gap: 12px;
}

/* === Extension Callout Section === */
.extension-callout {
    padding: 100px 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

.callout-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.callout-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 16px;
    font-size: 28px;
    color: white;
    margin-bottom: 24px;
}

.callout-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #8B5CF6 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.callout-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.callout-description {
    font-size: 15px;
    color: var(--text-tertiary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.callout-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.callout-tier {
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.callout-tier:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
}

.callout-tier.premium {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.1);
}

.callout-tier.premium:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.tier-price {
    margin-bottom: 20px;
}

.tier-price .price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.tier-price .price-period {
    font-size: 14px;
    color: var(--text-secondary);
}

.tier-features {
    list-style: none;
    text-align: left;
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
}

.tier-features li i {
    color: var(--accent-green);
    font-size: 12px;
}

.tier-features li strong {
    color: var(--text-primary);
}

.btn-callout-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-callout-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-callout-cta i {
    font-size: 18px;
}

.btn-callout-cta i:last-child {
    font-size: 14px;
    opacity: 0.8;
}

.callout-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-tertiary);
}

.callout-note a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.callout-note a:hover {
    color: var(--accent-cyan);
}

/* === Demo Section === */
.demo-section {
    padding: 120px 32px;
    background: var(--bg-secondary);
}

/* Hero Persona Callout */
.hero-persona {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.28s both;
}

.hero-persona i {
    font-size: 16px;
}

/* Interactive Gallery */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-main {
    position: relative;
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-main:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.gallery-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.15s ease;
}

.gallery-main:hover .gallery-main-image {
    transform: scale(1.01);
}

.gallery-main-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.gallery-label-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-label-icon i {
    font-size: 20px;
    color: white;
}

.gallery-label-content .gallery-label-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.gallery-label-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    max-width: 800px;
}

.gallery-zoom-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0;
}

.gallery-main:hover .gallery-zoom-btn {
    opacity: 1;
}

.gallery-zoom-btn:hover {
    background: rgba(59, 130, 246, 0.8);
    transform: scale(1.1);
}

/* Thumbnail Grid - Scrollable for Full Product Journey */
.gallery-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-purple) rgba(255, 255, 255, 0.1);
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    border-radius: 3px;
}

.gallery-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 0 0 120px;
    aspect-ratio: 16/10;
    scroll-snap-align: start;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.gallery-thumb:hover {
    transform: translateY(-3px);
    border-color: var(--accent-blue);
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

.gallery-thumb.active {
    border-color: var(--accent-purple);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.gallery-thumb.highlight-ai {
    border-color: rgba(139, 92, 246, 0.5);
}

.gallery-thumb.highlight-ai.active {
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.6);
}

.thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 8px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.ai-indicator {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(139, 92, 246, 0); }
}

.gallery-hint {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-tertiary);
}

.gallery-hint i {
    margin-right: 6px;
    color: var(--accent-blue);
}

/* Lightbox Modal */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-content {
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 16px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 1024px) {
    .gallery-thumb {
        flex: 0 0 110px;
    }
}

@media (max-width: 768px) {
    .gallery-thumb {
        flex: 0 0 100px;
    }
    
    .gallery-main-label {
        padding: 16px 20px;
    }
    
    .gallery-label-icon {
        width: 40px;
        height: 40px;
    }
    
    .gallery-label-content .gallery-label-title {
        font-size: 16px;
    }
    
    .gallery-label-content p {
        font-size: 12px;
    }
    
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-persona {
        font-size: 13px;
        padding: 10px 16px;
    }
}

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

.video-placeholder {
    aspect-ratio: 16 / 9;
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.play-button i {
    margin-left: 4px;
}

.video-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-tertiary);
}

.video-content i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.video-content span {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

/* === CTA Section === */
.cta-section {
    position: relative;
    padding: 120px 32px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(6, 182, 212, 0.1) 100%);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    inset: 0;
}

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

.cta-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 14px;
    transition: all 0.3s ease;
}

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

.cta-note {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* === Footer === */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 32px 40px;
}

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

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

.footer-brand {
    max-width: 300px;
}

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

.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
}

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-column {
    min-width: 120px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

/* Footer Trust Badges */
.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-tertiary);
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.trust-badge i {
    color: var(--accent-purple);
    font-size: 12px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* === Animations === */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* === Responsive Design === */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .pricing-card:nth-child(3) {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .footer-brand {
        grid-column: span 2;
        max-width: none;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-nav-menu {
        display: block;
    }

    .hero-section {
        padding: calc(var(--nav-height) + 60px) 20px 60px;
    }

    .hero-stats {
        gap: 32px;
    }

    .hero-stat .stat-value {
        font-size: 28px;
    }

    .features-section,
    .integrations-section,
    .security-section,
    .pricing-section,
    .demo-section,
    .cta-section {
        padding: 80px 20px;
    }

    .section-container {
        padding: 0 16px;
    }

    .features-grid,
    .security-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card:nth-child(3) {
        grid-column: span 1;
        max-width: none;
    }

    .extension-callout {
        padding: 60px 20px;
    }

    .callout-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .callout-tier {
        padding: 24px;
    }

    .callout-subtitle {
        font-size: 14px;
    }

    .integration-diagram {
        gap: 40px;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .integration-features {
        gap: 20px;
    }

    .security-features {
        flex-direction: column;
        align-items: center;
    }
}
