/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --emerald: #22E57F;
    --emerald-light: #1CB7E8;
    --emerald-dark: #0FAF6A;
    --cyan: #1CB7E8;
    --dark-bg: #0A0F14;
    --darker-bg: #060A0F;
    --darkest-bg: #030608;
    --light-text: #f8fafc;
    --gray-text: #94a3b8;
    --border-color: #1a2535;
    --glow-color: rgba(34, 229, 127, 0.3);
    --cyan-glow: rgba(28, 183, 232, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Layers */
.background-layers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(34, 229, 127, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(28, 183, 232, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(34, 229, 127, 0.03) 0%, transparent 50%);
}

.layer-2 {
    animation: float 20s ease-in-out infinite;
}

.layer-3 {
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(10, 15, 20, 0.88);
    border-bottom: 1px solid rgba(34, 229, 127, 0.12);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    position: relative;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--emerald);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-glow {
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle, var(--emerald), var(--emerald-light));
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(10px);
    z-index: -1;
}

.logo-image {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: var(--dark-bg);
    border: 1.5px solid rgba(34, 229, 127, 0.45);
    box-shadow: 0 0 14px rgba(34, 229, 127, 0.22), 0 0 5px rgba(28, 183, 232, 0.12);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald), var(--cyan));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--emerald);
}

.btn-nav {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: var(--dark-bg);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--glow-color);
}

.btn-nav:hover {
    background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
    box-shadow: 0 6px 30px var(--glow-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 3rem 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(34, 229, 127, 0.08);
    border: 1px solid rgba(34, 229, 127, 0.3);
    color: var(--emerald);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--light-text) 0%, rgba(248, 250, 252, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: var(--dark-bg);
    box-shadow: 0 8px 32px var(--glow-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px var(--glow-color);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover .btn-glow {
    transform: translateX(100%);
}

.btn-secondary {
    border: 2px solid rgba(34, 229, 127, 0.5);
    color: var(--emerald);
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(34, 229, 127, 0.08);
    border-color: var(--emerald);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--emerald);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-text);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16/10;
    border-radius: 20px;
    overflow: hidden;
    background: var(--darkest-bg);
    box-shadow: 0 24px 64px var(--shadow-color);
}

.frame-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--emerald), var(--emerald-light), var(--emerald));
    border-radius: 22px;
    z-index: 1;
}

.frame-glow {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(135deg, var(--emerald), var(--cyan), var(--emerald));
    border-radius: 24px;
    opacity: 0.35;
    filter: blur(18px);
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 2;
    display: block;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    z-index: 3;
}

.ai-interface {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(34, 229, 127, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.interface-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--emerald);
}

.signal-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.interface-content {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--emerald);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--gray-text);
    margin-top: 0.25rem;
}

/* Sections */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--light-text), var(--gray-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--cyan));
    margin: 0 auto;
    border-radius: 2px;
}

/* Search Changed */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.content-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.content-block:hover {
    transform: translateY(-5px);
    border-color: rgba(28, 183, 232, 0.4);
    box-shadow: 0 20px 40px var(--shadow-color), 0 0 20px rgba(28, 183, 232, 0.08);
}

.block-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--dark-bg);
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.content-block p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* System Section */
.dashboard-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.dashboard-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-color);
}

.dashboard-frame .frame-border,
.dashboard-frame .frame-glow {
    border-radius: 18px;
}

.dashboard-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.dashboard-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
}

.overlay-content h3 {
    color: var(--light-text);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: var(--gray-text);
}

.interface-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.interface-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow-color);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--emerald), var(--emerald-light));
    border-radius: 14px;
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
}

.interface-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* How It Works */
.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.video-showcase {
    position: sticky;
    top: 8rem;
}

/* Vertical video frame — for video1.mp4 (portrait) */
.video-frame-vertical {
    aspect-ratio: 9 / 16;
    max-width: 300px;
    max-height: 580px;
    width: auto;
    margin: 0 auto;
    background: var(--darkest-bg);
}

.vertical-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: var(--darkest-bg);
    z-index: 2;
    display: block;
}

@media (max-width: 1024px) {
    .video-frame-vertical {
        max-width: 260px;
        max-height: 480px;
    }
}

@media (max-width: 768px) {
    .video-frame-vertical {
        max-width: 220px;
        max-height: 400px;
        width: 100%;
    }
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(28, 183, 232, 0.4);
    box-shadow: 0 20px 40px var(--shadow-color), 0 0 20px rgba(28, 183, 232, 0.08);
}

.step-number {
    position: absolute;
    top: -10px;
    left: 2rem;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    color: var(--dark-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-text);
    margin-top: 1rem;
}

.step-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

.step-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--cyan));
    border-radius: 0 0 16px 16px;
}

/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(28, 183, 232, 0.4);
    box-shadow: 0 20px 40px var(--shadow-color), 0 0 20px rgba(28, 183, 232, 0.08);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--dark-bg);
}

.industry-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light-text);
}

/* Pricing */
.pricing-container {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pricing-card .card-glow {
    border-radius: 22px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.setup-price,
.monthly-price {
    text-align: center;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--emerald);
}

.price-label {
    font-size: 0.875rem;
    color: var(--gray-text);
    margin-top: 0.25rem;
}

.plus {
    font-size: 1.5rem;
    color: var(--gray-text);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-text);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Final CTA */
.cta-section {
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(34, 229, 127, 0.07) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(28, 183, 232, 0.05) 0%, transparent 50%);
}

