:root {
    --bg-color: #030308;
    --bg-secondary: #08081a;
    --bg-elevated: #0f0f1e;
    --text-primary: #f1f5f9;
    --text-secondary: #ffffff;
    --text-muted: #64748b;
    --accent-primary: #4f8cff;
    --accent-secondary: #a855f7;
    --accent-cyan: #22d3ee;
    --gradient-primary: linear-gradient(135deg, #4f8cff 0%, #a855f7 50%, #6366f1 100%);
    --gradient-glow: linear-gradient(135deg, rgba(79, 140, 255, 0.4), rgba(168, 85, 247, 0.4));
    --gradient-border: linear-gradient(135deg, rgba(79, 140, 255, 0.5), rgba(168, 85, 247, 0.3));
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-hover: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.16);
    --shadow-sm: 0 4px 24px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 60px rgba(79, 140, 255, 0.15);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 140, 255, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(168, 85, 247, 0.08), transparent),
        radial-gradient(ellipse 50% 30% at 0% 80%, rgba(34, 211, 238, 0.06), transparent);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.75rem;
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}

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

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    max-width: 680px;
    margin: 0 auto 0.75rem;
}

.section-header p {
    color: #ffffff;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(79, 140, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(79, 140, 255, 0.45);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

.btn-full { width: 100%; }

.btn-nav {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Glass cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-medium);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(3, 3, 8, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.25s ease;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Hero */
.hero {
    position: relative;
    padding: 10rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem 0.45rem 0.75rem;
    background: rgba(79, 140, 255, 0.1);
    color: var(--accent-primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(79, 140, 255, 0.25);
}

.badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Blobs */
.blob-cont {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(79, 140, 255, 0.2);
    top: -150px;
    right: -100px;
    animation: float 14s infinite ease-in-out alternate;
}

.blob-2 {
    width: 450px;
    height: 450px;
    background: rgba(168, 85, 247, 0.18);
    bottom: -80px;
    left: -80px;
    animation: float 18s infinite ease-in-out alternate-reverse;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: rgba(34, 211, 238, 0.1);
    top: 40%;
    left: 30%;
    animation: float 12s infinite ease-in-out alternate;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.05); }
}

/* Hero visual card */
.visual-card {
    padding: 1.75rem;
    position: relative;
    transform: perspective(1200px) rotateY(-4deg) rotateX(3deg);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.visual-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-border);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.visual-card:hover {
    transform: perspective(1200px) rotateY(0) rotateX(0);
}

.search-bar {
    background: rgba(0, 0, 0, 0.35);
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--glass-border);
}

.search-icon {
    font-size: 1rem;
    opacity: 0.7;
}

.typing-animation {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 0.82rem;
    color: #ffffff;
    border-right: 2px solid var(--accent-primary);
    white-space: nowrap;
    overflow: hidden;
    animation: typing 5s steps(42, end) infinite, blink-caret 0.75s step-end infinite;
    display: inline-block;
    max-width: 100%;
}

@keyframes typing {
    0%, 100% { width: 0; }
    40%, 60% { width: 100%; }
}

@keyframes blink-caret {
    50% { border-color: transparent; }
}

.ai-response {
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.08), rgba(168, 85, 247, 0.06));
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(79, 140, 255, 0.2);
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    color: var(--accent-primary);
}

.ai-text {
    font-size: 0.92rem;
    color: #ffffff;
    line-height: 1.65;
}

.ai-text strong {
    color: var(--text-primary);
}

/* Platforms */
.platforms-bar {
    padding: 3.5rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(8, 8, 26, 0.6);
    position: relative;
    z-index: 1;
}

.platforms-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.platforms-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.platform-item {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    transition: var(--transition-fast);
}

.platform-item:hover {
    color: var(--text-primary);
    border-color: rgba(79, 140, 255, 0.4);
    background: rgba(79, 140, 255, 0.08);
    box-shadow: 0 0 24px rgba(79, 140, 255, 0.15);
    transform: translateY(-2px);
}

/* Services */
.services {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.15), rgba(168, 85, 247, 0.15));
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
}

.service-card p {
    color: #ffffff;
    font-size: 0.95rem;
}

/* Comparison */
.comparison-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.comparison-card {
    padding: 2rem;
}

.comparison-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.comparison-card--old h3 {
    color: var(--text-muted);
}

.comparison-card--new {
    border-color: rgba(79, 140, 255, 0.35);
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.06), rgba(168, 85, 247, 0.04));
    box-shadow: var(--shadow-glow);
}