.cta-section .section-container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    margin-bottom: 4rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--light-text), var(--gray-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.cta-visual {
    display: flex;
    justify-content: center;
}

.ai-stats {
    display: flex;
    gap: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--emerald);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--gray-text);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    position: relative;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.footer-logo .logo-glow {
    border-radius: 4px;
}

.footer p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--emerald);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.footer-section h4 {
    color: var(--emerald);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.footer-section a:hover {
    color: var(--emerald);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--emerald);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .video-showcase {
        position: static;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .ai-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero-container {
        padding: 6rem 1.5rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-showcase {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-visual {
    animation: slideInRight 1s ease-out 0.2s both;
}

/* Scroll effects */
@media (prefers-reduced-motion: no-preference) {
    .section {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .section.in-view {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-particle {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Testimonials */
.testimonial-block {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    color: var(--emerald);
    opacity: 0.6;
    margin-bottom: 1rem;
}

.testimonial-block p {
    flex: 1;
    font-size: 0.975rem;
    line-height: 1.75;
    color: var(--gray-text);
    font-style: italic;
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.author-name {
    font-weight: 700;
    color: var(--light-text);
    font-size: 0.9rem;
}

.author-company {
    font-size: 0.8rem;
    color: var(--emerald);
    margin-top: 0.2rem;
    font-weight: 500;
}

/* Pricing features with checkmark style */
.pricing-features li::before {
    content: '✦ ';
    color: var(--emerald);
    font-size: 0.75rem;
}

/* Section subtitle */
.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    font-size: 1rem;
    max-width: 560px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

/* AI Discovery Flow Section */
.flow-grid {
    display: grid;
    grid-template-columns: 1fr 52px 1fr 52px 1fr 52px 1fr;
    align-items: start;
    gap: 0;
    margin-top: 1rem;
}

.flow-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.flow-step:hover {
    border-color: rgba(34, 229, 127, 0.3);
    box-shadow: 0 20px 40px var(--shadow-color), 0 0 24px rgba(34, 229, 127, 0.07);
    transform: translateY(-5px);
}

.flow-step-highlight {
    border-color: rgba(34, 229, 127, 0.2);
    background: rgba(34, 229, 127, 0.04);
}

.flow-num {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 1rem;
    opacity: 0.65;
}

.flow-icon {
    width: 52px;
    height: 52px;
    background: rgba(34, 229, 127, 0.08);
    border: 1px solid rgba(34, 229, 127, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--emerald);
    transition: all 0.3s ease;
}

.flow-step:hover .flow-icon {
    background: rgba(34, 229, 127, 0.14);
    border-color: rgba(34, 229, 127, 0.35);
}

.flow-icon-accent {
    background: linear-gradient(135deg, rgba(34, 229, 127, 0.2), rgba(28, 183, 232, 0.12));
    border-color: rgba(34, 229, 127, 0.3);
}

.flow-step h3 {
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.flow-step p {
    font-size: 0.825rem;
    color: var(--gray-text);
    line-height: 1.65;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3.5rem;
    color: var(--emerald);
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .flow-grid {
        grid-template-columns: 1fr 40px 1fr;
        gap: 0;
    }
    .flow-arrow:nth-child(6) {
        display: none;
    }
    .flow-step:nth-child(7) {
        grid-column: 1 / -1;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .flow-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .flow-arrow {
        transform: rotate(90deg);
        padding-top: 0;
        height: 36px;
        justify-self: center;
    }
    .flow-step:nth-child(7) {
        max-width: 100%;
    }
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.benefit-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    border-color: rgba(28, 183, 232, 0.35);
    box-shadow: 0 20px 40px var(--shadow-color), 0 0 24px rgba(28, 183, 232, 0.07);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
}

.benefit-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--gray-text);
    font-size: 0.875rem;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-card {
        gap: 1.25rem;
    }
}

/* AI Platforms Credibility Section */
.ai-platforms-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
}

.platforms-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    opacity: 0.7;
}

.platforms-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
}

.platform-chip {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    cursor: default;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.platform-chip:hover {
    border-color: rgba(34, 229, 127, 0.35);
    box-shadow: 0 0 24px rgba(34, 229, 127, 0.08), 0 4px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    background: rgba(34, 229, 127, 0.04);
}

.platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    opacity: 0.75;
    flex-shrink: 0;
}

.platform-chip:hover .platform-icon {
    opacity: 1;
}

.platform-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-text);
    white-space: nowrap;
    opacity: 0.75;
}

.platform-chip:hover .platform-name {
    opacity: 1;
}

.platforms-tagline {
    text-align: center;
    color: var(--gray-text);
    font-size: 0.875rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.8;
}

/* Hero ambient lighting */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 15% 50%, rgba(34, 229, 127, 0.07) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 85% 20%, rgba(28, 183, 232, 0.05) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Dashboard Metrics Strip */
.dashboard-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem 3rem;
    margin: 3rem 0;
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
}

.dash-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem 2.5rem;
    flex: 1;
    min-width: 140px;
}

.dash-metric-value {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.dash-metric-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-text);
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.dash-metric-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .dashboard-metrics {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    .dash-metric-divider {
        width: 48px;
        height: 1px;
    }
    .dash-metric {
        padding: 0;
        min-width: auto;
        width: 100%;
    }
}

/* CTA Eyebrow Label */
.cta-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--emerald);
    background: rgba(34, 229, 127, 0.08);
    border: 1px solid rgba(34, 229, 127, 0.22);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

/* CTA Title — larger size */
.cta-title {
    font-size: 3.75rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em;
    line-height: 1.08 !important;
    margin-bottom: 1.5rem !important;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem !important;
    }
}

/* CTA Action Row */
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

/* CTA Phone Link */
.cta-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cta-phone-link svg {
    color: var(--emerald);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.cta-phone-link:hover {
    color: var(--light-text);
}

.cta-phone-link:hover svg {
    opacity: 1;
}

/* CTA Ambient Glow Orbs */
.cta-glow-orb {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.cta-orb-left {
    background: radial-gradient(circle, rgba(34, 229, 127, 0.12) 0%, transparent 70%);
    top: -120px;
    left: -180px;
}

.cta-orb-right {
    background: radial-gradient(circle, rgba(28, 183, 232, 0.09) 0%, transparent 70%);
    bottom: -120px;
    right: -180px;
}

/* Shimmer sweep on primary button */
@keyframes shimmer-sweep {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(300%) skewX(-15deg); }
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: translateX(-100%) skewX(-15deg);
}

.btn-primary:hover::after {
    animation: shimmer-sweep 0.65s ease forwards;
}

/* ══════════════════════════════════════
   Homepage — Regina Bridge CTA
══════════════════════════════════════ */
.rg-bridge-section {
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rg-bridge-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 229, 127, 0.055) 0%, transparent 65%);
    pointer-events: none;
}

.rg-bridge-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.rg-bridge-headline {
    font-size: 3.75rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    background: linear-gradient(135deg, var(--light-text) 0%, rgba(248, 250, 252, 0.65) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rg-bridge-sub {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.7;
    max-width: 480px;
}

@media (max-width: 768px) {
    .rg-bridge-section { padding: 5rem 0; }
    .rg-bridge-headline { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .rg-bridge-headline { font-size: 2rem; }
}

/* ══════════════════════════════════════
   Meet Regina Section
══════════════════════════════════════ */
.regina-section {
    position: relative;
    overflow: hidden;
}

.regina-section::before {
    content: '';
    position: absolute;
    top: 5%;
    right: -15%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 229, 127, 0.035) 0%, transparent 70%);
    pointer-events: none;
}

.regina-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 183, 232, 0.025) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Header ── */
.regina-header {
    text-align: center;
    margin-bottom: 5rem;
}

.regina-eyebrow {
    display: inline-block;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald);
    background: rgba(34, 229, 127, 0.07);
    border: 1px solid rgba(34, 229, 127, 0.18);
    padding: 0.5rem 1.4rem;
    border-radius: 20px;
    margin-bottom: 1.75rem;
}

.regina-main-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    background: linear-gradient(135deg, var(--light-text) 0%, rgba(248, 250, 252, 0.65) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Top Grid: Opening + Compounding Card ── */
.regina-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    margin-bottom: 5rem;
}

.regina-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.regina-lead {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1.5;
    letter-spacing: -0.015em;
}

.regina-power {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1.25rem;
    border-left: 2px solid rgba(34, 229, 127, 0.25);
}

.power-lead {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-text);
    line-height: 1.65;
}

.power-body {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.75;
}

/* Compounding card */
.compounding-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 2.75rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.compounding-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 229, 127, 0.35), transparent);
}

.compounding-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--emerald);
    opacity: 0.75;
}

.compounding-statements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.compounding-statements p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-text);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.compounding-statements p:first-child {
    font-size: 1.25rem;
    color: var(--emerald);
    font-weight: 700;
}

/* ── Industry-Aware Intelligence ── */
.regina-industry-block {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.industry-kicker {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 1rem;
    opacity: 0.75;
}

.industry-intro {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1.4;
    margin-bottom: 1.75rem;
    letter-spacing: -0.015em;
}

.industry-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.industry-list li {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.65;
    padding-left: 1rem;
    position: relative;
}

.industry-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--emerald);
    opacity: 0.6;
}

.industry-scores {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.intel-scores {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.score-item {
    display: grid;
    grid-template-columns: 88px 1fr 38px;
    align-items: center;
    gap: 0.75rem;
}

.score-label {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--gray-text);
}

.score-bar-wrap {
    height: 5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.score-bar {
    height: 100%;
    width: var(--pct);
    background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
    border-radius: 4px;
}

.score-bar-high {
    background: linear-gradient(90deg, #22E57F, #00ffaa);
}

.score-bar-mid {
    background: linear-gradient(90deg, #1CB7E8, #22E57F);
}

.score-value {
    font-size: 0.775rem;
    font-weight: 800;
    color: var(--emerald);
    text-align: right;
}

.scores-label {
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-text);
    opacity: 0.5;
    text-align: right;
}

/* ── How Regina Operates ── */
.regina-operates {
    margin-bottom: 3.5rem;
}

.operates-header {
    margin-bottom: 2.5rem;
}

.operates-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--light-text);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.operates-subtitle {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.operates-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
}

.op-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.5;
}

.op-item:nth-child(even) {
    border-right: none;
}

.op-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.op-item:hover {
    background: rgba(34, 229, 127, 0.025);
    color: var(--light-text);
}

.op-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: var(--emerald);
    opacity: 0.6;
}

/* ── Control + Autonomy ── */
.regina-control {
    border-left: 2px solid rgba(34, 229, 127, 0.3);
    padding: 1.25rem 0 1.25rem 2rem;
    margin-bottom: 4rem;
}

.regina-control p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gray-text);
    line-height: 1.75;
    max-width: 680px;
}