.comparison-card--new h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.comparison-list li {
    padding: 0.55rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-card--old .comparison-list li {
    color: var(--text-muted);
}

.comparison-card--new .comparison-list li {
    color: var(--text-primary);
}

.comparison-icon {
    flex-shrink: 0;
    font-size: 0.85rem;
}

/* Process */
.process {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

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

.step {
    padding: 1.75rem;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step h3 {
    position: relative;
    z-index: 1;
}

.step p {
    color: #ffffff;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

/* Industries */
.industries {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.industry-card {
    padding: 2rem;
    text-align: center;
    display: block;
    text-decoration: none;
    color: inherit;
}

.industry-card h3 {
    color: var(--text-primary);
}

.industry-card::before {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 0 auto 1.25rem;
}

.industry-card p {
    color: #ffffff;
    font-size: 0.95rem;
}

.industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.35);
}

/* FAQ */
.faq {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

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

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-primary);
    transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(79, 140, 255, 0.15);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    position: relative;
}

.testimonial-quote {
    font-size: 3.5rem;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.35;
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
}

.testimonial-text {
    font-style: italic;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
    font-size: 0.98rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-avatar--1 {
    background: var(--gradient-primary);
}

.testimonial-avatar--2 {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-cyan));
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Pricing */
.pricing {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2rem 1.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: rgba(79, 140, 255, 0.45);
    background: linear-gradient(180deg, rgba(79, 140, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.package-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.package-price span {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
}

.package-desc {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.package-features li {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.package-features li::before {
    content: "✓";
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.85rem;
}

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

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

/* Contact */
.contact-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.contact-inner {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(79, 140, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: #ffffff;
    margin-top: 1rem;
    max-width: 280px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4 {
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer-author-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    background: var(--gradient-primary) border-box;
    margin-bottom: 0.75rem;
    display: block;
}

.footer-author-name {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.footer-author-bio {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-social a {
    color: var(--accent-primary);
    font-size: 0.85rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.25rem;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media print {
    .navbar, .footer, .blob-cont, .hamburger, .nav-cta, .nav-cta-group, .service-ticker {
        display: none !important;
    }
}

/* Utility */
.content-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

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

.page-header {
    padding: 9rem 0 3.5rem;
    text-align: center;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-header p {
    color: #ffffff;
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.text-content h2 {
    margin-top: 2.25rem;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.text-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.text-content p,
.text-content li {
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.text-content ul,
.text-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.text-content a {
    color: var(--accent-primary);
    font-weight: 500;
}

.page-cta {
    padding: 3rem 0 5rem;
    position: relative;
    z-index: 1;
}

.page-cta-inner {
    padding: 2.5rem;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.page-cta-inner h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.page-cta-inner p {
    color: #ffffff;
}

section[id] {
    scroll-margin-top: 88px;
}

.mobile-only-cta {
    display: none;
}

/* Trust row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    list-style: none;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #ffffff;
}

.trust-row li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Service ticker */
.service-ticker {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    padding: 0.85rem 0;
    background: rgba(8, 8, 26, 0.5);
    position: relative;
    z-index: 1;
}

.service-ticker-track {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}

.ticker-sep {
    margin: 0 1.25rem;
    color: var(--accent-primary);
    opacity: 0.6;
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

/* Umbrella section */
.umbrella-section {
    background: var(--bg-secondary);
}

.umbrella-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.umbrella-copy p {
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.umbrella-copy strong {
    color: var(--text-primary);
}

.umbrella-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
}

.umbrella-links a {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.umbrella-tree {
    padding: 1.75rem;
}

.tree-root {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tree-branches {
    list-style: none;
    font-size: 0.9rem;
    color: #ffffff;
}

.tree-branches li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
    padding-left: 1rem;
    border-left: 2px solid var(--accent-primary);
    margin-bottom: 0.5rem;
}

/* Platform details */
.platform-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.platform-detail {
    padding: 1.25rem;
}

.platform-detail h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.platform-detail p {
    font-size: 0.85rem;
    color: #ffffff;
    line-height: 1.55;
}

.platform-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.platform-cta a {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Six service grid */
.services-grid-six {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.service-from {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.services-hub-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Audience section */
.audience-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.audience-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.audience-num {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.08em;
}

.audience-card h3 {
    margin: 0.75rem 0;
}

.audience-card p {
    color: #ffffff;
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 1rem;
}

.audience-card a {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* How it works */
.how-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.how-step {
    padding: 2rem;
    text-align: center;
}

.how-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.how-step p {
    color: #ffffff;
    font-size: 0.95rem;
}

.how-step a {
    color: var(--accent-primary);
}

/* Three-way comparison */
.comparison-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.comparison-card--ent h3 {
    color: var(--text-muted);
}

.comparison-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: -0.5rem 0 1rem;
}

.comparison-cta {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.comparison-cta a {
    color: var(--accent-primary);
    font-weight: 500;
}

/* Six industries */
.industries-grid-six {
    grid-template-columns: repeat(3, 1fr);
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: #ffffff;
    font-size: 0.9rem;
}

.pricing-note a {
    color: var(--accent-primary);
}

/* White label banner */
.white-label-banner {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.white-label-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.08), rgba(168, 85, 247, 0.06));
}

.white-label-inner h2 {
    margin: 0.5rem 0;
    font-size: 1.75rem;
}

.white-label-inner p {
    color: #ffffff;
    max-width: 520px;
    font-size: 0.95rem;
}

/* Responsive */
@media (min-width: 993px) and (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle,
    .hero-stats {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-stats {
        justify-content: center;
    }

    .visual-card {
        transform: none;
        max-width: 480px;
        margin: 0 auto;
    }

    .services-grid,
    .pricing-grid,
    .process-steps,
    .industries-grid,
    .comparison-grid,
    .comparison-grid-three,
    .testimonials-grid,
    .umbrella-grid,
    .platform-details,
    .audience-grid,
    .how-steps {
        grid-template-columns: 1fr;
    }

    .services-grid-six,
    .industries-grid-six {
        grid-template-columns: 1fr;
    }

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

    .white-label-inner {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card.popular {
        transform: none;
    }

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

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 1.15rem;
    }

    .hero {
        padding: 7.5rem 0 3.5rem;
        min-height: auto;
        overflow: hidden;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
        word-break: break-word;
        hyphens: auto;
    }

    .badge {
        white-space: normal;
        height: auto;
        text-align: center;
        line-height: 1.4;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(3, 3, 8, 0.97);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition-medium);
        align-items: stretch;
    }

    .nav-links.nav-active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-cta,
    .nav-cta-group {
        display: none !important;
    }

    .mobile-only-cta {
        display: flex !important;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .services,
    .pricing,
    .process,
    .industries,
    .faq,
    .content-section,
    .comparison-section,
    .testimonials-section,
    .contact-section {
        padding: 4rem 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

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

@media print {
    .navbar, .footer, .blob-cont, .hamburger, .nav-cta, .nav-cta-group {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    body::before, body::after {
        display: none;
    }

    .glass-card {
        border: 1px solid #ccc;
    }
}

/* --- PERMANENT MOBILE FIXES --- */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    .hero-content, .hero-subtitle {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .hero h1 {
        font-size: 2rem !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        min-width: 0 !important;
        max-width: 100% !important;
        line-height: 1.2 !important;
    }
    .badge {
        white-space: normal !important;
        height: auto !important;
        padding: 10px !important;
        line-height: 1.4 !important;
        display: block !important;
        width: auto !important;
        max-width: 100% !important;
        margin: 0 auto 1.5rem auto !important;
    }
    .container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        padding: 0 1rem !important;
    }
    .hero-actions {
        flex-direction: column !important;
        width: 100% !important;
    }
    .hero-actions a {
        width: 100% !important;
    }
    .visual-card {
        padding: 1.25rem !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .search-bar {
        padding: 0.6rem 0.8rem !important;
        gap: 0.5rem !important;
        box-sizing: border-box !important;
    }
    .typing-animation {
        font-size: 0.7rem !important;
        white-space: normal !important;
        overflow: visible !important;
        animation: none !important;
        border-right: none !important;
    }
    .ai-text {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
}

/* Services Dropdown Menu Styles */
.nav-links li.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.dropdown-toggle .arrow {
    font-size: 0.65rem;
    transition: transform var(--transition-fast);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 0.75rem 0;
    width: 250px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
    z-index: 1010;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.dropdown-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none !important;
    list-style-type: none !important;
}

.dropdown-menu a {
    display: block !important;
    padding: 0.6rem 1.5rem !important;
    color: var(--text-secondary) !important;
    font-size: 0.85rem !important;
    text-align: left !important;
    width: 100% !important;
    font-weight: 500 !important;
    text-transform: none !important;
    transition: var(--transition-fast) !important;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    color: var(--text-primary) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.nav-links li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-links li.dropdown:hover .dropdown-toggle .arrow {
    transform: rotate(180deg);
}

/* Mobile Dropdown Styling override */
@media (max-width: 992px) {
    .nav-links li.dropdown {
        width: 100%;
    }
    
    .nav-links .dropdown-menu {
        display: block !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding: 0.5rem 0 0.5rem 1rem !important;
        border-left: 1px solid var(--glass-border) !important;
        margin-top: 0.5rem !important;
        width: 100% !important;
    }
    
    .nav-links .dropdown-menu a {
        padding: 0.5rem 0 !important;
        font-size: 0.9rem !important;
    }
    
    .dropdown-toggle .arrow {
        display: none !important;
    }
}

/* FAQ Accordion Styles */
.faq-accordion {
    width: 100%;
    margin-top: 2rem;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 1.2rem 0;
}

.faq-question {
    background: none;
    border: none;
    color: white;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    outline: none;
    transition: color var(--transition-fast);
}

.faq-question:hover,
.faq-item.active .faq-question {
    color: var(--accent-primary) !important;
}

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



/* Search Overlay Styles */
.search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 8, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    border-bottom: 1px solid var(--glass-border);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.search-form {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    font-family: var(--font-body);
    padding: 0.5rem 3rem 0.5rem 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--gradient-primary);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-submit {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.search-submit:hover {
    color: #4f8cff;
}

.search-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 2rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close:hover {
    color: white;
}


/* Added by request to make paragraphs white globally */
p { color: #ffffff !important; }