/* ── Final Line ── */
.regina-final {
    text-align: center;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.regina-final-line {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Regina Responsive ── */
@media (max-width: 1024px) {
    .regina-main-title { font-size: 3.75rem; }
    .regina-header { margin-bottom: 4rem; }
    .regina-top-grid { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 4rem; }
    .regina-industry-block { grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem; }
}

@media (max-width: 768px) {
    .regina-main-title { font-size: 2.75rem; }
    .regina-lead { font-size: 1.15rem; }
    .compounding-card { padding: 2rem; }
    .compounding-statements p:first-child { font-size: 1.1rem; }
    .compounding-statements p { font-size: 0.975rem; }
    .operates-checklist { grid-template-columns: 1fr; }
    .op-item { border-right: none; }
    .op-item:nth-last-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
    .op-item:last-child { border-bottom: none; }
    .operates-title { font-size: 1.5rem; }
    .score-item { grid-template-columns: 80px 1fr 34px; }
    .regina-control { padding-left: 1.25rem; }
}

@media (max-width: 480px) {
    .regina-main-title { font-size: 2.25rem; }
    .regina-final-line { font-size: 0.9rem; letter-spacing: 0.05em; }
    .regina-industry-block { padding: 1.5rem; }
}

/* ── Sound Toggle Button ── */
.sound-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 15, 20, 0.78);
    border: 1px solid rgba(34, 229, 127, 0.4);
    color: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    padding: 0;
}

.sound-btn:hover {
    background: rgba(34, 229, 127, 0.15);
    border-color: var(--emerald);
    transform: scale(1.1);
}

/* ── Mobile Nav Dropdown ── */
.nav {
    position: relative;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid rgba(34, 229, 127, 0.35) !important;
    color: var(--emerald) !important;
    font-size: 1.25rem !important;
    cursor: pointer;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    line-height: 1;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(34, 229, 127, 0.08) !important;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .nav-links.mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(6, 10, 15, 0.97);
        border-bottom: 1px solid rgba(34, 229, 127, 0.13);
        flex-direction: column;
        padding: 0.5rem 1.5rem 1rem;
        gap: 0;
        backdrop-filter: blur(24px);
        display: none;
    }

    .nav-links.mobile-menu.mobile-open {
        display: flex !important;
    }

    .nav-links.mobile-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.mobile-menu li:last-child {
        border-bottom: none;
    }

    .nav-links.mobile-menu .nav-link {
        display: block;
        padding: 0.9rem 0;
        font-size: 1rem;
    }
}

/* ── Small screen grid fixes ── */
@media (max-width: 640px) {
    .dashboard-showcase {
        grid-template-columns: 1fr;
    }

    .price-display {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .stat {
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .ai-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.875rem 1.5rem;
    }

    .hero-container {
        padding: 6rem 1.25rem 2rem;
    }

    .section-container {
        padding: 0 1.25rem;
    }
}

/* ═══════════════════════════════════════
   Search Has Changed — Problem Section
   ═══════════════════════════════════════ */

.search-changed-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(6, 10, 15, 0.97) 100%);
}

/* ═══════════════════════════════════════
   The Offer — AI Visibility
   ═══════════════════════════════════════ */

.offer-section {
    position: relative;
    padding: 7rem 0;
    background: rgba(4, 8, 12, 1);
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 229, 127, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.offer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.offer-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 1.25rem;
}

.offer-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.offer-body {
    font-size: 1.05rem;
    color: var(--gray-text);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.offer-proof {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 2.5rem;
    background: rgba(6, 10, 15, 0.8);
    border: 1px solid rgba(34, 229, 127, 0.12);
    border-radius: 18px;
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.4);
}

.offer-proof-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.72);
    line-height: 1.55;
}

.offer-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(34, 229, 127, 0.1);
    border: 1px solid rgba(34, 229, 127, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    margin-top: 1px;
}

@media (max-width: 1024px) {
    .offer-title { font-size: 3rem; }
    .offer-inner { gap: 3.5rem; }
}

@media (max-width: 768px) {
    .offer-section { padding: 5rem 0; }
    .offer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .offer-title { font-size: 2.5rem; }
    .offer-proof { max-width: 480px; }
}

@media (max-width: 480px) {
    .offer-title { font-size: 2rem; }
    .offer-proof { padding: 1.75rem 1.5rem; }
}

/* ═══════════════════════════════════════
   Powered by Regina — Secondary Layer
   ═══════════════════════════════════════ */

.powered-regina-section {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(4, 8, 12, 1) 40%, rgba(6, 10, 15, 1) 100%);
    overflow: hidden;
}

.pr-bg-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(34, 229, 127, 0.18) 30%, rgba(34, 229, 127, 0.18) 70%, transparent 100%);
}

.powered-regina-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(34, 229, 127, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.pr-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Copy side */
.pr-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 1.25rem;
}

.pr-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.pr-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.pr-body-secondary {
    color: rgba(148, 163, 184, 0.65);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.pr-cta {
    display: inline-flex;
}

/* Card side */
.pr-card {
    display: flex;
    align-items: stretch;
}

.pr-card-inner {
    width: 100%;
    background: rgba(6, 10, 15, 0.8);
    border: 1px solid rgba(34, 229, 127, 0.14);
    border-radius: 16px;
    padding: 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(34, 229, 127, 0.06);
}

.pr-card-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--emerald);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pr-card-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 8px var(--emerald);
    animation: pulse 2s ease-in-out infinite;
}

.pr-signal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pr-signal-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.75);
    line-height: 1.4;
}

.pr-dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.pr-dot--on {
    background: var(--emerald);
    box-shadow: 0 0 6px rgba(34, 229, 127, 0.6);
}

.pr-dot--pulse {
    background: var(--emerald);
    box-shadow: 0 0 6px rgba(34, 229, 127, 0.6);
    animation: pulse 1.8s ease-in-out infinite;
}

.pr-card-foot {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(148, 163, 184, 0.45);
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
    .pr-title {
        font-size: 2.75rem;
    }
    .pr-inner {
        gap: 3.5rem;
    }
}

@media (max-width: 768px) {
    .powered-regina-section {
        padding: 5rem 0;
    }
    .pr-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .pr-title {
        font-size: 2.5rem;
    }
    .pr-card {
        max-width: 480px;
    }
}

@media (max-width: 480px) {
    .pr-title {
        font-size: 2rem;
    }
    .pr-card-inner {
        padding: 1.75rem 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════
   AI VISIBILITY DASHBOARD — Homepage Mockup
   ═══════════════════════════════════════════════════════ */

.aivd-section {
    padding: 6rem 0 7rem;
}

.aivd-intro {
    text-align: center;
    margin-bottom: 3.5rem;
}

.aivd-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.aivd-subtext {
    font-size: 1.1rem;
    color: var(--text-secondary, #8899a6);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Frame */
.aivd-frame {
    background: rgba(6, 10, 15, 0.92);
    border: 1px solid rgba(34, 229, 127, 0.18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(34, 229, 127, 0.06), 0 2px 40px rgba(0,0,0,0.6);
    max-width: 1100px;
    margin: 0 auto;
}

.aivd-frame-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.025);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.aivd-frame-dots {
    display: flex;
    gap: 6px;
}

.aivd-frame-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.aivd-frame-dots span:nth-child(1) { background: #ff5f57; }
.aivd-frame-dots span:nth-child(2) { background: #febc2e; }
.aivd-frame-dots span:nth-child(3) { background: #28c840; }

.aivd-frame-title {
    flex: 1;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    text-align: center;
}

.aivd-frame-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--emerald, #22E57F);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.aivd-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--emerald, #22E57F);
    animation: pulse 1.8s ease-in-out infinite;
}

/* Body — 3 columns */
.aivd-body {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.05);
}

.aivd-col {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: transparent;
}

/* Cards */
.aivd-card {
    background: rgba(8, 14, 20, 0.85);
    padding: 1.25rem 1.5rem;
}

.aivd-card-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* Score card */
.aivd-score-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 0.85rem;
}

.aivd-score-num {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--emerald, #22E57F);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    min-width: 3ch;
}

.aivd-score-denom {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
    margin-right: 0.5rem;
}

.aivd-score-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--emerald, #22E57F);
    background: rgba(34, 229, 127, 0.1);
    border: 1px solid rgba(34, 229, 127, 0.2);
    border-radius: 4px;
    padding: 3px 8px;
    white-space: nowrap;
}

.aivd-bar-track {
    height: 5px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}

.aivd-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--emerald, #22E57F), var(--cyan, #1CB7E8));
    border-radius: 3px;
    transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
}

/* Status card */
.aivd-status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.4rem;
}

.aivd-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.aivd-dot--green {
    background: var(--emerald, #22E57F);
    box-shadow: 0 0 8px rgba(34, 229, 127, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.aivd-status-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--emerald, #22E57F);
}

.aivd-status-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
}

/* Risk card */
.aivd-risk-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.85rem;
}

.aivd-risk-badge {
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    padding: 3px 10px;
    letter-spacing: 0.04em;
}

.aivd-risk--med {
    background: rgba(255, 188, 46, 0.12);
    color: #febc2e;
    border: 1px solid rgba(255, 188, 46, 0.25);
}

.aivd-risk-detail {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

.aivd-risk-bar-wrap {
    display: flex;
    gap: 3px;
    height: 5px;
}

.aivd-risk-seg {
    flex: 1;
    border-radius: 3px;
    opacity: 0.25;
}

.aivd-risk-seg--low { background: var(--emerald, #22E57F); }
.aivd-risk-seg--med { background: #febc2e; }
.aivd-risk-seg--high { background: #ff5f57; }
.aivd-risk-seg--active { opacity: 1; }

/* Graph card */
.aivd-card--graph {
    flex: 1;
}

.aivd-graph {
    width: 100%;
    height: 120px;
    display: block;
    margin-bottom: 0.5rem;
}

.aivd-graph-fill {
    opacity: 0.6;
}

.aivd-graph-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
}

.aivd-graph-dot {
    filter: drop-shadow(0 0 4px #22E57F);
}

.aivd-graph-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.05em;
}

/* Platform card */
.aivd-platforms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.aivd-plat {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.aivd-plat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.aivd-plat--active .aivd-plat-dot {
    background: var(--emerald, #22E57F);
    box-shadow: 0 0 5px rgba(34,229,127,0.5);
    animation: pulse 2s ease-in-out infinite;
}

.aivd-plat--improving .aivd-plat-dot {
    background: var(--cyan, #1CB7E8);
    box-shadow: 0 0 5px rgba(28,183,232,0.4);
}

.aivd-plat-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    flex: 1;
}

.aivd-plat-state {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.aivd-plat--active .aivd-plat-state { color: var(--emerald, #22E57F); }
.aivd-plat--improving .aivd-plat-state { color: var(--cyan, #1CB7E8); }

/* Opportunity Signal card */
.aivd-opp-pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--emerald, #22E57F);
    animation: pulse 1.5s ease-in-out infinite;
}

.aivd-opp-query {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-style: italic;
}

.aivd-opp-conf {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.aivd-conf-label {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.aivd-conf-val {
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    padding: 2px 8px;
}

.aivd-conf--high {
    background: rgba(34, 229, 127, 0.1);
    color: var(--emerald, #22E57F);
    border: 1px solid rgba(34, 229, 127, 0.2);
}

.aivd-opp-note {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
}

/* Next Move card */
.aivd-nm-icon {
    color: var(--cyan, #1CB7E8);
    margin-bottom: 0.6rem;
}

.aivd-nm-action {
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    line-height: 1.3;
    margin-bottom: 0.4rem;
}

.aivd-nm-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.4;
}

/* Bottom */
.aivd-bottom {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.aivd-microcopy {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.45);
    font-style: italic;
    letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 1024px) {
    .aivd-body {
        grid-template-columns: 1fr 1fr;
    }

    .aivd-col--right {
        grid-column: 1 / -1;
        flex-direction: row;
    }

    .aivd-col--right .aivd-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .aivd-body {
        grid-template-columns: 1fr;
    }

    .aivd-col--right {
        flex-direction: column;
    }

    .aivd-platforms-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .aivd-headline {
        font-size: 1.75rem;
    }

    .aivd-score-num {
        font-size: 2.6rem;
    }

    .aivd-frame-title {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════
   PRODUCT TRANSITION — Visibility → Regina handoff
   ═══════════════════════════════════════════════════════ */

.reg-transition-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(34,229,127,0.04) 0%, rgba(10,15,20,0) 60%);
    border-top: 1px solid rgba(34,229,127,0.1);
    border-bottom: 1px solid rgba(34,229,127,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reg-transition-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(34,229,127,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.reg-tr-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.reg-tr-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34,229,127,0.4), transparent);
}

.reg-tr-step1 {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.reg-tr-step2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════════════════
   REGINA — Product 2 Homepage Section
   ═══════════════════════════════════════════════════════ */

.rhp-section {
    padding: 6rem 0 5rem;
    position: relative;
}

.rhp-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at right top, rgba(28,183,232,0.04) 0%, transparent 65%);
    pointer-events: none;
}

.rhp-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.rhp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan, #1CB7E8);
    border: 1px solid rgba(28,183,232,0.25);
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 1.25rem;
    background: rgba(28,183,232,0.06);
}

.rhp-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan, #1CB7E8);
    animation: pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

.rhp-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    line-height: 1.05;
}

.rhp-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.rhp-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.rhp-card {
    background: rgba(6,10,15,0.8);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 2rem 2rem 1.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.rhp-card:hover {
    border-color: rgba(28,183,232,0.18);
    box-shadow: 0 0 30px rgba(28,183,232,0.05);
}

.rhp-card--featured {
    border-color: rgba(28,183,232,0.18);
    background: rgba(6,10,20,0.9);
    position: relative;
    overflow: hidden;
}

.rhp-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(ellipse at top right, rgba(28,183,232,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.rhp-card-num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan, #1CB7E8);
    opacity: 0.7;
    margin-bottom: 0.85rem;
}

.rhp-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.25;
}

.rhp-card-body {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}

.rhp-cta {
    text-align: center;
}

/* ═══════════════════════════════════════════════════════
   SYSTEM FLOW — Visibility → Data → Regina → Revenue
   ═══════════════════════════════════════════════════════ */

.flow-section {
    padding: 5rem 0 6.5rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.flow-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.flow-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.85rem;
}

.flow-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.flow-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 0;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    flex-shrink: 0;
    min-width: 110px;
}

.flow-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.flow-step--vis .flow-step-icon {
    background: rgba(34,229,127,0.1);
    border: 1px solid rgba(34,229,127,0.2);
    color: var(--emerald, #22E57F);
}

.flow-step--regina .flow-step-icon {
    background: rgba(28,183,232,0.1);
    border: 1px solid rgba(28,183,232,0.2);
    color: var(--cyan, #1CB7E8);
}

.flow-step-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.flow-step--vis .flow-step-label { color: var(--emerald, #22E57F); }
.flow-step--regina .flow-step-label { color: var(--cyan, #1CB7E8); }

.flow-step-desc {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    max-width: 90px;
    line-height: 1.45;
}

.flow-connector {
    flex-shrink: 0;
    padding: 0 4px;
    margin-bottom: 1.5rem;
}

.flow-connector--vis { color: var(--emerald, #22E57F); opacity: 0.5; }
.flow-connector--switch { color: rgba(80,210,160,0.4); }
.flow-connector--regina { color: var(--cyan, #1CB7E8); opacity: 0.5; }

.flow-loop-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.25);
    font-style: italic;
    letter-spacing: 0.03em;
}

/* Responsive */
@media (max-width: 1024px) {
    .rhp-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-track {
        gap: 0;
    }

    .flow-step {
        padding: 1rem 0.75rem;
        min-width: 90px;
    }
}

@media (max-width: 768px) {
    .reg-tr-step2 {
        font-size: 1.75rem;
    }

    .rhp-cards {
        grid-template-columns: 1fr;
    }

    .flow-track {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .flow-connector {
        transform: rotate(90deg);
        margin-bottom: 0;
    }

    .flow-step {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .reg-transition-section {
        padding: 3.5rem 0;
    }

    .rhp-section {
        padding: 4rem 0 3rem;
    }

    .rhp-card {
        padding: 1.5rem;
    }

    .flow-section {
        padding: 3.5rem 0 4rem;
    }
}

/* ── CTA Strips ──────────────────────────────────────────────────────────── */
.cta-strip {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,200,130,0.04);
}

.cta-strip--dark {
    background: rgba(0,0,0,0.3);
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-strip-inner--stack {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-strip-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.cta-strip-headline {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.cta-strip-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0 0 1.5rem;
    max-width: 520px;
}

.cta-strip-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── Sticky mobile CTA bar ───────────────────────────────────────────────── */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 12px 16px;
    background: rgba(8,11,15,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta--visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}

.sticky-cta-btn:active {
    opacity: 0.8;
}

.sticky-cta-call {
    background: var(--primary);
    color: #000;
}

.sticky-cta-audit {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
    }

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-strip-text {
        font-size: 1rem;
    }

    /* Add padding so content isn't hidden behind sticky bar */
    body {
        padding-bottom: 72px;
    }
}

@media (min-width: 769px) {
    .sticky-cta {
        display: none !important;
    }
}

/* ── Industry Selector ── */
.industry-section {
    padding: 40px 0 20px;
    text-align: center;
}
.industry-label {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-text);
    margin-bottom: 20px;
}
.industry-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}
.industry-chip {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: var(--muted-text);
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}
.industry-chip:hover,
.industry-chip--active {
    border-color: var(--emerald);
    color: var(--emerald);
    background: rgba(34,229,127,0.08);
}
.industry-message {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.industry-msg-text {
    font-size: 1rem;
    color: var(--light-text);
    max-width: 600px;
    line-height: 1.6;
    transition: opacity 0.2s ease;
}

/* ── Before / After ── */
.before-after-section {
    padding: 80px 0;
}
.section-sub {
    color: var(--muted-text);
    font-size: 1rem;
    margin-top: 12px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
}
.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}
.ba-card {
    border-radius: 16px;
    padding: 28px;
    position: relative;
}
.ba-card--before {
    border: 1px solid rgba(239,68,68,0.25);
    background: rgba(239,68,68,0.04);
}
.ba-card--after {
    border: 1px solid rgba(34,229,127,0.25);
    background: rgba(34,229,127,0.04);
}
.ba-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.ba-label--before { color: #ef4444; }
.ba-label--after  { color: var(--emerald); }
.ba-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.ba-dot--red   { background: #ef4444; box-shadow: 0 0 6px #ef4444; }
.ba-dot--green { background: var(--emerald); box-shadow: 0 0 6px var(--emerald); }
.ba-chat-query {
    font-size: 0.82rem;
    color: var(--muted-text);
    font-style: italic;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ba-chat-query::before { content: '💬  '; }
.ba-chat-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-text);
    margin-bottom: 10px;
}
.ba-response-text {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 16px;
}
.ba-response--bad  { color: rgba(248,250,252,0.55); }
.ba-response--good { color: rgba(248,250,252,0.85); }
.ba-response--good strong { color: var(--emerald); }
.ba-verdict {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
}
.ba-verdict--bad  { background: rgba(239,68,68,0.1);  color: #ef4444; }
.ba-verdict--good { background: rgba(34,229,127,0.1); color: var(--emerald); }
.ba-footnote {
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted-text);
    margin-top: 24px;
    font-style: italic;
}

/* ── Case Study ── */
.case-study-section {
    padding: 80px 0;
}
.cs-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--emerald);
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}
.cs-card {
    position: relative;
    border: 1px solid rgba(34,229,127,0.2);
    border-radius: 20px;
    padding: 48px;
    margin-top: 48px;
    overflow: hidden;
}
.cs-card-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(34,229,127,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cs-industry-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-text);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    padding: 4px 14px;
    margin-bottom: 24px;
}
.cs-quote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 20px;
    border-left: 3px solid var(--emerald);
    padding-left: 20px;
}
.cs-author-name {
    font-weight: 700;
    color: var(--light-text);
    font-size: 0.95rem;
}
.cs-author-company {
    color: var(--muted-text);
    font-size: 0.85rem;
    margin-top: 2px;
}
.cs-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.cs-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--emerald);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}
.cs-stat-label {
    font-size: 0.8rem;
    color: var(--muted-text);
    line-height: 1.4;
}

/* ── Objections ── */
.objections-section {
    padding: 80px 0;
}
.objections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
}
.obj-card {
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 28px;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.2s ease;
}
.obj-card:hover {
    border-color: rgba(34,229,127,0.2);
}
.obj-q {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 12px;
    line-height: 1.4;
}
.obj-q::before {
    content: 'Q: ';
    color: var(--emerald);
}
.obj-a {
    font-size: 0.88rem;
    color: var(--muted-text);
    line-height: 1.65;
}

/* ── Founder ── */
.founder-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.founder-inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 56px;
    align-items: center;
}
.founder-photo-wrap {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
}
.founder-photo-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(34,229,127,0.06);
    border: 2px solid rgba(34,229,127,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.founder-photo-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(34,229,127,0.12);
    pointer-events: none;
}
.founder-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald);
    font-weight: 600;
    margin-bottom: 14px;
}
.founder-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1.45;
    margin-bottom: 16px;
}
.founder-bio {
    font-size: 0.92rem;
    color: var(--muted-text);
    line-height: 1.7;
    margin-bottom: 20px;
}
.founder-detail {
    display: flex;
    gap: 24px;
    font-size: 0.85rem;
    color: var(--muted-text);
}
.founder-detail a {
    color: var(--emerald);
    text-decoration: none;
}
.founder-detail a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .ba-grid { grid-template-columns: 1fr; }
    .objections-grid { grid-template-columns: 1fr; }
    .cs-numbers { grid-template-columns: repeat(3,1fr); gap: 16px; }
    .cs-stat-num { font-size: 1.5rem; }
    .cs-card { padding: 28px; }
    .founder-inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
    .founder-photo-wrap { margin: 0 auto; }
    .founder-detail { justify-content: center; }
}

/* ── Trust Bar ── */
.trust-bar-section {
    padding: 36px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar-label {
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-text);
    margin-bottom: 20px;
}
.trust-bar-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}
.trust-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    opacity: 0.5;
    transition: opacity 0.2s;
    cursor: default;
}
.trust-logo-item:hover { opacity: 0.85; }
.trust-logo-item span:last-child {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    color: var(--muted-text);
    text-transform: uppercase;
}
.trust-logo-item svg { color: var(--muted-text); }
.trust-text-logo {
    font-size: 1.1rem;
    font-weight: 800;
    font-style: italic;
    color: var(--muted-text);
    font-family: Georgia, serif;
    letter-spacing: -0.02em;
}

/* ── Process Strip (What Happens When You Call) ── */
.process-strip-section {
    padding: 64px 0;
    background: rgba(34,229,127,0.03);
    border-top: 1px solid rgba(34,229,127,0.08);
    border-bottom: 1px solid rgba(34,229,127,0.08);
}
.process-strip-label {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald);
    font-weight: 600;
    margin-bottom: 40px;
}
.process-strip-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}
.process-strip-step {
    flex: 1;
    max-width: 260px;
    text-align: center;
    padding: 0 20px;
}
.pss-num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--emerald);
    margin-bottom: 10px;
}
.pss-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.pss-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 8px;
}
.pss-desc {
    font-size: 0.85rem;
    color: var(--muted-text);
    line-height: 1.6;
}
.process-strip-arrow {
    font-size: 1.5rem;
    color: var(--emerald);
    opacity: 0.4;
    padding-top: 60px;
    flex-shrink: 0;
}
.process-strip-cta {
    text-align: center;
}
.process-strip-note {
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--muted-text);
}

/* ── Comparison Table ── */
.comparison-section {
    padding: 80px 0;
}
.comparison-table-wrap {
    overflow-x: auto;
    margin-top: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.07);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px;
}
.comparison-table thead tr {
    background: rgba(255,255,255,0.03);
}
.comparison-table th {
    padding: 16px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.comp-feature-col {
    text-align: left !important;
    color: var(--muted-text);
    width: 40%;
}
.comp-col--other { color: var(--muted-text); }
.comp-col--ee {
    color: var(--emerald);
    background: rgba(34,229,127,0.05);
    border-left: 1px solid rgba(34,229,127,0.15);
    border-right: 1px solid rgba(34,229,127,0.15);
}
.comparison-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.15s;
}
.comparison-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}
.comparison-table tbody tr:last-child { border-bottom: none; }
.comp-feature {
    padding: 14px 20px;
    font-size: 0.88rem;
    color: var(--light-text);
    text-align: left;
}
.comp-cell {
    text-align: center;
    padding: 14px 20px;
    font-size: 1.1rem;
}
.comp-cell--ee {
    background: rgba(34,229,127,0.04);
    border-left: 1px solid rgba(34,229,127,0.1);
    border-right: 1px solid rgba(34,229,127,0.1);
}
.comp-check { color: #22c55e; font-weight: 700; }
.comp-check--ee { color: var(--emerald); font-size: 1.3rem; }
.comp-x { color: #ef4444; }
.comp-partial { color: #f59e0b; font-size: 1.1rem; }
.comparison-cta {
    text-align: center;
    margin-top: 36px;
}

/* ── Payment Trust ── */
.payment-trust-section {
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.payment-trust-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-text);
    margin-bottom: 20px;
}
.payment-cards-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.pay-card {
    border-radius: 6px;
    overflow: hidden;
    opacity: 0.75;
    transition: opacity 0.2s, transform 0.2s;
    cursor: default;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.pay-card:hover { opacity: 1; transform: translateY(-1px); }
.security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 4px;
}
.sec-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--muted-text);
}
.sec-badge svg { color: var(--emerald); flex-shrink: 0; }

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 999;
    background: #25D366;
    color: white;
    border-radius: 999px;
    padding: 12px 18px 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-label { white-space: nowrap; }

@media (max-width: 768px) {
    .whatsapp-float { bottom: 80px; right: 12px; padding: 11px 14px 11px 12px; }
    .whatsapp-label { display: none; }
    .process-strip-grid { flex-direction: column; align-items: center; gap: 24px; }
    .process-strip-arrow { padding-top: 0; transform: rotate(90deg); }
    .process-strip-step { max-width: 100%; }
    .comparison-table-wrap { border-radius: 10px; }
    .comp-feature { font-size: 0.8rem; padding: 12px 12px; }
    .comp-cell { padding: 12px 10px; }
    .trust-bar-logos { gap: 18px; }
    .payment-cards-row { gap: 8px; }
    .security-badges { gap: 12px; }
    .sec-badge { font-size: 0.7rem; }
}

/* ── Testimonials Carousel ── */
.reviews-stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 12px 0 0;
}
.reviews-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.reviews-count { font-size: 0.82rem; color: var(--muted-text); }

.testimonials-carousel {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}
.testimonials-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: rgba(34,229,127,0.2); }
.tcard-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; }
.tcard-quote {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(248,250,252,0.8);
    flex: 1;
    font-style: italic;
}
.tcard-quote::before { content: '"'; }
.tcard-quote::after  { content: '"'; }
.tcard-name { font-weight: 700; font-size: 0.9rem; color: var(--light-text); }
.tcard-company { font-size: 0.78rem; color: var(--muted-text); margin-top: 2px; }

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}
.tcarousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: var(--light-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.tcarousel-btn:hover {
    border-color: var(--emerald);
    color: var(--emerald);
    background: rgba(34,229,127,0.08);
}
.tcarousel-dots { display: flex; gap: 6px; align-items: center; }
.tcarousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.2s;
}
.tcarousel-dot--active {
    background: var(--emerald);
    width: 18px;
    border-radius: 3px;
}
