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

:root {
    /* Primary green – used for logo, CTAs, nav accent, key borders; header/infinity keep spectrum */
    --primary-color: #00ff88;
    --primary-dark: #00cc6a;
    --primary-light: #33ff99;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #111118;
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --border-color: #1f1f24;
    --gradient-1: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    --gradient-2: linear-gradient(135deg, #00cc6a 0%, #00ff88 100%);
    --gradient-3: linear-gradient(135deg, #00ff88 0%, #33ff99 100%);
    /* Spectrum only for header ring & infinity graphic */
    --gradient-spectrum: linear-gradient(90deg, #06b6d4, #8b5cf6, #ec4899, #f59e0b, #3b82f6, #34d399);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 15px;
    letter-spacing: -0.01em;
}

/* Mobile-friendly: images and media */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

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

/* Mobile: base container padding */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
}
@media (max-width: 480px) {
    .container { padding: 0 12px; }
}

/* Navigation - Hyros-style graphic header (dark) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

/* Gradient accent line under nav – primary green */
.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    opacity: 0.95;
}

/* Optional: subtle left-edge accent */
.navbar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
    opacity: 0.8;
}

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

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

.logo:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.nav-hidden {
    display: none !important;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s;
    letter-spacing: -0.01em;
}

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

.cta-button {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    color: var(--text-primary) !important;
}

.cta-button:hover {
    background: var(--bg-card);
    border-color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-selector-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
    font-weight: 500;
}

.language-selector-btn:hover {
    color: var(--text-primary);
    border-color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
}

.language-selector-btn svg:first-child {
    width: 18px;
    height: 18px;
}

.current-language {
    font-weight: 600;
    min-width: 32px;
    text-align: center;
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
}

.language-selector.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid var(--border-color);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(0, 255, 136, 0.1);
    color: var(--text-primary);
}

.language-option.active {
    background: rgba(0, 255, 136, 0.15);
    color: var(--primary-color);
}

.language-flag {
    font-size: 1.25rem;
    line-height: 1;
}

.language-name {
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Hero Clients Logos */
.hero-clients {
    margin-top: 4rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    border-top: 1px solid var(--border-color);
    overflow: visible;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: transparent;
}

.hero-clients-title {
    text-align: center;
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
    font-weight: 750;
    letter-spacing: -0.015em;
    color: #fff;
    margin: 0 auto 2rem;
    max-width: calc(100% - 2rem);
    width: max-content;
    padding: 0 1rem;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
    opacity: 1;
}

/* Hero logos marquee: οριζόντια σειρά που κινείται αριστερά */
.hero-clients-logos {
    overflow: hidden;
    padding: 1rem 0;
    width: 100%;
    margin: 0 auto;
    background: transparent;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.hero-clients-logos-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content;
    animation: hero-logos-marquee 40s linear infinite;
    background: transparent;
}

.hero-clients-logos-track:hover {
    animation-play-state: paused;
}

.hero-clients-logos-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    flex-shrink: 0;
    align-items: center;
    gap: 2.5rem;
    padding: 0 2rem;
    background: transparent;
}

.hero-clients-logos-row .hero-client-logo {
    display: flex !important;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

@keyframes hero-logos-marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.hero-clients-logos::-webkit-scrollbar {
    display: none;
}

.hero-client-logo {
    opacity: 1;
    transition: transform 0.3s ease;
    height: 56px;
    line-height: 56px;
    background: transparent;
}

.hero-clients-logos .hero-client-logo:hover {
    transform: scale(1.1);
}

.client-logo-img {
    max-height: 56px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: invert(1) brightness(2) contrast(1.5);
    opacity: 1;
    transition: filter 0.3s ease;
    background: transparent;
}

.client-logo-img:hover {
    filter: invert(1) brightness(2.2) contrast(1.7);
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.ai-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--primary-light);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.black-box-graphic-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.black-box-graphic {
    position: relative;
    animation: floatBox3D 6s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.1s ease-out;
    z-index: 2;
}

.black-box-svg {
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.5));
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes floatBox3D {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
    }
    25% { 
        transform: translateY(-10px) rotateX(5deg) rotateY(-5deg) scale(1.05);
    }
    50% { 
        transform: translateY(-15px) rotateX(0deg) rotateY(0deg) scale(1.08);
    }
    75% { 
        transform: translateY(-10px) rotateX(-5deg) rotateY(5deg) scale(1.05);
    }
}

.box-main {
    animation: boxPulse 3s ease-in-out infinite;
}

@keyframes boxPulse {
    0%, 100% { 
        opacity: 1;
        filter: brightness(1);
    }
    50% { 
        opacity: 0.9;
        filter: brightness(1.2);
    }
}

.box-inner {
    animation: innerGlow 2s ease-in-out infinite alternate;
}

@keyframes innerGlow {
    0% { 
        opacity: 0.3;
    }
    100% { 
        opacity: 0.7;
    }
}

.corner-dot {
    animation: cornerPulse 2s ease-in-out infinite;
}

.corner-1 {
    animation-delay: 0s;
}

.corner-2 {
    animation-delay: 0.5s;
}

.corner-3 {
    animation-delay: 1s;
}

.corner-4 {
    animation-delay: 1.5s;
}

@keyframes cornerPulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.data-line {
    animation: dataFlow 3s ease-in-out infinite;
    stroke-dasharray: 50;
    stroke-dashoffset: 0;
}

.line-1 {
    animation-delay: 0s;
}

.line-2 {
    animation-delay: 0.5s;
}

.line-3 {
    animation-delay: 1s;
}

@keyframes dataFlow {
    0% { 
        stroke-dashoffset: 0;
        opacity: 0.6;
    }
    50% { 
        stroke-dashoffset: -50;
        opacity: 1;
    }
    100% { 
        stroke-dashoffset: -100;
        opacity: 0.6;
    }
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    flex: 1;
    min-width: 300px;
}

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

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-cta .btn {
    min-height: 52px;
    padding: 1rem 1.85rem;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.hero-cta-input-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    max-width: 600px;
    width: 100%;
    flex-wrap: wrap;
}

.hero-website-input {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-website-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.hero-website-input::placeholder {
    color: var(--text-secondary);
}

/* Website Analysis Modal */
.website-analysis-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: fadeIn 0.3s ease-in;
    align-items: center;
    justify-content: center;
}

.website-analysis-modal.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.website-analysis-modal-content {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d0d0d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 80px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 100px rgba(255, 255, 255, 0.1),
                inset 0 0 50px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    width: 90%;
    animation: slideUp 0.5s ease-out;
}

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

.analysis-loading-state {
    text-align: center;
}

.analysis-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.analysis-loading-state h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.analysis-loading-state p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.analysis-results-state {
    text-align: left;
}

.analysis-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.analysis-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.analysis-results-state h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    text-align: center;
}

.analysis-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item {
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span,
.info-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.info-item p {
    margin: 0.5rem 0 0 0;
}

.analysis-cta-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.analysis-cta-btn:hover {
    background: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

@media (max-width: 768px) {
    .website-analysis-modal-content {
        padding: 40px 30px;
        max-width: 95%;
    }
    
    .analysis-results-state h3 {
        font-size: 1.25rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--gradient-1);
    color: #000000;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

.btn-large {
    padding: 1.125rem 2.25rem;
    min-height: 54px;
    box-sizing: border-box;
    font-size: 1rem;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.375rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    font-weight: 400;
}


/* Section Styles */
section {
    position: relative;
    padding: 60px 0;
}

.features {
    padding-top: 100px;
}

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

.section-header {
    text-align: left;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* Πώς λειτουργεί, Οι διαφημίσεις σου με ΑΙ, Η πλατφόρμα βελτιστοποιεί 24/7 – τίτλοι άσπροι */
.how-it-works .section-title,
.automation-ads-section .section-title,
.automation-section .section-title,
.monthly-reports-section .section-title,
.loyalty-campaigns-section .section-title {
    color: #ffffff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ffffff;
    background-clip: unset;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    max-width: 900px;
    margin: 0;
    text-align: left;
}

.subtitle-line {
    display: block;
}

.features .section-subtitle,
.features .features-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.65;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 1.15rem;
    color: rgba(226, 232, 240, 0.82);
}

/* Features title */
.features .features-title {
    color: #ffffff;
    text-align: center;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ffffff;
    background-clip: unset;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.15;
}

.features-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 880px;
    margin: 3.75rem auto 0;
    padding: 0 1rem;
    align-items: stretch;
}
.features-box {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.features-op-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: fit-content;
    gap: 0.25rem;
    margin: 0 0 0.65rem;
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.2;
    color: #e2e8f0;
    background: rgba(148, 163, 184, 0.14);
    border: 1px solid rgba(148, 163, 184, 0.35);
}
.features-box-ads .features-op-badge {
    color: #a5f3fc;
    background: rgba(34, 211, 238, 0.12);
    border-color: rgba(34, 211, 238, 0.4);
}
.features-box-loyalty .features-op-badge {
    color: #ddd6fe;
    background: rgba(167, 139, 250, 0.14);
    border-color: rgba(167, 139, 250, 0.42);
}
.features-box-title {
    color: #ffffff;
    font-size: clamp(1.35rem, 2.8vw, 1.7rem);
    font-weight: 800;
    margin: 0 0 0.95rem;
    text-align: left;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.features-box-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}
.features-box-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    line-height: 1.55;
}
.features-box-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1em;
}

.features-cta-box {
    margin-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 12px 32px rgba(0, 0, 0, 0.28);
}
.features-box-ads .features-cta-box {
    border-color: rgba(34, 211, 238, 0.28);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 0 0 1px rgba(34, 211, 238, 0.08),
        0 14px 36px rgba(0, 0, 0, 0.3);
}
.features-box-loyalty .features-cta-box {
    border-color: rgba(167, 139, 250, 0.3);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 0 0 1px rgba(167, 139, 250, 0.08),
        0 14px 36px rgba(0, 0, 0, 0.3);
}

.features-cta-text {
    margin: 0;
    color: rgba(226, 232, 240, 0.9);
    font-size: 0.98rem;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 640px) {
    .features-boxes { grid-template-columns: 1fr; }
}

.slogan-line {
    display: block;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    text-align: left;
}

.slogan-line-primary {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.slogan-line-secondary {
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

/* Features Section */
.features {
    background: var(--bg-darker);
    padding-top: 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.25);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 255, 136, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

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

/* Infinity + Boxes centered block */
.features-infinity-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.features-infinity-block .infinity-graphic-container,
.features-infinity-block .features-boxes {
    width: 100%;
    position: relative;
    z-index: 1;
}

.features-infinity-block .features-boxes {
    margin-bottom: 0.5rem;
}

/* Ambient twinkle + gentle drift stars around features boxes */
.features-stars {
    position: absolute;
    inset: -3.5rem -5rem -3rem -4.5rem;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.features-stars .features-star {
    position: absolute;
    left: var(--sx);
    top: var(--sy);
    width: calc(var(--ss) * 1.75);
    height: calc(var(--ss) * 1.75);
    background: rgba(255, 255, 255, 0.95);
    /* 4-point sparkle (not a circle) */
    clip-path: polygon(
        50% 0%,
        62% 38%,
        100% 50%,
        62% 62%,
        50% 100%,
        38% 62%,
        0% 50%,
        38% 38%
    );
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.45));
    opacity: 0.25;
    --smx: 4px;
    --smy: -5px;
    --sdrift: 15s;
    --sdd: var(--sd, 0s);
    animation:
        features-star-twinkle var(--sdur, 6s) ease-in-out var(--sd, 0s) infinite,
        features-star-drift var(--sdrift, 15s) ease-in-out var(--sdd, 0s) infinite;
}

.features-stars .features-star:nth-child(3n) {
    --smx: -5px;
    --smy: 4px;
    --sdrift: 18s;
}

.features-stars .features-star:nth-child(3n + 1) {
    --smx: 3px;
    --smy: 6px;
    --sdrift: 12s;
}

.features-stars .features-star:nth-child(3n + 2) {
    --smx: -4px;
    --smy: -4px;
    --sdrift: 16s;
}

.features-stars .features-star:nth-child(4n) {
    --smx: 6px;
    --smy: -3px;
    --sdrift: 20s;
}

.features-stars .features-star:nth-child(5n) {
    --smx: -3px;
    --smy: 5px;
    --sdrift: 13s;
    /* Classic 5-point star for variety */
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%
    );
}

.features-stars .features-star:nth-child(7n) {
    --smx: 7px;
    --smy: 2px;
    --sdrift: 22s;
}

.features-stars .features-star:nth-child(11n) {
    --smx: -6px;
    --smy: -6px;
    --sdrift: 10s;
}

.features-stars .features-star:nth-child(13n) {
    --smx: 5px;
    --smy: -7px;
    --sdrift: 17s;
}

@keyframes features-star-twinkle {
    0%, 100% { opacity: 0.12; }
    50% { opacity: 0.75; }
}

@keyframes features-star-drift {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(var(--smx, 4px), var(--smy, -5px)); }
    66% { transform: translate(calc(var(--smx, 4px) * -0.85), calc(var(--smy, -5px) * 0.7)); }
}

@media (prefers-reduced-motion: reduce) {
    .features-stars .features-star {
        animation: none;
        opacity: 0.35;
        transform: none;
    }
}

/* Infinity Graphic (below feature boxes) */
.infinity-graphic-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.25rem 0 0 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.infinity-graphic-container.infinity-container {
    max-width: 1100px;
    margin: 0.25rem auto 0;
    padding: 0 24px;
}

.infinity-svg {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Infinity from index2 – loop labels (dark theme) */
.features .infinity-loop-label {
    fill: var(--text-primary);
    font-family: inherit;
    font-size: 28px;
    font-weight: 700;
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
}

/* Λογότυπα καθαρά, χωρίς blur – sharp rendering (legacy infinity) */
.infinity-svg .first-loop-content,
.infinity-svg .second-loop-content {
    shape-rendering: geometricPrecision;
}

.infinity-svg .first-loop-content path,
.infinity-svg .first-loop-content circle,
.infinity-svg .first-loop-content rect,
.infinity-svg .second-loop-content path,
.infinity-svg .second-loop-content circle,
.infinity-svg .second-loop-content rect {
    shape-rendering: geometricPrecision;
}

.infinity-svg .animated-particles circle,
.infinity-svg .small-particles circle {
    animation-timing-function: linear;
}

/* How It Works Section */
.how-it-works {
    background: var(--bg-dark);
    padding: 4.5rem 0 5.5rem;
    position: relative;
    /* visible so fork ledge labels (Marketing / Loyalty) are never clipped */
    overflow: visible;
}

.how-it-works .section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.how-it-works .section-header .section-title {
    margin-bottom: 0.5rem;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.15;
}

.how-it-works .section-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 auto;
    text-align: center;
    max-width: 480px;
}

.how-it-works-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.how-it-works-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.how-it-works-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.5) 0%, rgba(71, 85, 105, 0.4) 100%);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.how-it-works-orb.orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.4) 0%, rgba(100, 116, 139, 0.35) 100%);
    bottom: -100px;
    right: -100px;
    animation-delay: 7s;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: visible;
    padding-left: 0;
}

/* —— How-it-works tree: βήμα 1 κέντρο → Y fork → Marketing | Loyalty —— */
.how-it-works .steps {
    /* Whole-tree scale (~+40%). Prefer vars over transform:scale so orb
       getBoundingClientRect → local px math in script.js stays correct. */
    --hiw-scale: 1.4;
    /* Opaque only: alpha strokes darken at stem/bow/spine overlaps */
    --hiw-line: #f1f5f9;
    --hiw-line-soft: var(--hiw-line);
    /* Thick enough that light orbs sit fully on stem / bow / spines */
    --hiw-stroke: calc(15px * var(--hiw-scale));
    /* Slightly larger than stroke so opaque badges fully mask round linecaps */
    --hiw-node-01: calc(2.95rem * var(--hiw-scale));
    /* Same diameter as step 01 so 2/3 badges match */
    --hiw-node: var(--hiw-node-01);
    /* Extra-wide center gap so Marketing / Loyalty sit cleanly on the ledge */
    --hiw-gap: calc(13.5rem * var(--hiw-scale));
    /* Shoulder arc radius — large so left/right turns read as soft curves, not Π corners */
    --hiw-radius: calc(58px * var(--hiw-scale));
    /* Stem→ledge fillet radius — kills sharp 90° T inner corners at the fork */
    --hiw-fillet: calc(22px * var(--hiw-scale));
    --hiw-join-h: calc(5.85rem * var(--hiw-scale));
    /* Room above bow so labels can sit on the horizontal ledge; taller center stem */
    --hiw-fork-y: calc(2.45rem * var(--hiw-scale));
    /* Pad gutters hold circular badges; spines centered in each gutter */
    --hiw-pad-m: calc(2.85rem * var(--hiw-scale));
    --hiw-pad-l: calc(2.85rem * var(--hiw-scale));
    /* SVG bow legs extend this far into the tracks (spines stay below arcs) */
    --hiw-bow-leg: calc(1.75rem * var(--hiw-scale));
    --hiw-spine-m: calc((var(--hiw-pad-m) - var(--hiw-stroke)) / 2);
    --hiw-spine-l: calc((var(--hiw-pad-l) - var(--hiw-stroke)) / 2);
    /* Bow horizontal edges (shared by bow + ledge label anchors) */
    --hiw-bow-left: calc(50% - (var(--hiw-gap) / 2) - var(--hiw-spine-m) - var(--hiw-stroke));
    --hiw-bow-right: calc(50% + (var(--hiw-gap) / 2) + var(--hiw-spine-l) + var(--hiw-stroke));
    --hiw-bow-width: calc(var(--hiw-gap) + var(--hiw-spine-m) + var(--hiw-spine-l) + (2 * var(--hiw-stroke)));
    max-width: calc(1520px * var(--hiw-scale));
    padding-left: calc(0.5rem * var(--hiw-scale));
    padding-right: calc(0.5rem * var(--hiw-scale));
    overflow: visible;
}

/* Circular step badges on stem / spines — fixed diameter, never oval.
   Opaque page-dark fill + high z-index so thick tree / SVG legs stay behind. */
.how-it-works .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
    width: var(--hiw-node);
    height: var(--hiw-node);
    min-width: var(--hiw-node);
    min-height: var(--hiw-node);
    max-width: var(--hiw-node);
    max-height: var(--hiw-node);
    aspect-ratio: 1;
    padding: 0;
    border-radius: 50%;
    border: calc(2px * var(--hiw-scale, 1)) solid rgba(148, 163, 184, 0.7);
    background: var(--bg-dark);
    background-color: var(--bg-dark);
    color: #e2e8f0;
    font-size: calc(0.95rem * var(--hiw-scale, 1));
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    font-feature-settings: "tnum";
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 5;
    isolation: isolate;
}

.how-it-works .steps-shared {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: calc(0.15rem * var(--hiw-scale, 1));
    /* Extra stem length from step 01 connect box down to the Marketing / Loyalty fork */
    padding-bottom: calc(3.65rem * var(--hiw-scale, 1));
    overflow: visible;
    z-index: 3;
}

/* Center stem from step 01 down to the tree join */
.how-it-works .steps-shared::before {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(
        0.2rem * var(--hiw-scale, 1)
        + var(--hiw-node-01) / 2
    );
    bottom: 0;
    width: var(--hiw-stroke);
    transform: translateX(-50%);
    background: var(--hiw-line);
    z-index: 0;
    pointer-events: none;
}

.how-it-works .steps-shared .steps-connector {
    display: none;
}

/* Step 01: circle on center stem, title to the right */
.how-it-works .steps-shared .step-item {
    display: block;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: calc(0.2rem * var(--hiw-scale, 1)) 0 calc(0.35rem * var(--hiw-scale, 1));
    text-align: left;
    border-bottom: none;
    z-index: 1;
}

.how-it-works .steps-shared .step-left {
    position: relative;
    display: block;
    width: 50%;
    margin-left: 50%;
    /* Gap from circle edge → title (~1.85rem scaled; was 0.85rem) */
    padding-left: calc(var(--hiw-node-01) / 2 + 1.85rem * var(--hiw-scale, 1));
    min-width: 0;
    text-align: left;
}

.how-it-works .steps-shared .step-number {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    flex-shrink: 0;
    width: var(--hiw-node-01);
    height: var(--hiw-node-01);
    min-width: var(--hiw-node-01);
    min-height: var(--hiw-node-01);
    max-width: var(--hiw-node-01);
    max-height: var(--hiw-node-01);
    aspect-ratio: 1;
    padding: 0;
    font-size: calc(0.95rem * var(--hiw-scale, 1));
    background: var(--bg-dark);
    background-color: var(--bg-dark);
    z-index: 5;
}

.how-it-works .steps-shared .step-left .step-content {
    margin-left: 0;
    text-align: left;
}

.how-it-works .steps-shared .step-title {
    text-align: left;
    margin-bottom: 0;
    font-size: clamp(calc(0.8rem * var(--hiw-scale, 1)), calc(1.3vw * var(--hiw-scale, 1)), calc(0.95rem * var(--hiw-scale, 1)));
    line-height: 1.22;
    max-width: 18ch;
}

/* Step 01: "1" on stem + Σύνδεση, with floating account bubbles around */
.how-it-works .steps-shared .step-item--connect {
    position: relative;
    z-index: 2;
    padding: calc(1.85rem * var(--hiw-scale, 1)) 0 calc(1.1rem * var(--hiw-scale, 1));
    overflow: visible;
}

.how-it-works .steps-shared .step-item--connect .step-left {
    overflow: visible;
}

.how-it-works .steps-shared .step-item--connect .step-number {
    top: 50%;
    transform: translate(-50%, -50%);
}

.how-it-works .steps-shared .step-item--connect .step-title {
    /* Match Marketing / Loyalty branch titles */
    font-size: clamp(calc(0.72rem * var(--hiw-scale, 1)), calc(1.1vw * var(--hiw-scale, 1)), calc(0.88rem * var(--hiw-scale, 1)));
    font-weight: 600;
    letter-spacing: 0.04em;
    max-width: none;
}

.how-it-works .hiw-connect-bubbles {
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 4;
}

.how-it-works .hiw-connect-bubble {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.38rem 0.7rem 0.38rem 0.42rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(8, 10, 16, 0.88);
    color: #f8fafc;
    font-size: clamp(0.62rem, calc(0.68rem * var(--hiw-scale, 1)), 0.78rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 8px 18px rgba(0, 0, 0, 0.35);
    animation: hiwConnectBubbleFloat 5.6s ease-in-out infinite;
    will-change: transform;
}

.how-it-works .hiw-connect-bubble-icon {
    flex-shrink: 0;
    width: 1.15rem;
    height: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}

.how-it-works .hiw-connect-bubble-icon svg {
    width: 0.72rem;
    height: 0.72rem;
    display: block;
}

.how-it-works .hiw-connect-bubble-icon--pos {
    background: rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.how-it-works .hiw-connect-bubble-label {
    line-height: 1.1;
}

.how-it-works .hiw-connect-bubble--fb {
    left: calc(-7.4rem * var(--hiw-scale, 1));
    top: calc(-2.85rem * var(--hiw-scale, 1));
    animation-duration: 5.8s;
    animation-delay: 0s;
}

.how-it-works .hiw-connect-bubble--google {
    left: calc(1.65rem * var(--hiw-scale, 1));
    top: calc(-3.15rem * var(--hiw-scale, 1));
    animation-duration: 6.4s;
    animation-delay: -1.4s;
}

.how-it-works .hiw-connect-bubble--pos {
    left: calc(-5.8rem * var(--hiw-scale, 1));
    top: calc(1.55rem * var(--hiw-scale, 1));
    animation-duration: 6.1s;
    animation-delay: -2.6s;
}

@keyframes hiwConnectBubbleFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    35% { transform: translate3d(0.28rem, -0.35rem, 0); }
    70% { transform: translate3d(-0.22rem, 0.28rem, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .how-it-works .hiw-connect-bubble {
        animation: none;
    }
}

/* Y connector: SVG stem + filleted bow arms (soft fork + tangent shoulders) */
.how-it-works .steps-tree-join {
    position: relative;
    height: var(--hiw-join-h);
    width: 100%;
    margin: 0;
    z-index: 2;
    overflow: visible;
}

.how-it-works .steps-tree-join::before,
.how-it-works .steps-tree-join::after {
    content: none;
    display: none;
}

/* Ro logo badge — lives in .steps-fork, centered in the Y gap (~step 2 height) */
.how-it-works .steps-tree-logo {
    --hiw-logo-size: calc(4.03rem * var(--hiw-scale, 1)); /* 3.1rem × 1.3 */
    position: absolute;
    left: 50%;
    /*
      Relative to .steps-fork top: track pad-top + first step pad-top + mid of step-2 row.
      Gap offset × 1.3 so the badge sits ~30% lower into the branch gap.
    */
    top: calc(
        (0.85rem * 1.3 * var(--hiw-scale, 1))
        + (1.15rem * 1.3 * var(--hiw-scale, 1))
        + (1.55rem * 1.3 * var(--hiw-scale, 1))
    );
    transform: translate(-50%, -50%);
    /* Span full fork so abspos is not auto-placed into a 1fr column */
    grid-column: 1 / -1;
    grid-row: 1;
    z-index: 1; /* under hiw-fx orbs (z-index 4) */
    box-sizing: border-box;
    width: var(--hiw-logo-size);
    height: var(--hiw-logo-size);
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--hiw-line);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    /* Soft luminous aura — elegant, not neon */
    box-shadow:
        0 0 0 1px rgba(241, 245, 249, 0.14),
        0 0 14px 4px rgba(241, 245, 249, 0.22),
        0 0 32px 10px rgba(241, 245, 249, 0.12),
        0 0 48px 18px rgba(241, 245, 249, 0.06);
    animation: hiw-logo-glow 5.5s ease-in-out infinite;
}

.how-it-works .steps-tree-logo::before {
    content: '';
    position: absolute;
    inset: -42%;
    border-radius: 50%;
    /* Slightly elliptical / off-center so gentle rotation reads as a drifting glow */
    background:
        radial-gradient(
            ellipse 72% 58% at 42% 38%,
            rgba(241, 245, 249, 0.28) 0%,
            rgba(241, 245, 249, 0.1) 38%,
            transparent 68%
        ),
        radial-gradient(
            circle,
            rgba(241, 245, 249, 0.14) 0%,
            transparent 70%
        );
    z-index: -1;
    pointer-events: none;
    animation: hiw-logo-aura 7s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes hiw-logo-glow {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(241, 245, 249, 0.14),
            0 0 14px 4px rgba(241, 245, 249, 0.22),
            0 0 32px 10px rgba(241, 245, 249, 0.12),
            0 0 48px 18px rgba(241, 245, 249, 0.06);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(241, 245, 249, 0.2),
            0 0 20px 6px rgba(241, 245, 249, 0.3),
            0 0 40px 14px rgba(241, 245, 249, 0.16),
            0 0 64px 22px rgba(241, 245, 249, 0.09);
    }
}

@keyframes hiw-logo-aura {
    0%, 100% {
        opacity: 0.75;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(180deg);
    }
}

.how-it-works .steps-tree-logo-img {
    display: block;
    width: 56%;
    height: 56%;
    max-width: none;
    object-fit: contain;
    border-radius: 0;
    /* roo.png has a baked-in black rectangle; lighten drops pure black against the dark page */
    mix-blend-mode: lighten;
}

.how-it-works .steps-tree-svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    /* Extend past join so bow legs bury into branch spines (matches layoutTreeSvg) */
    height: calc(100% + var(--hiw-bow-leg) + var(--hiw-stroke) * 0.65);
    overflow: visible;
    z-index: 0;
    pointer-events: none;
}

.how-it-works .steps-tree-path {
    stroke: var(--hiw-line);
    stroke-width: var(--hiw-stroke);
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Legacy hooks kept for JS feature-detect / mobile rules */
.how-it-works .steps-tree-stem,
.how-it-works .steps-tree-bow {
    display: none;
}

/* Branch names + subtitles sit above the flat bow ledge (σκαλί), centered on each flat segment.
   NEVER constrain these with max-width / ellipsis — "Marketing" must render in full. */
.how-it-works .steps-tree-join .steps-branch-ledge {
    position: absolute;
    /* Anchor to path centerline; lift clears half-stroke + air gap */
    top: var(--hiw-fork-y);
    right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.18rem;
    margin: 0;
    padding: 0;
    z-index: 3;
    /* Content-sized box: avoid abspos shrink-to-fit capping against a narrow ledge */
    width: max-content;
    min-width: max-content;
    max-width: none;
    pointer-events: auto;
    text-align: center;
    transform: translate(-50%, calc(-100% - var(--hiw-stroke) / 2 - 0.55rem * var(--hiw-scale, 1)));
}

/* Left half-arm mid (~25% of bow) — clear gap from center stem toward outer arc */
.how-it-works .steps-tree-join .steps-branch-ledge--marketing {
    left: calc(var(--hiw-bow-left) + var(--hiw-bow-width) * 0.25);
}

/* Right half-arm mid (~75% of bow) — clear gap from center stem toward outer arc */
.how-it-works .steps-tree-join .steps-branch-ledge--loyalty {
    left: calc(var(--hiw-bow-left) + var(--hiw-bow-width) * 0.75);
}

.how-it-works .steps-tree-join .steps-branch-title {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 0;
    padding: 0;
    font-size: clamp(calc(0.72rem * var(--hiw-scale, 1)), calc(1.1vw * var(--hiw-scale, 1)), calc(0.88rem * var(--hiw-scale, 1)));
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--hiw-line);
    line-height: 1.15;
    width: max-content;
    min-width: max-content;
    max-width: none;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    text-align: center;
    transform: none;
}

.how-it-works .steps-tree-join .steps-branch-title::after {
    content: none;
    display: none;
}

.how-it-works .steps-tree-join .steps-branch-subtitle {
    margin: 0;
    padding: 0;
    font-size: clamp(calc(0.52rem * var(--hiw-scale, 1)), calc(0.85vw * var(--hiw-scale, 1)), calc(0.68rem * var(--hiw-scale, 1)));
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #8b95a5;
    line-height: 1.2;
    width: max-content;
    min-width: max-content;
    max-width: none;
    white-space: nowrap;
    overflow: visible;
    text-align: center;
}

.how-it-works .steps-fork {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--hiw-gap);
    row-gap: calc(1.25rem * var(--hiw-scale, 1));
    position: relative;
    margin-top: 0;
    padding-top: 0;
    /* Above .steps-tree-join (z:2) so branch badges cover overflowing SVG bow legs */
    z-index: 3;
    overflow: visible;
}

.how-it-works .steps-fork::before,
.how-it-works .steps-fork::after {
    display: none;
}

.how-it-works .steps-branch {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: 0;
    overflow: visible;
}

.how-it-works .steps-branch--marketing {
    grid-column: 1;
    grid-row: 1;
}

.how-it-works .steps-branch--loyalty {
    grid-column: 2;
    grid-row: 1;
}

/* Stacked branch titles — kept in DOM for a11y/i18n; never shown (Y ledge labels used) */
.how-it-works .steps-branch-title--stacked,
.how-it-works .steps-branch-subtitle--stacked {
    display: none;
}

.how-it-works .steps-branch-track {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: calc(1.75rem * var(--hiw-scale, 1));
    /* Extra height + bottom pad so spines continue past step 3 before fading */
    min-height: calc(17.5rem * var(--hiw-scale, 1));
    padding-left: var(--hiw-pad-l);
    padding-top: calc(0.85rem * var(--hiw-scale, 1));
    padding-bottom: calc(3.6rem * var(--hiw-scale, 1));
}

/* Spine continues from SVG bow legs down through steps;
   stay solid past step 3, then fade out lower (Marketing + Loyalty only).
   Top stays below the shoulder arcs — only a short round-cap bury into SVG legs
   (tall overlap into the curve was causing rectangular shoulder steps). */
.how-it-works .steps-branch-track::before {
    content: '';
    position: absolute;
    left: var(--hiw-spine-l);
    top: calc(-1 * var(--hiw-stroke) * 0.85);
    bottom: 0;
    width: var(--hiw-stroke);
    background: var(--hiw-line-soft);
    border-top-left-radius: calc(var(--hiw-stroke) / 2);
    border-top-right-radius: calc(var(--hiw-stroke) / 2);
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 68%,
        rgba(0, 0, 0, 0.55) 82%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 68%,
        rgba(0, 0, 0, 0.55) 82%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

.how-it-works .steps-branch .step-item {
    display: block;
    position: relative;
    z-index: 1;
    padding: calc(1.15rem * var(--hiw-scale, 1)) 0;
    border-bottom: none;
}

.how-it-works .steps-branch .step-item:last-child {
    border-bottom: none;
}

.how-it-works .steps-branch .step-left {
    position: relative;
    display: block;
    gap: 0;
    min-width: 0;
    align-items: flex-start;
    padding-top: calc(0.25rem * var(--hiw-scale, 1));
    padding-bottom: calc(0.25rem * var(--hiw-scale, 1));
}

.how-it-works .steps-branch .step-left .step-content {
    margin-left: 0;
}

.how-it-works .steps-branch .step-content {
    gap: 0;
}

/* Breathing room between spine badges and titles (spines/orbs unchanged) */
.how-it-works .steps-branch--loyalty .step-content {
    padding-left: calc(1rem * var(--hiw-scale, 1));
}

.how-it-works .steps-branch--marketing .step-content {
    padding-right: calc(1rem * var(--hiw-scale, 1));
}

.how-it-works .steps-branch .step-title {
    font-size: clamp(calc(0.72rem * var(--hiw-scale, 1)), calc(1.05vw * var(--hiw-scale, 1)), calc(0.85rem * var(--hiw-scale, 1)));
    margin: 0;
    line-height: 1.2;
    max-width: 16ch;
}

/* Loyalty: circle centered on LEFT spine */
.how-it-works .steps-branch .step-number {
    position: absolute;
    top: 50%;
    left: calc(var(--hiw-spine-l) + var(--hiw-stroke) / 2 - var(--hiw-pad-l));
    transform: translate(-50%, -50%);
    z-index: 5;
    /* Override .steps-branch .step-number { width: auto } — keep perfect circle */
    width: var(--hiw-node);
    height: var(--hiw-node);
    min-width: var(--hiw-node);
    min-height: var(--hiw-node);
    max-width: var(--hiw-node);
    max-height: var(--hiw-node);
    aspect-ratio: 1;
    padding: 0;
    border-radius: 50%;
    text-align: center;
    font-size: calc(0.95rem * var(--hiw-scale, 1));
    background: var(--bg-dark);
    background-color: var(--bg-dark);
}

/* Marketing: titles + circles on RIGHT spine (left Y arm) — after base rules */
.how-it-works .steps-branch--marketing .steps-branch-track {
    padding-left: 0;
    padding-right: var(--hiw-pad-m);
}

.how-it-works .steps-branch--marketing .steps-branch-track::before {
    left: auto;
    right: var(--hiw-spine-m);
}

.how-it-works .steps-branch--marketing .step-left {
    position: relative;
    align-items: flex-end;
    text-align: right;
}

.how-it-works .steps-branch--marketing .step-number {
    left: auto;
    right: calc(-1 * (var(--hiw-pad-m) - var(--hiw-spine-m) - var(--hiw-stroke) / 2));
    transform: translate(50%, -50%);
}

.how-it-works .steps-branch--marketing .step-content {
    text-align: right;
    align-items: flex-end;
}

.how-it-works .steps-branch--marketing .step-title,
.how-it-works .steps-branch--marketing .step-description {
    text-align: right;
}

/* Compact wraps hugging each spine */
.how-it-works .steps-branch--marketing .step-title {
    max-width: 14ch;
    margin-left: auto;
}

.how-it-works .steps-branch--loyalty .step-title {
    max-width: 16ch;
    margin-right: auto;
}

/* —— How-it-works light spheres (glow 1 → stem → split → branches) —— */
.how-it-works .hiw-fx {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: visible;
}

.how-it-works .hiw-orb {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: calc(10px * var(--hiw-scale, 1));
    height: calc(10px * var(--hiw-scale, 1));
    margin: calc(-5px * var(--hiw-scale, 1)) 0 0 calc(-5px * var(--hiw-scale, 1));
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
}

.how-it-works .hiw-orb--multi {
    /* Flat 2D rainbow disc: Marketing green + Loyalty blue + purple/coral accents */
    background: conic-gradient(
        from 210deg,
        #34d399 0deg,
        #60a5fa 90deg,
        #a78bfa 160deg,
        #fb7185 230deg,
        #34d399 320deg,
        #34d399 360deg
    );
    box-shadow:
        0 0 calc(10px * var(--hiw-scale, 1)) calc(3px * var(--hiw-scale, 1)) rgba(52, 211, 153, 0.55),
        0 0 calc(14px * var(--hiw-scale, 1)) calc(5px * var(--hiw-scale, 1)) rgba(96, 165, 250, 0.45),
        0 0 calc(18px * var(--hiw-scale, 1)) calc(6px * var(--hiw-scale, 1)) rgba(167, 139, 250, 0.3);
}

.how-it-works .hiw-orb--green {
    background: #34d399;
    box-shadow: 0 0 calc(12px * var(--hiw-scale, 1)) calc(4px * var(--hiw-scale, 1)) rgba(52, 211, 153, 0.8);
}

.how-it-works .hiw-orb--blue {
    background: #60a5fa;
    box-shadow: 0 0 calc(12px * var(--hiw-scale, 1)) calc(4px * var(--hiw-scale, 1)) rgba(96, 165, 250, 0.8);
}

/* Colored trail imprint on white stem/spines (above tree via .hiw-fx z:4) */
.how-it-works .hiw-trail {
    position: absolute;
    inset: 0;
    z-index: 0; /* under orbs (z:1), above tree (outside .hiw-fx) */
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.how-it-works .hiw-trail-group {
    pointer-events: none;
}

.how-it-works .hiw-trail-path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    /* Solid strokes + stroke-opacity per chunk (gradients fail on vertical stem) */
    stroke-width: calc(9px * var(--hiw-scale, 1));
}

.how-it-works .hiw-trail-path--multi {
    stroke-width: calc(10px * var(--hiw-scale, 1));
    /* butt caps: continuous color bar on stem (round caps read as orbs) */
    stroke-linecap: butt;
}

.how-it-works .hiw-trail-path--green,
.how-it-works .hiw-trail-path--blue {
    stroke-width: calc(8px * var(--hiw-scale, 1));
}

/* Soft white pulse on step "1" before the orb travels down the stem */
@keyframes hiwStepNumberGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        border-color: rgba(148, 163, 184, 0.7);
        color: #e2e8f0;
        background: var(--bg-dark);
        background-color: var(--bg-dark);
    }
    45%, 55% {
        box-shadow:
            0 0 18px 6px rgba(255, 255, 255, 0.8),
            0 0 36px 14px rgba(255, 255, 255, 0.35);
        border-color: rgba(255, 255, 255, 0.95);
        color: #fff;
        background: var(--bg-darker);
        background-color: var(--bg-darker);
    }
}

/* Soft luminous ring when branch orbs pause on steps 2 / 3 */
@keyframes hiwStepNumberGlowGreen {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
        border-color: rgba(148, 163, 184, 0.7);
        color: #e2e8f0;
        background: var(--bg-dark);
        background-color: var(--bg-dark);
    }
    40%, 60% {
        box-shadow:
            0 0 14px 4px rgba(52, 211, 153, 0.75),
            0 0 28px 10px rgba(52, 211, 153, 0.32);
        border-color: #34d399;
        color: #ecfdf5;
        background: var(--bg-dark);
        background-color: var(--bg-dark);
    }
}

@keyframes hiwStepNumberGlowBlue {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(96, 165, 250, 0);
        border-color: rgba(148, 163, 184, 0.7);
        color: #e2e8f0;
        background: var(--bg-dark);
        background-color: var(--bg-dark);
    }
    40%, 60% {
        box-shadow:
            0 0 14px 4px rgba(96, 165, 250, 0.75),
            0 0 28px 10px rgba(96, 165, 250, 0.32);
        border-color: #60a5fa;
        color: #eff6ff;
        background: var(--bg-dark);
        background-color: var(--bg-dark);
    }
}

@keyframes hiwStepTitleGlow {
    0%, 100% {
        color: #f1f5f9;
        text-shadow: none;
    }
    45%, 55% {
        color: #fff;
        text-shadow:
            0 0 10px rgba(255, 255, 255, 0.7),
            0 0 22px rgba(255, 255, 255, 0.35);
    }
}

@keyframes hiwStepTitleGlowGreen {
    0%, 100% {
        color: #f1f5f9;
        text-shadow: none;
    }
    40%, 60% {
        color: #34d399;
        text-shadow:
            0 0 10px rgba(52, 211, 153, 0.55),
            0 0 22px rgba(52, 211, 153, 0.28);
    }
}

@keyframes hiwStepTitleGlowBlue {
    0%, 100% {
        color: #f1f5f9;
        text-shadow: none;
    }
    40%, 60% {
        color: #60a5fa;
        text-shadow:
            0 0 10px rgba(96, 165, 250, 0.55),
            0 0 22px rgba(96, 165, 250, 0.28);
    }
}

.how-it-works .steps-shared .step-number.hiw-step-glow {
    overflow: visible;
    animation: hiwStepNumberGlow 2s ease-in-out;
}

.how-it-works .steps-shared .step-title.hiw-step-glow {
    animation: hiwStepTitleGlow 2s ease-in-out;
}

.how-it-works .step-number.hiw-step-glow--green {
    overflow: visible;
    animation: hiwStepNumberGlowGreen 1.74s ease-in-out;
}

.how-it-works .step-number.hiw-step-glow--blue {
    overflow: visible;
    animation: hiwStepNumberGlowBlue 1.74s ease-in-out;
}

.how-it-works .step-title.hiw-step-glow--green {
    animation: hiwStepTitleGlowGreen 1.74s ease-in-out;
}

.how-it-works .step-title.hiw-step-glow--blue {
    animation: hiwStepTitleGlowBlue 1.74s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .how-it-works .hiw-fx {
        display: none;
    }

    .how-it-works .steps-shared .step-number.hiw-step-glow,
    .how-it-works .steps-shared .step-title.hiw-step-glow,
    .how-it-works .step-number.hiw-step-glow--green,
    .how-it-works .step-number.hiw-step-glow--blue,
    .how-it-works .step-title.hiw-step-glow--green,
    .how-it-works .step-title.hiw-step-glow--blue {
        animation: none;
    }

    .how-it-works .steps-tree-logo,
    .how-it-works .steps-tree-logo::before {
        animation: none;
        will-change: auto;
    }
}

.steps-shared {
    position: relative;
}

.steps-connector {
    position: absolute;
    left: 40px;
    top: 1.5rem;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(148,163,184,0.4) 15%, rgba(203,213,225,0.5) 55%, rgba(148,163,184,0.35) 100%);
    z-index: 0;
}

.steps-fork {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
    position: relative;
    margin-top: 0.25rem;
    padding-top: 2.25rem;
    z-index: 1;
}

.steps-fork::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    width: calc(50% - 40px - 0.75rem);
    height: 1.35rem;
    border-top: 2px solid rgba(148, 163, 184, 0.35);
    border-right: 2px solid rgba(148, 163, 184, 0.35);
    border-top-right-radius: 14px;
    pointer-events: none;
}

.steps-fork::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: calc(50% - 0.75rem);
    height: 1.35rem;
    border-top: 2px solid rgba(148, 163, 184, 0.35);
    border-left: 2px solid rgba(148, 163, 184, 0.35);
    border-top-left-radius: 14px;
    pointer-events: none;
}

.steps-branch {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0.35rem 0 0;
    min-width: 0;
}

.steps-branch-title {
    margin: 0 0 0.15rem;
    padding: 0 0 0.85rem 2.65rem;
    text-align: left;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #f1f5f9;
}

.steps-branch-track {
    position: relative;
}

.steps-branch .step-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem 0.85rem;
    padding: 0.7rem 0;
    border-bottom: none;
}

.steps-branch .step-item:last-child {
    border-bottom: none;
}

.steps-branch .step-number {
    position: relative;
    left: 0;
    width: auto;
    text-align: left;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.steps-branch .step-left {
    gap: 0;
}

.steps-branch .step-left .step-content {
    margin-left: 0;
}

.steps-branch .step-graphic {
    justify-content: flex-end;
    max-width: 132px;
}

.steps-branch .how-flow-static-svg {
    max-width: 120px;
    width: 100%;
    height: auto;
}

.step-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 3.5rem;
    align-items: center;
    position: relative;
    padding: 2.5rem 2rem;
    margin-bottom: 0;
    transition: all 0.25s ease;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.step-item:first-child,
.steps-shared .step-item {
    padding-top: 0.5rem;
}

.step-item:last-child {
    border-bottom: none;
}


.step-item:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
    background: transparent;
}

.step-left {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    padding-left: 0;
    overflow: visible;
}

/* Αριθμοί 01, 02, 03 πάνω στη γραμμή: δεξιά άκρη αριθμού στο 40px από .steps (connector). step-left ξεκινά at 80px (48+32) άρα left: -120px ώστε box -120..-40 από step-left =  -40..40 από steps */
.step-number {
    position: absolute;
    left: -120px;
    width: 80px;
    text-align: right;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    min-width: 0;
    font-feature-settings: "tnum";
    letter-spacing: -0.02em;
}

.step-left .step-content {
    margin-left: 1.25rem;
    min-width: 0;
}

.how-it-works .steps-shared .step-item .step-number {
    color: #e2e8f0;
    border-color: rgba(148, 163, 184, 0.75);
}
.how-it-works .steps-branch .step-item:nth-child(1) .step-number {
    color: #f1f5f9;
    border-color: rgba(203, 213, 225, 0.75);
}
.how-it-works .steps-branch .step-item:nth-child(2) .step-number {
    color: #cbd5e1;
    border-color: rgba(100, 116, 139, 0.85);
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.step-title {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 42ch;
}

.step-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
    transition: opacity 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
    z-index: 1;
    padding: 0.7rem;
    border-radius: 14px;
    border: 1px solid rgba(6, 182, 212, 0.24);
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.08) 0%, rgba(6, 182, 212, 0.02) 100%);
    box-shadow: inset 0 0 0 1px rgba(6, 182, 212, 0.06), 0 8px 24px rgba(2, 6, 23, 0.35);
}

.step-item:hover .step-graphic {
    opacity: 1;
    border-color: rgba(6, 182, 212, 0.45);
    box-shadow: inset 0 0 0 1px rgba(6, 182, 212, 0.15), 0 10px 28px rgba(6, 182, 212, 0.2);
    transform: translateY(-1px);
}

.step-graphic svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 3px 10px rgba(2, 6, 23, 0.35)) drop-shadow(0 0 10px rgba(6, 182, 212, 0.2));
}

.how-it-works .step-graphic svg text {
    paint-order: stroke;
    stroke: rgba(2, 6, 23, 0.7);
    stroke-width: 0.8px;
    stroke-linejoin: round;
}

.step-graphic-1 svg {
    max-width: 300px;
}

.step-graphic-2 svg {
    max-width: 200px;
}

.step-graphic-3 svg {
    max-width: 240px;
}

.step-graphic-4 svg {
    max-width: 300px;
}

/* Εκτέλεση: 4 IG-style posts σε γρήγορη εναλλαγή (χρονοθυρίδες, χωρίς κενό frame) */
.how-flow-exec-animated .how-exec-post {
    transform-origin: 130px 193px;
    transform-box: fill-box;
    will-change: opacity;
}
.how-flow-exec-animated .how-exec-post--a {
    animation: howExecPostSlot1 5s ease-in-out infinite;
}
.how-flow-exec-animated .how-exec-post--b {
    animation: howExecPostSlot2 5s ease-in-out infinite;
}
.how-flow-exec-animated .how-exec-post--c {
    animation: howExecPostSlot3 5s ease-in-out infinite;
}
.how-flow-exec-animated .how-exec-post--d {
    animation: howExecPostSlot4 5s ease-in-out infinite;
}
@keyframes howExecPostSlot1 {
    0%,
    23% {
        opacity: 1;
    }
    26%,
    100% {
        opacity: 0;
    }
}
@keyframes howExecPostSlot2 {
    0%,
    24% {
        opacity: 0;
    }
    25%,
    45% {
        opacity: 1;
    }
    48%,
    100% {
        opacity: 0;
    }
}
@keyframes howExecPostSlot3 {
    0%,
    47% {
        opacity: 0;
    }
    48%,
    70% {
        opacity: 1;
    }
    73%,
    100% {
        opacity: 0;
    }
}
@keyframes howExecPostSlot4 {
    0%,
    72% {
        opacity: 0;
    }
    73%,
    97% {
        opacity: 1;
    }
    98%,
    100% {
        opacity: 0;
    }
}
.how-flow-exec-animated .how-exec-sparkles .how-exec-sparkle {
    animation: howExecSparkle 1.8s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}
.how-flow-exec-animated .how-exec-sparkles .how-exec-sparkle:nth-child(1) {
    animation-delay: 0s;
}
.how-flow-exec-animated .how-exec-sparkles .how-exec-sparkle:nth-child(2) {
    animation-delay: 0.35s;
}
.how-flow-exec-animated .how-exec-sparkles .how-exec-sparkle:nth-child(3) {
    animation-delay: 0.7s;
}
@keyframes howExecSparkle {
    0%,
    100% {
        opacity: 0.25;
        transform: scale(0.65);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}
@media (prefers-reduced-motion: reduce) {
    .how-flow-exec-animated .how-exec-post {
        animation: none;
        opacity: 1;
    }
    .how-flow-exec-animated .how-exec-post--b,
    .how-flow-exec-animated .how-exec-post--c,
    .how-flow-exec-animated .how-exec-post--d {
        opacity: 0;
        visibility: hidden;
    }
    .how-flow-exec-animated .how-exec-sparkles .how-exec-sparkle {
        animation: none;
        opacity: 0.75;
        transform: none;
    }
}

/* How-it-works: στατικά γραφικά χωρίς κίνηση */
.how-it-works .how-flow-static {
    padding: 0.5rem 0;
    min-width: 200px;
    max-width: 300px;
}
.how-it-works .how-flow-static .how-flow-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}
.how-it-works .how-flow-static-svg {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
}
.how-it-works .how-flow-ads-static .how-flow-static-svg {
    max-width: 280px;
}
.how-it-works .how-flow-ads-static .how-flow-exec-svg {
    max-width: min(240px, 78vw);
}
.how-it-works .how-flow-report-static .how-flow-static-svg {
    max-width: 280px;
}

/* Σύνδεση: χωρίς πλαίσιο γύρω από το graphic (override .step-graphic) */
.how-it-works .step-graphic.step-graphic-connect {
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0.35rem 0.5rem;
}
.how-it-works .step-item:hover .step-graphic.step-graphic-connect {
    border: none;
    box-shadow: none;
    transform: none;
    opacity: 1;
}

/* Εκτέλεση: χωρίς πλαίσιο γύρω από το SVG */
.how-it-works .step-graphic-3 {
    border: none;
    background: transparent;
    box-shadow: none;
}
.how-it-works .step-item:hover .step-graphic-3 {
    border: none;
    box-shadow: none;
    transform: none;
}
/* Αποτελέσματα: χωρίς πλαίσιο γύρω από το SVG */
.how-it-works .step-graphic-4 {
    border: none;
    background: transparent;
    box-shadow: none;
}
.how-it-works .step-item:hover .step-graphic-4 {
    border: none;
    box-shadow: none;
    transform: none;
}

/* Report mini-chart: κίνηση στηλών + γραμμής */
.how-it-works .how-report-bar {
    transform-origin: 50% 100%;
    transform-box: fill-box;
    animation: howReportBarPulse 1.35s ease-in-out infinite alternate;
}
.how-it-works .how-report-bars .how-report-bar:nth-child(1) { animation-delay: 0s; }
.how-it-works .how-report-bars .how-report-bar:nth-child(2) { animation-delay: 0.08s; }
.how-it-works .how-report-bars .how-report-bar:nth-child(3) { animation-delay: 0.16s; }
.how-it-works .how-report-bars .how-report-bar:nth-child(4) { animation-delay: 0.24s; }
.how-it-works .how-report-bars .how-report-bar:nth-child(5) { animation-delay: 0.32s; }
.how-it-works .how-report-bars .how-report-bar:nth-child(6) { animation-delay: 0.4s; }
.how-it-works .how-report-bars .how-report-bar:nth-child(7) { animation-delay: 0.48s; }
.how-it-works .how-report-bars .how-report-bar:nth-child(8) { animation-delay: 0.56s; }
.how-it-works .how-report-bars .how-report-bar:nth-child(9) { animation-delay: 0.64s; }
@keyframes howReportBarPulse {
    from { transform: scaleY(0.78); }
    to { transform: scaleY(1); }
}
.how-it-works .how-report-line {
    transform-origin: 50% 50%;
    transform-box: fill-box;
    animation: howReportLineDrift 2.4s ease-in-out infinite;
}
@keyframes howReportLineDrift {
    0%, 100% { transform: translateY(0); opacity: 0.9; }
    50% { transform: translateY(-1.5px); opacity: 1; }
}
.how-it-works .how-report-area {
    animation: howReportAreaBreathe 2.4s ease-in-out infinite;
}
@keyframes howReportAreaBreathe {
    0%, 100% { opacity: 0.72; }
    50% { opacity: 0.9; }
}
@media (prefers-reduced-motion: reduce) {
    .how-it-works .how-report-bar,
    .how-it-works .how-report-line,
    .how-it-works .how-report-area {
        animation: none;
    }
    .how-it-works .how-report-bar {
        transform: none;
    }
    .how-it-works .how-report-line {
        transform: none;
        opacity: 1;
    }
    .how-it-works .how-report-area {
        opacity: 0.85;
    }
}
.how-it-works .step-graphic-3 svg,
.how-it-works .step-graphic-4 svg {
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}
.how-it-works .step-graphic.step-graphic-connect svg.connect-cycle-btn-icon {
    width: 22px;
    height: 22px;
    max-width: 22px;
    flex-shrink: 0;
    display: block;
    filter: none;
}
.how-it-works .step-graphic.step-graphic-connect svg.connect-cycle-mouse-svg {
    width: 26px;
    height: 26px;
    max-width: 26px;
    display: block;
    filter: none;
    transform: rotate(-14deg);
    transform-origin: 4px 6px;
}

/* How it works — Σύνδεση: μόνο ένα κουμπί ανά φορά (κλικ εναλλαγή) */
.connect-cycle-scene {
    position: relative;
    width: 100%;
    max-width: 300px;
    min-height: 52px;
    margin: 0 auto;
}
.connect-cycle {
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    padding: 0.5rem 0;
    min-width: 200px;
    max-width: 280px;
    margin: 0 auto;
    outline: none;
    transition: transform 0.2s ease;
}
.connect-cycle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.35);
    outline-offset: 4px;
    border-radius: 12px;
}
.connect-cycle:active {
    transform: scale(0.985);
}
.connect-cycle-viewport {
    position: relative;
    width: 100%;
    max-width: 280px;
    min-height: 48px;
    margin: 0 auto;
    z-index: 1;
}
.connect-cycle-mouse {
    position: absolute;
    pointer-events: none;
    z-index: 6;
    width: 28px;
    height: 28px;
    right: 6px;
    top: 50%;
    margin-top: -14px;
    opacity: 0;
    /* Ξεκινά έξω δεξιά-κάτω, καταλήγει πάνω στο δεξί άκρο του pill σαν «κλικ» */
    transform: translate(34px, 22px);
    transition:
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.22s ease;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.65));
}
.connect-cycle-mouse.connect-cycle-mouse--approach {
    opacity: 1;
    transform: translate(-2px, -6px);
}
.connect-cycle-mouse.connect-cycle-mouse--down {
    transform: translate(-2px, -4px) scale(0.9);
    transition: transform 0.1s ease, opacity 0.2s ease;
}
.connect-cycle-panel {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    pointer-events: none;
    transition:
        opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}
.connect-cycle-panel.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 1;
}
.connect-cycle-single-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    max-width: 280px;
    padding: 0.5rem 1rem;
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
    white-space: nowrap;
    cursor: inherit;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.connect-cycle-single-btn--press {
    transform: scale(0.96);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.1);
}
.connect-cycle-single-btn .connect-cycle-btn-icon {
    flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
    .connect-cycle-panel {
        transition: opacity 0.2s ease;
    }
    .connect-cycle-panel.is-active {
        transform: translateY(0) scale(1);
    }
    .connect-cycle:not(:active) {
        transform: none;
    }
    .connect-cycle-mouse {
        display: none;
    }
}

/* Connect carousel: mouse clicks FB / Google / Cash register login, loops */
.connect-carousel {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 140px;
    overflow: hidden;
}

.connect-carousel-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: connectCarouselSlide 9s ease-in-out infinite;
}

.connect-slide-fb { animation-delay: 0s; }
.connect-slide-google { animation-delay: 3s; }
.connect-slide-cash { animation-delay: 6s; }

@keyframes connectCarouselSlide {
    0%, 32% { opacity: 1; z-index: 1; }
    33%, 100% { opacity: 0; z-index: 0; }
}
.connect-slide-fb { animation-delay: 0s; }
.connect-slide-google { animation-delay: 3s; }
.connect-slide-cash { animation-delay: 6s; }

.connect-card {
    position: relative;
    padding: 1rem 1.5rem;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    max-width: 100%;
}

.connect-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    min-width: 0;
    flex-wrap: nowrap;
}

.connect-btn-fb { background: #1877f2; }
.connect-btn-google { background: #fff; color: #333; border: 1px solid #dadce0; }
.connect-btn-cash { background: rgba(148, 163, 184, 0.25); border: 1px solid rgba(148, 163, 184, 0.4); }

.connect-mouse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    color: #fff;
    transform-origin: top left;
    animation: connectMouseMove 3s ease-in-out infinite;
    pointer-events: none;
}
.connect-slide-fb .connect-mouse,
.connect-slide-fb .connect-mouse .connect-click-dot { animation-delay: 0s; }
.connect-slide-google .connect-mouse { animation-delay: 3s; }
.connect-slide-google .connect-mouse .connect-click-dot { animation-delay: 3s; }
.connect-slide-cash .connect-mouse { animation-delay: 6s; }
.connect-slide-cash .connect-mouse .connect-click-dot { animation-delay: 6s; }

.connect-mouse .mouse-pointer {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.connect-click-dot {
    position: absolute;
    top: 8px;
    left: 6px;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    opacity: 0;
    animation: connectMouseClick 3s ease-in-out infinite;
}

@keyframes connectMouseMove {
    0% { transform: translate(-100px, -30px) scale(1); opacity: 0.8; }
    25% { transform: translate(-12px, -12px) scale(1); opacity: 1; }
    35% { transform: translate(-12px, -8px) scale(0.85); opacity: 1; }
    45% { transform: translate(-12px, -12px) scale(1); opacity: 1; }
    100% { transform: translate(-12px, -12px) scale(1); opacity: 1; }
}

@keyframes connectMouseClick {
    0%, 20% { opacity: 0; transform: scale(0.5); }
    28% { opacity: 1; transform: scale(1.2); }
    35% { opacity: 0; transform: scale(1.5); }
    100% { opacity: 0; }
}

/* How-it-works graphics from index2 (connect card, paid ads + budget, report) */
.how-it-works .step-graphic {
    min-width: 0;
}
.how-it-works .how-flow-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0.5rem 0;
    min-width: 200px;
    max-width: 300px;
    box-shadow: none;
}
.how-it-works .how-flow-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.how-it-works .how-flow-connect-btns {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.how-it-works .how-flow-connect-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    cursor: default;
}
.how-it-works .how-flow-connect-btn .how-flow-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.how-it-works .how-flow-connect-btn:nth-child(3) .how-flow-icon {
    background: rgba(255, 255, 255, 0.15);
}
.how-it-works .how-flow-connect-btn .how-flow-icon svg { width: 20px; height: 20px; display: block; }
.how-it-works .how-flow-label { font-weight: 700; color: rgba(255,255,255,0.98); font-size: 0.95rem; }

.how-it-works .how-flow-cards-pair {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    max-width: 520px;
}
.how-it-works .how-flow-cards-pair .how-flow-card {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
}
.how-it-works .how-flow-card.ai-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}
.how-it-works .how-flow-card.ai-card .how-flow-card-title { margin-bottom: 0.25rem; }
.how-it-works .how-flow-card.ai-card .how-flow-card-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    margin: 0 0 0.75rem;
    line-height: 1.35;
    max-width: 260px;
}
.how-it-works .how-flow-posts-graphic {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1rem;
}
.how-it-works .how-flow-post-card {
    width: 58px;
    height: 74px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 6px;
    position: relative;
}
.how-it-works .how-flow-post-card::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
}
.how-it-works .how-flow-post-card::after {
    content: '';
    position: absolute;
    top: 22px;
    left: 8px;
    right: 8px;
    height: 14px;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}
.how-it-works .how-flow-budget-bar {
    width: 100%;
    max-width: 200px;
    margin-top: 0.75rem;
    height: 52px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
}
.how-it-works .how-flow-budget-segment {
    width: 22px;
    border-radius: 4px 4px 0 0;
    min-height: 8px;
}
.how-it-works .how-flow-budget-segment.fb { background: #1877f2; }
.how-it-works .how-flow-budget-segment.ig { background: linear-gradient(180deg, #f09433, #e6683c, #dc2743); }
.how-it-works .how-flow-budget-segment.gg { background: #4285f4; }
.how-it-works .how-flow-budget-segment.ly { background: #3b82f6; }
.how-it-works .how-flow-budget-bar[data-phase="0"] .how-flow-budget-segment.fb { height: 85%; }
.how-it-works .how-flow-budget-bar[data-phase="0"] .how-flow-budget-segment.ig { height: 55%; }
.how-it-works .how-flow-budget-bar[data-phase="0"] .how-flow-budget-segment.gg { height: 40%; }
.how-it-works .how-flow-budget-bar[data-phase="0"] .how-flow-budget-segment.ly { height: 30%; }
.how-it-works .how-flow-budget-bar[data-phase="1"] .how-flow-budget-segment.fb { height: 45%; }
.how-it-works .how-flow-budget-bar[data-phase="1"] .how-flow-budget-segment.ig { height: 90%; }
.how-it-works .how-flow-budget-bar[data-phase="1"] .how-flow-budget-segment.gg { height: 50%; }
.how-it-works .how-flow-budget-bar[data-phase="1"] .how-flow-budget-segment.ly { height: 35%; }
.how-it-works .how-flow-budget-bar[data-phase="2"] .how-flow-budget-segment.fb { height: 50%; }
.how-it-works .how-flow-budget-bar[data-phase="2"] .how-flow-budget-segment.ig { height: 40%; }
.how-it-works .how-flow-budget-bar[data-phase="2"] .how-flow-budget-segment.gg { height: 88%; }
.how-it-works .how-flow-budget-bar[data-phase="2"] .how-flow-budget-segment.ly { height: 38%; }
.how-it-works .how-flow-budget-bar[data-phase="3"] .how-flow-budget-segment.fb { height: 42%; }
.how-it-works .how-flow-budget-bar[data-phase="3"] .how-flow-budget-segment.ig { height: 45%; }
.how-it-works .how-flow-budget-bar[data-phase="3"] .how-flow-budget-segment.gg { height: 48%; }
.how-it-works .how-flow-budget-bar[data-phase="3"] .how-flow-budget-segment.ly { height: 92%; }
.how-it-works .how-flow-budget-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.4rem;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.7);
    max-width: 200px;
    padding: 0 2px;
}
.how-it-works .how-flow-card.result-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 0.5rem 0;
    border: none;
    background: transparent;
}
.how-it-works .how-flow-result-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}
.how-it-works .how-flow-result-icon svg { width: 100%; height: 100%; display: block; }
.how-it-works .how-flow-result-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.how-it-works .how-flow-result-title::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: rgba(59, 130, 246, 0.5);
    margin: 0.5rem auto 0;
    border-radius: 1px;
}
.how-it-works .how-flow-result {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin: 0;
}
.how-it-works .how-flow-result .roi-dyn-line { display: block; padding: 0.15rem 0; }
.how-it-works .how-flow-result .roi-dyn-value {
    font-weight: 700;
    color: #60a5fa;
    transition: opacity 0.3s;
}

/* Step 3: Report graphic (generated report with numbers) */
.how-flow-report {
    min-width: 240px;
    max-width: 280px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
    font-size: 0.8rem;
}
.how-flow-report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.how-flow-report-title {
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}
.how-flow-report-badge {
    font-size: 0.65rem;
    font-weight: 600;
    color: #34d399;
    background: rgba(52, 211, 153, 0.15);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}
.how-flow-report-body {
    padding: 0.6rem 0.75rem;
}
.how-flow-report-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    gap: 0.75rem;
}
.how-flow-report-label {
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}
.how-flow-report-value,
.how-flow-report-num {
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
}
.how-flow-report-value .roi-dyn-value {
    color: #60a5fa;
    transition: opacity 0.3s;
}
.how-flow-report-suffix {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75em;
}
.how-flow-report-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0.4rem 0;
}
.how-flow-report-row-metric .how-flow-report-num {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
}
.how-flow-report-bar-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.how-flow-report-bar-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    min-width: 28px;
}
.how-flow-report-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}
.how-flow-report-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #60a5fa, #34d399);
    border-radius: 3px;
    transition: width 0.6s ease;
}
.how-flow-report-bar-pct {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #34d399;
    font-size: 0.75rem;
    min-width: 28px;
    text-align: right;
}

@media (max-width: 600px) {
    .how-it-works .how-flow-cards-pair {
        flex-direction: column;
        align-items: center;
    }
    .how-it-works .how-flow-cards-pair .how-flow-card {
        max-width: 100%;
    }
}

/* How It Works: mobile/tablet — same Y-fork as desktop, scaled to fit viewport */
@media (max-width: 900px) {
    .how-it-works {
        overflow-x: hidden;
        padding: 3.5rem 0 4rem;
    }
    .how-it-works .steps {
        /* Structural scale-down (vars, not transform) so orb geometry stays correct */
        --hiw-scale: 0.82;
        /* Keep fork gap wide enough that ledge titles never collide */
        --hiw-gap: 7rem;
        --hiw-stroke: calc(13px * var(--hiw-scale));
        --hiw-node-01: calc(2.55rem * var(--hiw-scale));
        --hiw-node: var(--hiw-node-01);
        --hiw-pad-m: calc(2.4rem * var(--hiw-scale));
        --hiw-pad-l: calc(2.4rem * var(--hiw-scale));
        --hiw-radius: calc(44px * var(--hiw-scale));
        --hiw-fillet: calc(16px * var(--hiw-scale));
        --hiw-join-h: calc(4.55rem * var(--hiw-scale));
        --hiw-fork-y: calc(2.15rem * var(--hiw-scale));
        --hiw-bow-leg: calc(1.4rem * var(--hiw-scale));
        --hiw-spine-m: calc((var(--hiw-pad-m) - var(--hiw-stroke)) / 2);
        --hiw-spine-l: calc((var(--hiw-pad-l) - var(--hiw-stroke)) / 2);
        max-width: 100%;
        width: 100%;
        padding-left: 0.15rem;
        padding-right: 0.15rem;
        overflow: visible;
        box-sizing: border-box;
    }
    /* Keep two-column fork — never stack Marketing / Loyalty */
    .how-it-works .steps-fork {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: var(--hiw-gap);
        row-gap: calc(1.25rem * var(--hiw-scale, 1));
        overflow: visible;
    }
    .how-it-works .steps-branch--marketing {
        grid-column: 1;
        grid-row: 1;
    }
    .how-it-works .steps-branch--loyalty {
        grid-column: 2;
        grid-row: 1;
    }
    .how-it-works .steps-tree-svg {
        height: calc(100% + var(--hiw-bow-leg) + var(--hiw-stroke) * 0.65);
        width: 100%;
    }
    .how-it-works .steps-tree-join .steps-branch-ledge {
        display: flex;
        /* Cap width so left/right ledges can't spill into each other */
        width: auto;
        min-width: 0;
        max-width: calc(var(--hiw-gap) * 0.92);
        gap: 0.1rem;
    }
    /* Anchor to spine midlines (not 25%/75% bow) — max L/R separation on narrow screens */
    .how-it-works .steps-tree-join .steps-branch-ledge--marketing {
        left: calc(var(--hiw-bow-left) + var(--hiw-stroke) / 2);
    }
    .how-it-works .steps-tree-join .steps-branch-ledge--loyalty {
        left: calc(var(--hiw-bow-right) - var(--hiw-stroke) / 2);
    }
    /* Ro badge stays centered in the fork gap */
    .how-it-works .steps-tree-logo {
        --hiw-logo-size: calc(3.25rem * var(--hiw-scale, 1));
        position: absolute;
        left: 50%;
        top: calc(
            (0.85rem * 1.3 * var(--hiw-scale, 1))
            + (1.15rem * 1.3 * var(--hiw-scale, 1))
            + (1.55rem * 1.3 * var(--hiw-scale, 1))
        );
        transform: translate(-50%, -50%);
        grid-column: 1 / -1;
        grid-row: 1;
        margin: 0;
        width: var(--hiw-logo-size);
        height: var(--hiw-logo-size);
        border-width: 1.25px;
        z-index: 1;
    }
    .how-it-works .steps-tree-logo::after {
        content: none;
        display: none;
    }
    .how-it-works .steps-branch-title--stacked,
    .how-it-works .steps-branch-subtitle--stacked {
        display: none !important;
    }
    /* Readable type — clamp×scale alone gets too tiny on phones */
    .how-it-works .steps-shared .step-title {
        font-size: 0.8rem;
        line-height: 1.3;
        max-width: 16ch;
        white-space: normal;
        overflow-wrap: break-word;
    }
    .how-it-works .steps-shared .step-number {
        font-size: 0.82rem;
    }
    .how-it-works .steps-shared .step-item--connect {
        padding: 1.35rem 0 0.85rem;
    }
    .how-it-works .steps-shared .step-item--connect .step-left {
        width: 50%;
        max-width: none;
        margin-left: 50%;
        padding-left: calc(var(--hiw-node-01) / 2 + 0.95rem * var(--hiw-scale, 1));
    }
    .how-it-works .hiw-connect-bubble {
        font-size: 0.58rem;
        padding: 0.32rem 0.55rem;
    }
    .how-it-works .hiw-connect-bubble--fb {
        left: -5.4rem;
        top: -2.2rem;
    }
    .how-it-works .hiw-connect-bubble--google {
        left: 1.2rem;
        top: -2.35rem;
    }
    .how-it-works .hiw-connect-bubble--pos {
        left: -4.4rem;
        top: 1.2rem;
    }
    .how-it-works .steps-tree-join .steps-branch-title {
        font-size: 0.7rem;
        letter-spacing: 0.02em;
        width: auto;
        min-width: 0;
        max-width: 100%;
        white-space: nowrap;
    }
    .how-it-works .steps-tree-join .steps-branch-subtitle {
        font-size: 0.54rem;
        letter-spacing: 0.01em;
        white-space: normal;
        width: auto;
        min-width: 0;
        max-width: 100%;
        line-height: 1.15;
        overflow-wrap: break-word;
    }
    .how-it-works .steps-branch .step-title {
        font-size: 0.7rem;
        line-height: 1.28;
        white-space: normal;
        overflow-wrap: break-word;
    }
    .how-it-works .steps-branch--marketing .step-title {
        max-width: 13ch;
    }
    .how-it-works .steps-branch--loyalty .step-title {
        max-width: 14ch;
    }
    .how-it-works .steps-branch .step-number {
        font-size: 0.82rem;
    }
    .how-it-works .steps-branch-track {
        min-height: calc(14.5rem * var(--hiw-scale, 1));
    }
    .how-it-works .hiw-orb {
        width: calc(9px * var(--hiw-scale, 1));
        height: calc(9px * var(--hiw-scale, 1));
        margin: calc(-4.5px * var(--hiw-scale, 1)) 0 0 calc(-4.5px * var(--hiw-scale, 1));
    }
}

@media (max-width: 768px) {
    .how-it-works .section-header .section-title { font-size: 1.5rem; }
    .how-it-works .section-header .section-subtitle { font-size: 0.9375rem; }
    .features .features-title { font-size: 1.5rem; }
    .automation-ads-section .section-header .section-title { font-size: 1.5rem; }
    .automation-ads-section .section-header .section-subtitle { font-size: 0.9375rem; }
    .how-it-works .steps {
        --hiw-scale: 0.68;
        --hiw-gap: 5.5rem;
        --hiw-stroke: calc(12px * var(--hiw-scale));
        --hiw-node-01: calc(2.45rem * var(--hiw-scale));
        --hiw-node: var(--hiw-node-01);
        --hiw-pad-m: calc(2.25rem * var(--hiw-scale));
        --hiw-pad-l: calc(2.25rem * var(--hiw-scale));
        --hiw-radius: calc(38px * var(--hiw-scale));
        --hiw-fillet: calc(14px * var(--hiw-scale));
        --hiw-join-h: calc(4.25rem * var(--hiw-scale));
        --hiw-fork-y: calc(1.95rem * var(--hiw-scale));
        --hiw-bow-leg: calc(1.25rem * var(--hiw-scale));
        --hiw-spine-m: calc((var(--hiw-pad-m) - var(--hiw-stroke)) / 2);
        --hiw-spine-l: calc((var(--hiw-pad-l) - var(--hiw-stroke)) / 2);
        padding-left: 0.1rem;
        padding-right: 0.1rem;
    }
    .how-it-works .steps-tree-logo {
        --hiw-logo-size: calc(3rem * var(--hiw-scale, 1));
    }
    .how-it-works .steps-shared .step-title {
        font-size: 0.74rem;
        max-width: 15ch;
    }
    .how-it-works .hiw-connect-bubble {
        font-size: 0.54rem;
        padding: 0.28rem 0.48rem;
    }
    .how-it-works .steps-branch .step-title {
        font-size: 0.64rem;
    }
    .how-it-works .steps-tree-join .steps-branch-title {
        font-size: 0.64rem;
    }
    .how-it-works .steps-tree-join .steps-branch-subtitle {
        font-size: 0.5rem;
    }
    .how-it-works .steps-shared .step-number,
    .how-it-works .steps-branch .step-number {
        font-size: 0.76rem;
    }
}

@media (max-width: 480px) {
    .how-it-works .section-header .section-title { font-size: 1.35rem; }
    .features .features-title { font-size: 1.35rem; }
    .physical-store-header .section-title { font-size: 1.35rem; }
    .automation-ads-section .section-header .section-title { font-size: 1.35rem; }
    .automation-ads-section .section-header .section-subtitle { font-size: 0.875rem; }
    .how-it-works .steps {
        --hiw-scale: 0.55;
        /* Wider than before so Marketing / Loyalty stay separated on ~360–390px */
        --hiw-gap: 4.35rem;
        --hiw-stroke: calc(11px * var(--hiw-scale));
        --hiw-node-01: calc(2.4rem * var(--hiw-scale));
        --hiw-node: var(--hiw-node-01);
        --hiw-pad-m: calc(2.1rem * var(--hiw-scale));
        --hiw-pad-l: calc(2.1rem * var(--hiw-scale));
        --hiw-radius: calc(30px * var(--hiw-scale));
        --hiw-fillet: calc(11px * var(--hiw-scale));
        --hiw-join-h: calc(3.85rem * var(--hiw-scale));
        --hiw-fork-y: calc(1.7rem * var(--hiw-scale));
        --hiw-bow-leg: calc(1.05rem * var(--hiw-scale));
        --hiw-spine-m: calc((var(--hiw-pad-m) - var(--hiw-stroke)) / 2);
        --hiw-spine-l: calc((var(--hiw-pad-l) - var(--hiw-stroke)) / 2);
        padding-left: 0;
        padding-right: 0;
    }
    .how-it-works .steps-tree-logo {
        --hiw-logo-size: calc(2.55rem * var(--hiw-scale, 1));
    }
    .how-it-works .steps-shared .step-title {
        font-size: 0.7rem;
        max-width: 15ch;
    }
    .how-it-works .steps-branch .step-title {
        font-size: 0.6rem;
    }
    .how-it-works .steps-branch--marketing .step-title {
        max-width: 11ch;
    }
    .how-it-works .steps-branch--loyalty .step-title {
        max-width: 12ch;
    }
    .how-it-works .steps-tree-join .steps-branch-ledge {
        max-width: calc(var(--hiw-gap) * 0.88);
    }
    .how-it-works .steps-tree-join .steps-branch-title {
        font-size: 0.58rem;
        letter-spacing: 0.015em;
    }
    .how-it-works .steps-tree-join .steps-branch-subtitle {
        font-size: 0.46rem;
    }
    .how-it-works .steps-shared .step-number,
    .how-it-works .steps-branch .step-number {
        font-size: 0.7rem;
    }
    .how-it-works .steps-branch-track {
        min-height: calc(13rem * var(--hiw-scale, 1));
    }
}

/* Very narrow phones: keep Y-fork, squeeze type/gap further — still no stack */
@media (max-width: 380px) {
    .how-it-works .steps {
        --hiw-scale: 0.5;
        --hiw-gap: 3.85rem;
        --hiw-stroke: calc(10px * var(--hiw-scale));
        --hiw-node-01: calc(2.35rem * var(--hiw-scale));
        --hiw-node: var(--hiw-node-01);
        --hiw-pad-m: calc(2rem * var(--hiw-scale));
        --hiw-pad-l: calc(2rem * var(--hiw-scale));
        --hiw-radius: calc(26px * var(--hiw-scale));
        --hiw-fillet: calc(10px * var(--hiw-scale));
        --hiw-join-h: calc(3.6rem * var(--hiw-scale));
        --hiw-fork-y: calc(1.55rem * var(--hiw-scale));
        --hiw-bow-leg: calc(0.95rem * var(--hiw-scale));
        --hiw-spine-m: calc((var(--hiw-pad-m) - var(--hiw-stroke)) / 2);
        --hiw-spine-l: calc((var(--hiw-pad-l) - var(--hiw-stroke)) / 2);
    }
    .how-it-works .steps-tree-logo {
        --hiw-logo-size: calc(2.35rem * var(--hiw-scale, 1));
    }
    .how-it-works .steps-tree-join .steps-branch-title {
        font-size: 0.54rem;
    }
    .how-it-works .steps-tree-join .steps-branch-subtitle {
        font-size: 0.42rem;
    }
    .how-it-works .steps-branch .step-title {
        font-size: 0.56rem;
    }
    .how-it-works .steps-branch--marketing .step-title {
        max-width: 10ch;
    }
    .how-it-works .steps-branch--loyalty .step-title {
        max-width: 11ch;
    }
}


.step-connector {
    display: none;
}

.step-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
    animation: connectorPulse 2s ease-in-out infinite;
}

.step-connector::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
    animation: connectorPulse 2s ease-in-out infinite 0.5s;
}

@keyframes connectorPulse {
    0%, 100% { 
        opacity: 0.6; 
        transform: translateX(-50%) scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: translateX(-50%) scale(1.3); 
    }
}


/* 24/7 Automation Section */
.automation-section {
    background: var(--bg-dark);
    padding: clamp(3rem, 6vw, 4.5rem) 0 0;
    position: relative;
    overflow: hidden;
}

.automation-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.automation-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: automationOrbFloat 15s ease-in-out infinite;
}

.automation-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.6) 0%, rgba(71, 85, 105, 0.5) 100%);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.automation-orb.orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.5) 0%, rgba(100, 116, 139, 0.4) 100%);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

@keyframes automationOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.automation-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

.automation-content {
    max-width: 1400px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.automation-text {
    flex: 1 1 280px;
    min-width: 280px;
    max-width: 560px;
    text-align: left;
}

.automation-text .section-title {
    margin: 0 0 1rem;
    text-align: left;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    line-height: 1.25;
}

.automation-text .physical-store-description {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-secondary);
    text-align: left;
}

/* Monthly performance reports */
.monthly-reports-section {
    background: var(--bg-darker);
    padding: 4.5rem 0 5rem;
    position: relative;
    overflow: hidden;
}

/* Nested under «Αυτοματοποίησε το Marketing» */
.automation-ads-section .monthly-reports-section--in-marketing {
    background: transparent;
    padding: clamp(3rem, 6vw, 4.5rem) 0 0;
    overflow: visible;
}

.monthly-reports-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.monthly-reports-copy {
    flex: 1 1 280px;
    min-width: 280px;
    max-width: 560px;
    text-align: left;
}

.monthly-reports-copy .section-title {
    margin: 0 0 1rem;
    text-align: left;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    line-height: 1.25;
}

.monthly-reports-copy .physical-store-description {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-secondary);
    text-align: left;
}

/* Shared marketing graphic size (monthly / budget / AI Watch) */
.monthly-reports-visual,
.automation-header,
.ai-watch-visual {
    flex: 0 1 400px;
    width: 100%;
    min-width: 260px;
    max-width: 400px;
    height: 320px;
    margin-left: auto;
    margin-right: 0;
    box-sizing: border-box;
}

/* Soft cool aura when a marketing graphic is centered in the viewport (images only) */
.marketing-graphic {
    position: relative;
    transition: filter 0.7s ease, box-shadow 0.7s ease;
}

.monthly-reports-visual.marketing-graphic,
.ai-watch-visual.marketing-graphic {
    border-radius: 16px;
}

.marketing-graphic.is-in-view {
    filter:
        drop-shadow(0 0 22px rgba(241, 245, 249, 0.22))
        drop-shadow(0 0 48px rgba(241, 245, 249, 0.12))
        drop-shadow(0 0 72px rgba(34, 211, 238, 0.14));
}

.monthly-reports-visual.marketing-graphic.is-in-view,
.ai-watch-visual.marketing-graphic.is-in-view {
    box-shadow:
        0 0 36px 8px rgba(241, 245, 249, 0.1),
        0 0 64px 18px rgba(34, 211, 238, 0.08);
}

@media (prefers-reduced-motion: reduce) {
    .marketing-graphic {
        transition: none;
    }
}

.monthly-reports-svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

@media (max-width: 768px) {
    .monthly-reports-inner {
        flex-direction: column;
        text-align: left;
    }
    .monthly-reports-copy {
        max-width: 100%;
    }
    .monthly-reports-copy .section-title {
        text-align: left;
    }
    .monthly-reports-visual {
        max-width: 100%;
        width: 100%;
        height: auto;
        aspect-ratio: 400 / 320;
        margin-left: 0;
        margin-right: 0;
    }
}

/* AI Watch — καμπάνιες 24/7 + προτάσεις */
.ai-watch-section {
    background: var(--bg-darker);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    position: relative;
    overflow: hidden;
}

.ai-watch-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.ai-watch-copy {
    flex: 1 1 280px;
    min-width: 280px;
    max-width: 560px;
    text-align: left;
}

.ai-watch-copy .section-title {
    margin: 0 0 1rem;
    text-align: left;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    line-height: 1.25;
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    background-clip: unset;
}

.ai-watch-copy .physical-store-description {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-secondary);
    text-align: left;
}

.ai-watch-svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.4));
}

@media (max-width: 900px) {
    .ai-watch-inner {
        flex-direction: column;
        text-align: left;
    }
    .ai-watch-copy .section-title,
    .ai-watch-copy .physical-store-description {
        text-align: left;
    }
    .ai-watch-copy {
        max-width: 100%;
    }
    .ai-watch-visual {
        max-width: 100%;
        width: 100%;
        height: auto;
        aspect-ratio: 400 / 320;
        margin-left: 0;
        margin-right: 0;
    }
}

.automation-header {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.automation-title {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.automation-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
}

.automation-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: var(--gradient-1);
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

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

@keyframes iconGlow {
    0% { opacity: 0.2; }
    100% { opacity: 0.4; }
}

.automation-description {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.automation-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Budget Chart — premium glossy slate card (aligned with monthly-reports / AI Watch) */
.automation-section .budget-chart-container .time-period-container {
    width: 100%;
    margin: 0 0 1.05rem 0;
    padding: 0.7rem 0.85rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
        rgba(34, 211, 238, 0.07);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.automation-section .time-period-container:hover {
    border-color: rgba(34, 211, 238, 0.42);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 42%),
        rgba(34, 211, 238, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.automation-section .clock-icon {
    width: 34px;
    height: 34px;
    background:
        linear-gradient(165deg, rgba(51, 65, 85, 0.85) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 9px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #67e8f9;
    flex-shrink: 0;
    animation: clockTick 2s ease-in-out infinite;
}

.automation-section .clock-icon svg {
    width: 18px;
    height: 18px;
}

.automation-section .budget-chart-container .time-period-text {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #e2e8f0;
}

@keyframes clockTick {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.time-period-display {
    flex: 1;
    min-width: 0;
}

.time-period-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.automation-section .budget-chart-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 1.15rem 1.2rem 1.1rem;
    background:
        linear-gradient(165deg, rgba(51, 65, 85, 0.55) 0%, rgba(30, 41, 59, 0.35) 28%, transparent 55%),
        linear-gradient(165deg, rgba(30, 41, 59, 0.94) 0%, rgba(15, 23, 42, 0.97) 100%);
    border: 1px solid rgba(186, 198, 214, 0.38);
    border-radius: 16px;
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.38),
        0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -1px 0 rgba(0, 0, 0, 0.28),
        inset 1px 0 0 rgba(255, 255, 255, 0.04),
        inset -1px 0 0 rgba(0, 0, 0, 0.12);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: none;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.automation-section .budget-chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 48%;
    background:
        linear-gradient(90deg, transparent 4%, rgba(34, 211, 238, 0.55) 35%, rgba(167, 139, 250, 0.4) 65%, transparent 96%) top / 100% 1px no-repeat,
        linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 28%, rgba(255, 255, 255, 0.015) 55%, transparent 100%);
    border-radius: inherit;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.automation-section .budget-chart-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 95% 55% at 50% -8%, rgba(34, 211, 238, 0.1) 0%, transparent 58%),
        radial-gradient(ellipse 50% 35% at 100% 100%, rgba(167, 139, 250, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, transparent 72%, rgba(255, 255, 255, 0.025) 100%);
    border-radius: inherit;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.35s ease, background 0.35s ease;
    z-index: 0;
}

.automation-section .budget-chart-container:hover {
    transform: none;
    border-color: rgba(34, 211, 238, 0.46);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(34, 211, 238, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        inset 1px 0 0 rgba(255, 255, 255, 0.05),
        inset -1px 0 0 rgba(0, 0, 0, 0.14);
    background:
        linear-gradient(165deg, rgba(51, 65, 85, 0.62) 0%, rgba(30, 41, 59, 0.4) 28%, transparent 55%),
        linear-gradient(165deg, rgba(30, 41, 59, 0.97) 0%, rgba(15, 23, 42, 1) 100%);
}

.automation-section .budget-chart-container:hover::after {
    background:
        radial-gradient(ellipse 95% 58% at 50% -8%, rgba(34, 211, 238, 0.14) 0%, transparent 58%),
        radial-gradient(ellipse 50% 35% at 100% 100%, rgba(167, 139, 250, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, transparent 70%, rgba(255, 255, 255, 0.035) 100%);
}

.automation-section .budget-chart-container:hover .budget-bar-fill {
    filter: brightness(1.07) saturate(1.05);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 255, 136, 0.8);
    }
}

@keyframes automationPulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
    }
}

.automation-section .budget-chart-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: left;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.automation-section .budget-chart-container .budget-chart {
    flex: 1 1 auto;
    gap: 0.95rem;
    margin-bottom: 0.85rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.automation-section .budget-chart-container .budget-bar-item {
    gap: 0.4rem;
}

.automation-section .budget-chart-container .budget-bar-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #cbd5e1;
}

.automation-section .budget-chart-container .budget-amount {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #f1f5f9;
}

.automation-section .budget-chart-container .budget-bar-wrapper {
    height: 12px;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 40%),
        rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.automation-section .budget-chart-container .budget-bar {
    border-radius: 999px;
}

.automation-section .budget-chart-container .budget-total {
    font-size: 0.8125rem;
    padding-top: 0.85rem;
    margin-top: 0.15rem;
    border-top-color: rgba(148, 163, 184, 0.22);
    color: #94a3b8;
    position: relative;
    z-index: 1;
}

.automation-section .budget-chart-container .budget-total strong {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.automation-section .budget-chart-container .time-period-container,
.automation-section .budget-chart-container .budget-chart,
.automation-section .budget-chart-container .budget-total {
    position: relative;
    z-index: 1;
}

.budget-chart {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.budget-bar-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.budget-bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
}

.budget-change {
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.budget-change.positive {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.budget-change.negative {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.budget-amount {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.125rem;
}

.budget-bar-wrapper {
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.budget-bar {
    height: 100%;
    position: relative;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.budget-bar-fill {
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

/* 24/7 section: glossy cyan / violet / slate bars (match monthly-reports / AI Watch) */
.automation-section .budget-bar-fill {
    border-radius: 999px;
    box-shadow: none;
}

.automation-section .budget-bar-fill.budget-bar-google {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.12) 38%, transparent 58%),
        linear-gradient(90deg, #22d3ee, #38bdf8);
    box-shadow:
        0 0 12px rgba(34, 211, 238, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.automation-section .budget-bar-fill.budget-bar-meta {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.1) 38%, transparent 58%),
        linear-gradient(90deg, #8b5cf6, #a78bfa);
    box-shadow:
        0 0 12px rgba(167, 139, 250, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.automation-section .budget-bar-fill.budget-bar-loyalty {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 38%, transparent 58%),
        linear-gradient(90deg, #64748b, #94a3b8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.automation-section .budget-change {
    font-size: 0.6875rem;
    font-weight: 600;
    margin-left: 0.4rem;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    letter-spacing: 0.01em;
}

.automation-section .budget-change.positive {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.28);
}

.automation-section .budget-change.negative {
    color: #fb7185;
    background: rgba(251, 113, 133, 0.1);
    border: 1px solid rgba(251, 113, 133, 0.25);
}

.automation-section .budget-amount {
    color: #f1f5f9;
}

.automation-section .budget-total strong {
    color: #f8fafc;
}

.budget-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    animation: shimmer 2.8s ease-in-out infinite;
}

.automation-section .budget-bar-fill::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    animation-duration: 3.2s;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.budget-total {
    text-align: left;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.budget-total strong {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.automation-description p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0;
}

.section-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 1.5rem 0;
    text-align: left;
}

.section-description.highlight-text {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    padding: 0;
    border-radius: 0;
    border: none;
    margin-top: 2rem;
    position: relative;
    overflow: visible;
    text-align: left;
    line-height: 1.6;
}

.automation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.automation-features > * {
    width: 100%;
    box-sizing: border-box;
}

.automation-feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.automation-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.automation-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25);
}

.automation-feature-item:hover::before {
    transform: scaleX(1);
}

.automation-feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    flex-shrink: 0;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.automation-feature-item:hover .automation-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.automation-feature-text {
    text-align: left;
}

.automation-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.automation-feature-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Gamification Section */
.gamification-section {
    background: var(--bg-darker);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.gamification-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gamification-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: gamificationOrbFloat 18s ease-in-out infinite;
}

.gamification-orb.orb-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(100, 116, 139, 0.35) 0%, rgba(71, 85, 105, 0.15) 50%, transparent 70%);
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.gamification-orb.orb-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(148, 163, 184, 0.25) 0%, rgba(100, 116, 139, 0.1) 50%, transparent 70%);
    bottom: -120px;
    left: -100px;
    animation-delay: 7s;
}

@keyframes gamificationOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(-40px, 40px) scale(1.1) rotate(120deg); }
    66% { transform: translate(40px, -40px) scale(0.9) rotate(240deg); }
}

.gamification-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gamification-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0.5;
    animation: particleFloat 20s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 9s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 12s;
    animation-duration: 20s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

.gamification-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

.gamification-header {
    margin-bottom: 2.5rem;
}

.gamification-section .gamification-icon {
    width: 100px;
    height: 100px;
    margin: 0 0 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    animation: gamificationIconSpin 8s linear infinite;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.06);
}

.gamification-section .gamification-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(148, 163, 184, 0.2) 0%, transparent 70%);
    opacity: 0.6;
    filter: blur(10px);
    z-index: -1;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes gamificationIconSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

.gamification-description {
    margin-bottom: 3rem;
}

.gamification-description p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0;
}

.gamification-visual {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

.gamification-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gamification-image-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    letter-spacing: -0.01em;
    margin: 0;
}

.gamification-image-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.6;
    margin: 0.5rem 0 0.5rem 0;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
}

.gamification-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.gamification-image-wrapper:first-child .gamification-image {
    object-fit: cover;
}

.gamification-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.25);
}

.mobile-arcade-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.mobile-arcade-link:hover {
    transform: translateY(-5px) scale(1.02);
}

.mobile-arcade-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.mobile-arcade-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 255, 136, 0.2));
    transition: filter 0.3s ease;
}

.mobile-arcade-link:hover .mobile-arcade-svg {
    filter: drop-shadow(0 30px 80px rgba(0, 255, 136, 0.4));
}

.tablet-wheel-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem 2rem 2rem 2rem;
}

.tablet-wheel-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 255, 136, 0.2));
}

.wheel-container {
    animation: spinWheelGame 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    transform-origin: 0 0;
}

@keyframes spinWheelGame {
    0% {
        transform: rotate(0deg);
    }
    2% {
        transform: rotate(360deg);
    }
    4% {
        transform: rotate(720deg);
    }
    6% {
        transform: rotate(1080deg);
    }
    8% {
        transform: rotate(1440deg);
    }
    10% {
        transform: rotate(1800deg);
    }
    12% {
        transform: rotate(2160deg);
    }
    14% {
        transform: rotate(2520deg);
    }
    16% {
        transform: rotate(2880deg);
    }
    18% {
        transform: rotate(3240deg);
    }
    20% {
        transform: rotate(3600deg);
    }
    25% {
        transform: rotate(3780deg);
    }
    30% {
        transform: rotate(3900deg);
    }
    35% {
        transform: rotate(3960deg);
    }
    40% {
        transform: rotate(3990deg);
    }
    45% {
        transform: rotate(4005deg);
    }
    50% {
        transform: rotate(4012deg);
    }
    52% {
        transform: rotate(4015deg);
    }
    54% {
        transform: rotate(4016deg);
    }
    56% {
        transform: rotate(4017deg);
    }
    58% {
        transform: rotate(4017.5deg);
    }
    60% {
        transform: rotate(4018deg);
    }
    62% {
        transform: rotate(4018deg);
    }
    64% {
        transform: rotate(4018deg);
    }
    66% {
        transform: rotate(4018deg);
    }
    68% {
        transform: rotate(4018deg);
    }
    70% {
        transform: rotate(4018deg);
    }
    72% {
        transform: rotate(4018deg);
    }
    74% {
        transform: rotate(4018deg);
    }
    76% {
        transform: rotate(4018deg);
    }
    78% {
        transform: rotate(4018deg);
    }
    80% {
        transform: rotate(4018deg);
    }
    82% {
        transform: rotate(4018deg);
    }
    84% {
        transform: rotate(4018deg);
    }
    86% {
        transform: rotate(4018deg);
    }
    88% {
        transform: rotate(4018deg);
    }
    90% {
        transform: rotate(4018deg);
    }
    92% {
        transform: rotate(4018deg);
    }
    94% {
        transform: rotate(4018deg);
    }
    96% {
        transform: rotate(4018deg);
    }
    98% {
        transform: rotate(4018deg);
    }
    100% {
        transform: rotate(4018deg);
    }
}

.wheel-segments text {
    pointer-events: none;
    user-select: none;
}

.gamification-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gamification-feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gamification-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.8) 0%, rgba(100, 116, 139, 0.6) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.gamification-feature-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gamification-feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.gamification-feature-item:hover::before {
    transform: scaleX(1);
}

.gamification-feature-item:hover::after {
    opacity: 1;
}

.gamification-feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
}

.gamification-feature-item:hover .gamification-feature-icon {
    transform: scale(1.15) rotate(-5deg);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.gamification-feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.gamification-feature-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Agency CTA - full page frame (index) */
.agency-cta-section {
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #000 0%, #061018 15%, #0a1929 40%, #0a1929 60%, #061018 85%, #000 100%);
    padding: 5.5rem 2rem;
    box-sizing: border-box;
}
.agency-cta-frame {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    border: none;
    border-radius: 0;
    padding: 2.5rem 2rem;
    box-sizing: border-box;
}
.agency-cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}
.agency-cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 0 2rem;
    line-height: 1.5;
}
.agency-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 56px;
    padding: 1.125rem 2.25rem !important;
    box-sizing: border-box;
    background: #fff !important;
    color: #0a0a0a !important;
    border: none !important;
    box-shadow: none !important;
}
.agency-cta-btn:hover {
    background: #f0f0f0 !important;
    color: #0a0a0a !important;
    border: none !important;
    box-shadow: none !important;
}

/* index.html / ai-marketing.html — κεντρική στοίχιση στα blocks «Έχεις agency;» και «Ξεκίνα μόνος σου» */
body.page-index .agency-cta-frame,
body.page-ai-marketing .agency-cta-frame,
body.page-loyalty .agency-cta-frame {
    align-items: center;
    text-align: center;
}
body.page-index .agency-cta-subtitle,
body.page-ai-marketing .agency-cta-subtitle,
body.page-loyalty .agency-cta-subtitle {
    margin-left: auto;
    margin-right: auto;
}

body.page-index .start-on-your-own-content,
body.page-ai-marketing .start-on-your-own-content,
body.page-loyalty .start-on-your-own-content {
    text-align: center;
}
body.page-index .start-on-your-own-cta,
body.page-ai-marketing .start-on-your-own-cta,
body.page-loyalty .start-on-your-own-cta {
    text-align: center;
}

/* UX: επαναλαμβανόμενα CTA strips + sticky bar (index) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Ίδια λογική με .agency-cta-section: μαλακές μεταβάσεις — μεγάλο ύψος ώστε να μη φαίνεται λεπτή λωρίδα */
.section-cta-strip {
    padding: clamp(4rem, 11vw, 7.5rem) 0;
    min-height: clamp(15rem, 28vh, 22rem);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    background: linear-gradient(
        180deg,
        #000 0%,
        #020608 6%,
        #061018 22%,
        #0a1929 38%,
        #0a1929 62%,
        #061018 78%,
        #020608 94%,
        #000 100%
    );
    border-top: none;
    border-bottom: none;
}

.section-cta-strip--accent {
    min-height: clamp(15rem, 28vh, 22rem);
    background: linear-gradient(
        180deg,
        #000 0%,
        #040d14 8%,
        #061018 28%,
        #0c1e2e 42%,
        #0c1e2e 58%,
        #061018 72%,
        #040d14 92%,
        #000 100%
    );
}

.section-cta-strip-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(1.35rem, 3vw, 2rem);
    max-width: 36rem;
    margin: 0 auto;
    width: 100%;
}

.section-cta-strip-copy {
    margin: 0;
    font-size: clamp(1.0625rem, 2.1vw, 1.2rem);
    line-height: 1.6;
    color: rgba(203, 213, 225, 0.9);
    max-width: 34rem;
}

.section-cta-strip-btn {
    min-height: 58px;
    padding: 1.125rem 2.5rem !important;
    box-sizing: border-box;
    font-size: 1.0625rem;
}

/* Ίδιο ύφος κουμπιού με agency-cta: λευκό πάνω στο σκούρο gradient */
body.page-index .section-cta-strip .btn-primary {
    background: #fff !important;
    color: #0a0a0a !important;
    border: none !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4) !important;
}

body.page-index .section-cta-strip .btn-primary:hover {
    background: #f0f0f0 !important;
    color: #0a0a0a !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45) !important;
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0));
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(4, 13, 20, 0.65) 28%,
        rgba(6, 16, 24, 0.92) 55%,
        #040d14 82%,
        #000 100%
    );
    border-top: 1px solid rgba(100, 116, 139, 0.18);
    align-items: stretch;
    justify-content: center;
    gap: 0.5rem;
    box-sizing: border-box;
}

.mobile-sticky-cta.is-visible {
    display: flex;
}

.mobile-sticky-cta__primary {
    flex: 1;
    min-height: 56px;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

body.page-index .mobile-sticky-cta__primary.btn-primary {
    background: #fff !important;
    color: #0a0a0a !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
}

body.page-index .mobile-sticky-cta__primary.btn-primary:hover {
    background: #f0f0f0 !important;
    color: #0a0a0a !important;
}

.mobile-sticky-cta__login {
    flex: 0 0 auto;
    min-height: 56px;
    min-width: 5.5rem;
    justify-content: center;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
}

@media (min-width: 769px) {
    .mobile-sticky-cta.is-visible {
        display: none !important;
    }
    body.page-index.has-mobile-sticky-cta {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 768px) {
    body.page-index.has-mobile-sticky-cta {
        padding-bottom: 5.75rem;
    }
}

/* Partners Section */
/* Agency Section */
.agency-section {
    background: var(--bg-darker);
    padding: 80px 0;
}

.agency-content {
    max-width: 1200px;
    margin: 0 auto;
}

.agency-central-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0 4rem;
    padding: 2rem;
}

.mac-window {
    background: #e8e8e8;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: fit-content;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.mac-window:hover {
    transform: scale(1.02);
}

.mac-window-titlebar {
    background: #e8e8e8;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d0d0d0;
}

.mac-window-traffic-lights {
    display: flex;
    gap: 8px;
}

.traffic-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.traffic-light-close {
    background: #ff5f57;
}

.traffic-light-minimize {
    background: #ffbd2e;
}

.traffic-light-maximize {
    background: #28ca42;
}

.mac-window-content {
    background: #fff;
    padding: 10px;
}

.agency-dashboard {
    width: fit-content;
    min-width: 100%;
    padding: 1.5rem;
    background: var(--bg-dark);
    overflow: visible;
}

.agency-dashboard::-webkit-scrollbar {
    width: 8px;
}

.agency-dashboard::-webkit-scrollbar-track {
    background: var(--bg-darker);
    border-radius: 4px;
}

.agency-dashboard::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    opacity: 0.5;
}

.agency-dashboard::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.dashboard-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.dashboard-summary {
    display: flex;
    gap: 2rem;
}

.summary-item {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.summary-item strong {
    color: var(--primary-color);
    font-weight: 700;
    margin-left: 0.5rem;
}

.dashboard-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.campaigns-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.campaigns-table thead {
    background: var(--bg-darker);
    position: sticky;
    top: 0;
    z-index: 10;
}

.campaigns-table th {
    padding: 1rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
}

.campaigns-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.campaigns-table tbody tr:hover {
    background: rgba(0, 255, 136, 0.05);
    border-left: 3px solid var(--primary-color);
}

.campaigns-table tbody tr:last-child {
    border-bottom: none;
}

.campaigns-table td {
    padding: 1rem;
    vertical-align: middle;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.campaign-item {
    display: table-row;
}

.campaign-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.platform-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.facebook-icon {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

.instagram-icon {
    background: rgba(228, 64, 95, 0.1);
    color: #E4405F;
}

.google-icon {
    background: rgba(66, 133, 244, 0.1);
    color: #4285F4;
}

.campaign-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.campaign-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.campaign-status {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
}

.campaign-status.active {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
}

.table-stat {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.table-stat-value {
    color: var(--primary-color);
    font-weight: 700;
}

.table-chart {
    width: 120px;
    height: 40px;
    background: rgba(0, 255, 136, 0.03);
    border-radius: 4px;
    padding: 0.25rem;
    overflow: hidden;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-svg polyline {
    filter: drop-shadow(0 1px 2px rgba(0, 255, 136, 0.3));
}

.table-chart .chart-svg {
    width: 100%;
    height: 100%;
}

.agency-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.agency-feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
}

.agency-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25);
}

.agency-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.agency-feature-item:hover .agency-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.agency-feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.agency-feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* CRM Section */
.crm-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.crm-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.crm-visual::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.crm-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.crm-dashboard:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 255, 136, 0.2);
}

.crm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.crm-dashboard-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.crm-stats {
    display: flex;
    gap: 1rem;
}

.crm-stat-item {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.crm-stat-item strong {
    color: var(--primary-color);
    font-weight: 700;
    margin-left: 0.5rem;
}

.crm-leads-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.crm-leads-list::-webkit-scrollbar {
    width: 6px;
}

.crm-leads-list::-webkit-scrollbar-track {
    background: var(--bg-darker);
    border-radius: 4px;
}

.crm-leads-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    opacity: 0.5;
}

.crm-leads-list::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}

.crm-lead-item {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    animation: slideInLead 0.4s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes slideInLead {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.crm-lead-item:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.crm-lead-item.new {
    border-left: 4px solid var(--primary-color);
    background: rgba(0, 255, 136, 0.08);
}

.crm-lead-source {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.75rem;
}

.crm-lead-source.google {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
}

.crm-lead-source.meta {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
    color: white;
}

.crm-lead-source.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #F77737 100%);
    color: white;
}

.crm-lead-info {
    flex: 1;
    min-width: 0;
}

.crm-lead-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.crm-lead-details {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.crm-lead-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: auto;
    white-space: nowrap;
}

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

.crm-feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.crm-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25);
}

.crm-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.crm-feature-item:hover .crm-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.crm-feature-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .crm-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .crm-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .crm-dashboard {
        padding: 1.5rem;
    }

    .crm-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .crm-stats {
        width: 100%;
        justify-content: space-between;
    }
}

/* Agency Tabs */
.agency-tabs-container {
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.agency-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0;
}

.agency-tab {
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: -2px;
}

.agency-tab:hover {
    color: var(--text-primary);
}

.agency-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.agency-tab svg {
    width: 20px;
    height: 20px;
}

.agency-tab-content {
    position: relative;
    min-height: 400px;
}

.agency-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.agency-tab-panel.active {
    display: block;
}

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

.agency-tab-feature {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: left;
}

.agency-tab-icon {
    width: 100px;
    height: 100px;
    margin: 0 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.agency-tab-feature:hover .agency-tab-icon {
    transform: scale(1.1);
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}

.agency-tab-feature h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agency-tab-feature p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
}

.agency-tab-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.agency-tab-features-list li {
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    position: relative;
    padding-left: 2.5rem;
}

.agency-tab-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0.75rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .agency-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .agency-tab {
        width: 100%;
        justify-content: flex-start;
        padding: 0.75rem 1rem;
    }
    
    .agency-tab-feature {
        padding: 2rem 1.5rem;
    }
    
    .agency-tab-feature h3 {
        font-size: 1.5rem;
    }
    
    .agency-tab-features-list {
        grid-template-columns: 1fr;
    }
}

/* Loyalty Analytics Section */
.loyalty-section {
    background: var(--bg-darker);
    padding: 100px 0;
    position: relative;
}

/* Ίδιο πλάτος με το επόμενο block (tablet στο ταμείο): .loyalty-tablet-till-content */
.loyalty-inner {
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.loyalty-header {
    text-align: center;
    margin-bottom: 4rem;
}

.loyalty-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.loyalty-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 1000px;
    margin: 0 auto 1.25rem;
    text-align: center;
}

@media (max-width: 768px) {
    body.page-loyalty .hero-wrapper .hero-clients {
        background: transparent;
    }
    body.page-loyalty .loyalty-title {
        font-size: clamp(1.4rem, 6.2vw, 2rem);
        line-height: 1.2;
        overflow-wrap: anywhere;
    }
    body.page-loyalty .loyalty-header {
        margin-bottom: 2.25rem;
    }
    body.page-loyalty .loyalty-section {
        padding: clamp(2.5rem, 8vw, 3.75rem) 0;
    }
}

.loyalty-graph-container {
    margin: 0 0 5rem;
    padding: 2rem 0;
    width: 100%;
}

.loyalty-graph-svg {
    width: 100%;
    height: auto;
}

.loyalty-line {
    filter: drop-shadow(0 0 8px rgba(125, 211, 252, 0.4));
}

.loyalty-node {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
}

.loyalty-analytics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    margin: 0;
}

.loyalty-analytic-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.loyalty-analytic-card:hover {
    border-color: rgba(125, 211, 252, 0.4);
    box-shadow: 0 8px 32px rgba(125, 211, 252, 0.08);
    transform: translateY(-3px);
}

.analytic-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.analytic-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.loyalty-radar-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.radar-svg {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.loyalty-bar-chart {
    padding: 1rem 0;
}

.loyalty-unified-store-graphic {
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.unified-store-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.bar-chart-svg {
    width: 100%;
    height: auto;
}

.loyalty-combo-graphic {
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loyalty-combo-graphic .combo-svg {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
}

.loyalty-sources-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.source-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(203, 213, 225, 0.08);
    border-radius: 8px;
    border-left: 3px solid #94a3b8;
    transition: all 0.3s ease;
}

.source-item:hover {
    background: rgba(203, 213, 225, 0.12);
    transform: translateX(5px);
}

.source-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: #94a3b8;
    min-width: 24px;
}

.source-icon {
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.source-info {
    flex: 1;
}

.source-domain {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.source-title {
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 500;
}

.loyalty-reports-graphic {
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reports-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.loyalty-citation-report {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.citation-entries {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.citation-entry {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(203, 213, 225, 0.08);
    border-radius: 8px;
}

.citation-icon {
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.citation-info {
    flex: 1;
}

.citation-url {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.citation-title {
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 500;
}

.top-brands {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.top-brands-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.brands-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.brand-item {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-rank {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 24px;
}

@media (max-width: 968px) {
    .loyalty-analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .loyalty-header {
        margin-bottom: 3rem;
    }
    
    .loyalty-graph-container {
        margin-bottom: 3rem;
    }
}

/* Physical Store Section */
/* How loyalty increases revenue */
.loyalty-revenue-section {
    background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 255, 136, 0.08), transparent 55%),
                radial-gradient(ellipse 60% 50% at 10% 80%, rgba(125, 211, 252, 0.07), transparent 50%),
                var(--bg-darker);
    padding: 5.5rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.loyalty-revenue-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.loyalty-revenue-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    animation: loyalty-revenue-orb-drift 12s ease-in-out infinite alternate;
}

.loyalty-revenue-orb--1 {
    width: 280px;
    height: 280px;
    top: -60px;
    right: 8%;
    background: rgba(0, 255, 136, 0.22);
}

.loyalty-revenue-orb--2 {
    width: 220px;
    height: 220px;
    bottom: 8%;
    left: 4%;
    background: rgba(125, 211, 252, 0.18);
    animation-delay: -4s;
}

.loyalty-revenue-grid-glow {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

@keyframes loyalty-revenue-orb-drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-18px, 22px) scale(1.08); }
}

.loyalty-revenue-stage {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.loyalty-revenue-header {
    max-width: none;
    margin: 0;
    text-align: left;
}

.loyalty-revenue-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(0, 255, 136, 0.35);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.08);
}

.loyalty-revenue-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.9);
    animation: loyalty-revenue-pulse 1.8s ease-in-out infinite;
}

.loyalty-revenue-header .loyalty-revenue-title,
.loyalty-revenue-header .section-title {
    margin-bottom: 1.15rem;
    font-size: clamp(1.75rem, 3.4vw, 2.65rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #f8fafc;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #f8fafc;
    background-clip: unset;
    text-align: left;
}

.loyalty-revenue-lead {
    margin: 0;
    max-width: 36rem;
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.loyalty-revenue-visual {
    position: relative;
}

.loyalty-revenue-panel {
    position: relative;
    padding: 1.35rem 1.35rem 1.15rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background:
        linear-gradient(160deg, rgba(15, 23, 42, 0.95), rgba(5, 5, 8, 0.92));
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(0, 255, 136, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.loyalty-revenue-panel::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.12);
    filter: blur(40px);
    pointer-events: none;
}

.loyalty-revenue-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.loyalty-revenue-panel-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #94a3b8;
}

.loyalty-revenue-panel-badge {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #020617;
    background: #00ff88;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.45);
}

.loyalty-revenue-metric {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.loyalty-revenue-metric-value {
    font-size: clamp(2.4rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #00ff88;
    text-shadow: 0 0 28px rgba(0, 255, 136, 0.35);
}

.loyalty-revenue-metric-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

.loyalty-revenue-chart {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.loyalty-revenue-line {
    stroke-dasharray: 520;
    stroke-dashoffset: 520;
}

.loyalty-revenue-section.is-active .loyalty-revenue-line {
    animation: loyalty-revenue-draw 2.4s ease forwards 0.2s;
}

.loyalty-revenue-area {
    opacity: 0;
}

.loyalty-revenue-section.is-active .loyalty-revenue-area {
    animation: loyalty-revenue-fade 1.2s ease forwards 1.2s;
}

.loyalty-revenue-bars .lr-bar {
    transform-origin: bottom;
    transform-box: fill-box;
    transform: scaleY(0.15);
}

.loyalty-revenue-section.is-active .loyalty-revenue-bars .lr-bar {
    animation: loyalty-revenue-bar 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.loyalty-revenue-section.is-active .loyalty-revenue-bars .lr-bar:nth-child(1) { animation-delay: 0.15s; }
.loyalty-revenue-section.is-active .loyalty-revenue-bars .lr-bar:nth-child(2) { animation-delay: 0.28s; }
.loyalty-revenue-section.is-active .loyalty-revenue-bars .lr-bar:nth-child(3) { animation-delay: 0.4s; }
.loyalty-revenue-section.is-active .loyalty-revenue-bars .lr-bar:nth-child(4) { animation-delay: 0.52s; }
.loyalty-revenue-section.is-active .loyalty-revenue-bars .lr-bar:nth-child(5) { animation-delay: 0.64s; }
.loyalty-revenue-section.is-active .loyalty-revenue-bars .lr-bar:nth-child(6) { animation-delay: 0.76s; }
.loyalty-revenue-section.is-active .loyalty-revenue-bars .lr-bar:nth-child(7) { animation-delay: 0.88s; }

.loyalty-revenue-dot-pulse {
    opacity: 0.7;
    transform-origin: center;
    transform-box: fill-box;
    animation: loyalty-revenue-pulse-ring 2s ease-out infinite;
}

.loyalty-revenue-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
    position: relative;
    z-index: 1;
}

.loyalty-revenue-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.75);
    font-size: 0.75rem;
    color: #cbd5e1;
}

.loyalty-revenue-chip strong {
    color: #00ff88;
    font-weight: 700;
}

@keyframes loyalty-revenue-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes loyalty-revenue-fade {
    to { opacity: 1; }
}

@keyframes loyalty-revenue-bar {
    to { transform: scaleY(1); }
}

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

@keyframes loyalty-revenue-pulse-ring {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(3.4); opacity: 0; }
}

.loyalty-revenue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.loyalty-revenue-card {
    position: relative;
    padding: 1.35rem 1.25rem 1.4rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.95), rgba(5, 5, 8, 0.92));
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(0, 255, 136, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
    transform: translateY(28px);
}
.loyalty-revenue-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -24%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.12);
    filter: blur(40px);
    pointer-events: none;
}

.loyalty-revenue-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.loyalty-revenue-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.35),
        0 0 28px rgba(0, 255, 136, 0.08);
}

.loyalty-revenue-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.loyalty-revenue-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 1.6rem;
    padding: 0 0.45rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #020617;
    background: linear-gradient(90deg, #7dd3fc, #00ff88);
}

.loyalty-revenue-stat,
.loyalty-revenue-card-badge {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #020617;
    background: #00ff88;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.45);
}
.loyalty-revenue-card-metric {
    position: relative;
    z-index: 1;
    margin: 0.15rem 0 0.1rem;
    font-size: clamp(2rem, 3.2vw, 2.55rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #00ff88;
    text-shadow: 0 0 28px rgba(0, 255, 136, 0.35);
}
.loyalty-revenue-card-kicker {
    position: relative;
    z-index: 1;
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    color: #94a3b8;
}
.loyalty-revenue-card-art {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 1rem;
}

.loyalty-revenue-card-title {
    margin: 0 0 0.7rem;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
    color: #f1f5f9;
}

.loyalty-revenue-card-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

@media (max-width: 1000px) {
    .loyalty-revenue-stage {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2.25rem;
    }
    .loyalty-revenue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .loyalty-revenue-section {
        padding: 3.5rem 0 3.25rem;
    }
    .loyalty-revenue-header {
        text-align: left;
    }
    .loyalty-revenue-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .loyalty-revenue-metric-value {
        font-size: 2.35rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .loyalty-revenue-orb,
    .loyalty-revenue-line,
    .loyalty-revenue-area,
    .loyalty-revenue-bars .lr-bar,
    .loyalty-revenue-dot-pulse,
    .loyalty-revenue-eyebrow::before {
        animation: none !important;
    }
    .loyalty-revenue-line { stroke-dashoffset: 0; }
    .loyalty-revenue-area { opacity: 1; }
    .loyalty-revenue-bars .lr-bar { transform: scaleY(1); }
    .loyalty-revenue-card {
        opacity: 1;
        transform: none;
    }
}

/* AI Marketing — menu feature sections */
.aim-feature-section {
    scroll-margin-top: 96px;
}

#ai-graphics,
#auto-ads,
#optimize-ads,
#budget-allocation,
#meta-google,
#reports,
#one-click,
#leads-crm {
    scroll-margin-top: 96px;
}

.aim-feature-section--alt {
    background: var(--bg-darker);
}

.aim-feature-section--dark {
    background: var(--bg-dark);
}

@media (min-width: 901px) {
    .aim-feature-inner--reverse {
        flex-direction: row-reverse;
    }
}

.monthly-reports-section--standalone {
    background: var(--bg-dark);
    padding: 4rem 0 4.5rem;
}

.monthly-reports-section--standalone .monthly-reports-inner {
    max-width: 100%;
}

.physical-store-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.physical-store-header .section-title {
    color: #ffffff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ffffff;
    background-clip: unset;
}

/* Loyalty tablet at till section */
.loyalty-tablet-till-section {
    background: var(--bg-dark);
    padding: 4rem 0;
}

.loyalty-tablet-till-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.75rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.loyalty-tablet-till-text {
    flex: 1;
    min-width: 280px;
    max-width: 560px;
}

.loyalty-tablet-till-title {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #f1f5f9 !important;
    background-clip: unset !important;
    color: #f1f5f9 !important;
}

.loyalty-tablet-till-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
    text-align: left;
}

.loyalty-tablet-till-steps-timeline {
    --loyalty-till-rail-w: 3.5rem;
    --loyalty-till-node: 2.65rem;
    --loyalty-till-pipe: 11px;
    /* Equal center-to-center distance between numbered steps */
    --loyalty-till-step-pitch: 6.5rem;
    --loyalty-till-glow: #ffffff;
    --loyalty-till-glow-rgb: 255, 255, 255;
    position: relative;
    display: grid;
    grid-template-rows: repeat(4, var(--loyalty-till-step-pitch));
    margin: 1.65rem 0 0;
    text-align: left;
}

/*
 * Stacking (same context as timeline — do NOT put z-index on .loyalty-till-step-rail
 * or .loyalty-till-step-card, or the orb will paint over the numbers):
 *   pipe line  z:0  <  orb  z:1  <  numbered circles  z:2
 */
.loyalty-till-orb {
    position: absolute;
    left: calc(var(--loyalty-till-rail-w) / 2);
    top: 0;
    z-index: 1;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    will-change: transform, opacity;
    background: #ffffff;
    box-shadow:
        0 0 10px 3px rgba(255, 255, 255, 0.55),
        0 0 16px 5px rgba(255, 255, 255, 0.35),
        0 0 22px 7px rgba(255, 255, 255, 0.2);
}

.loyalty-till-step-card {
    display: flex;
    align-items: stretch;
    gap: 0.75rem 1.15rem;
    margin: 0;
    padding: 0;
    min-height: 0;
    height: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
}

.loyalty-till-step-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--loyalty-till-rail-w);
    flex-shrink: 0;
    position: relative;
    /* no z-index: keeps num/orb/pipe in one stacking context */
}

/* Opaque circular badges — always above the traveling orb */
.loyalty-till-step-num {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
    width: var(--loyalty-till-node);
    height: var(--loyalty-till-node);
    min-width: var(--loyalty-till-node);
    min-height: var(--loyalty-till-node);
    border-radius: 50%;
    border: 2px solid rgba(148, 163, 184, 0.55);
    /* Solid fill so the white orb cannot show through the digits */
    background: #0a0a0f;
    background-color: #0a0a0f;
    font-size: clamp(0.88rem, 1.55vw, 1.05rem);
    font-weight: 800;
    line-height: 1;
    font-feature-settings: "tnum";
    letter-spacing: -0.02em;
    color: #64748b;
    transition:
        color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.45s ease,
        background-color 0.4s ease;
}

/* Continuous near-white tube between circles (under orb + badges) */
.loyalty-till-step-rail-line {
    width: var(--loyalty-till-pipe);
    flex: 1 1 auto;
    min-height: 1.25rem;
    margin-top: -8px;
    margin-bottom: -8px;
    background:
        linear-gradient(
            90deg,
            #94a3b8 0%,
            #e2e8f0 22%,
            #f8fafc 50%,
            #e2e8f0 78%,
            #94a3b8 100%
        );
    border-radius: 999px;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.55),
        0 0 0 1px rgba(148, 163, 184, 0.18);
    position: relative;
    z-index: 0;
    pointer-events: none;
    transition: box-shadow 0.45s ease, filter 0.45s ease;
}

.loyalty-till-step-card:last-child .loyalty-till-step-rail-line {
    display: none;
}

.loyalty-till-step-text {
    margin: 0;
    flex: 1;
    min-width: 0;
    align-self: flex-start;
    padding-top: calc((var(--loyalty-till-node) - 1.35em) / 2);
    padding-bottom: 0;
    font-size: clamp(1.02rem, 1.35vw, 1.15rem);
    line-height: 1.65;
    color: #ffffff;
    opacity: 1;
}

/* Lit circles as the orb advances (step text stays white) */
.loyalty-till-step-card.is-lit .loyalty-till-step-num {
    color: rgba(241, 245, 249, 0.92);
    border-color: rgba(148, 163, 184, 0.75);
    background: #0a0a0f;
    background-color: #0a0a0f;
}

/* White glow when the orb arrives (orb stays behind opaque circle) */
.loyalty-till-step-card.is-current .loyalty-till-step-num {
    color: #ffffff;
    border-color: var(--loyalty-till-glow);
    background: #0a0a0f;
    background-color: #0a0a0f;
    box-shadow:
        0 0 0 2px rgba(var(--loyalty-till-glow-rgb), 0.35),
        0 0 16px 4px rgba(var(--loyalty-till-glow-rgb), 0.55),
        0 0 28px 8px rgba(var(--loyalty-till-glow-rgb), 0.28);
}

@media (prefers-reduced-motion: reduce) {
    .loyalty-till-orb {
        display: none;
    }

    .loyalty-till-step-card.is-lit .loyalty-till-step-num,
    .loyalty-till-step-card .loyalty-till-step-num {
        color: rgba(241, 245, 249, 0.88);
        border-color: rgba(148, 163, 184, 0.65);
        background: #0a0a0f;
        background-color: #0a0a0f;
        box-shadow: none;
        transition: none;
    }

    .loyalty-tablet-till-steps-timeline > .loyalty-till-step-card:first-of-type .loyalty-till-step-num {
        color: #ffffff;
        border-color: #ffffff;
        background: #0a0a0f;
        background-color: #0a0a0f;
        box-shadow:
            0 0 0 2px rgba(255, 255, 255, 0.3),
            0 0 14px 3px rgba(255, 255, 255, 0.35);
    }

    .loyalty-till-step-rail-line {
        transition: none;
    }
}

/* Loyalty campaigns dashboard */
.loyalty-campaigns-section {
    background: var(--bg-dark);
    padding: 4rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.loyalty-campaigns-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.loyalty-campaigns-copy {
    flex: 1;
    min-width: 280px;
    max-width: 540px;
}

.loyalty-campaigns-copy .section-title {
    margin-bottom: 1rem;
    text-align: left;
}

.loyalty-campaigns-copy .physical-store-description {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    text-align: left;
}

.loyalty-campaigns-visual {
    flex: 1;
    min-width: 280px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.loyalty-campaigns-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.4));
}

@media (max-width: 900px) {
    .loyalty-campaigns-inner {
        flex-direction: column;
        text-align: left;
    }
    .loyalty-campaigns-copy .section-title,
    .loyalty-campaigns-copy .physical-store-description {
        text-align: left;
    }
    .loyalty-campaigns-copy {
        max-width: 100%;
    }
    .loyalty-campaigns-visual {
        max-width: 100%;
    }
}

/* Loyalty page — synergies (partners, vouchers); εναλλαγή με προηγούμενο section */
.loyalty-synergies-section {
    background: var(--bg-darker);
}

@media (min-width: 901px) {
    .loyalty-synergies-inner {
        flex-direction: row-reverse;
    }
}

/* Loyalty page — booking / gamification / mobile app */
.loyalty-booking-section {
    background: var(--bg-dark);
}

.loyalty-gamification-section {
    background: var(--bg-darker);
}

.loyalty-mobile-app-section {
    background: var(--bg-dark);
}

@media (min-width: 901px) {
    .loyalty-gamification-inner {
        flex-direction: row-reverse;
    }
}

.loyalty-feature-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loyalty-feature-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    display: block;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.4));
}

.loyalty-tablet-till-visual {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loyalty-tablet-till-image {
    max-width: 100%;
    width: 440px;
    min-width: 280px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

.loyalty-till-benefits {
    background: var(--bg-dark);
    padding: 1rem 0 2.75rem;
}

.loyalty-till-benefits-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.loyalty-till-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    flex: 1 1 0;
    min-width: 140px;
    padding: 1.15rem 1rem;
    border: none;
    border-radius: 0;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.loyalty-till-benefit-item:last-child {
    border-right: none;
}

.loyalty-till-benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.loyalty-till-benefit-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

.loyalty-till-benefit-icon svg path {
    stroke-width: 1.5;
}

.loyalty-till-benefit-title {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
}

@media (max-width: 768px) {
    .loyalty-tablet-till-content {
        flex-direction: column;
        text-align: left;
        max-width: 100%;
    }
    .loyalty-tablet-till-text {
        max-width: 100%;
    }
    .loyalty-tablet-till-title,
    .loyalty-tablet-till-description {
        text-align: left;
    }
    .loyalty-tablet-till-steps-timeline {
        max-width: 36rem;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
    .loyalty-till-step-text {
        text-align: left;
    }
    .loyalty-till-benefits-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border: none;
        background: transparent;
    }
    .loyalty-till-benefit-item {
        min-width: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.22);
        border-bottom: none;
    }
    .loyalty-till-benefit-item:nth-child(2n) {
        border-right: none;
    }
    .loyalty-till-benefit-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }
}

@media (max-width: 520px) {
    .loyalty-till-benefits-row {
        display: flex;
        flex-direction: column;
    }
    .loyalty-till-benefits-row .loyalty-till-benefit-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }
    .loyalty-till-benefits-row .loyalty-till-benefit-item:last-child {
        border-bottom: none;
    }
}

.physical-store-content {
    max-width: 1000px;
    margin: 0 auto;
}

.physical-store-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: left;
}

.physical-store-header {
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
}

.physical-store-header .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.physical-store-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: left;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.physical-store-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.radius-animation-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radius-animation-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
}

.radius-circle {
    animation: expandRadius 6s ease-in-out infinite;
    transform-origin: 250px 250px;
}

.radius-1 {
    animation-delay: 0s;
}

.radius-2 {
    animation-delay: 1s;
}

.radius-3 {
    animation-delay: 2s;
}

.radius-4 {
    animation-delay: 3s;
}

@keyframes expandRadius {
    0% {
        r: 50;
        opacity: 0.2;
    }
    50% {
        r: 220;
        opacity: 0.05;
    }
    100% {
        r: 50;
        opacity: 0.2;
    }
}

.store-center-group {
    position: relative;
    z-index: 10;
}

.store-center {
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.8));
}

.store-label {
    pointer-events: none;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}

.person {
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.9));
    transition: transform 0.1s ease-out;
    transform-origin: center;
}

/* Section αντί των 4 κουτιών: Τοποθέτησε τη ταμπλέτα loyalty στο ταμείο */
.physical-store-tablet-cta {
    margin-top: 2.5rem;
    padding: 1.75rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    text-align: left;
}
.physical-store-tablet-cta-text {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.physical-store-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.physical-store-feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
}

.physical-store-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25);
}

.physical-store-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.physical-store-feature-item:hover .physical-store-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.physical-store-feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.physical-store-feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Automation Ads Section */
.automation-ads-section {
    background: var(--bg-dark);
    padding: 80px 0 2rem 0;
}

.automation-ads-section .section-header {
    margin-bottom: clamp(4rem, 7vw, 6.5rem);
    text-align: center;
}

.automation-ads-section .section-header .section-title {
    margin-bottom: 0.5rem;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    text-align: center;
}

.automation-ads-section .section-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 auto;
    text-align: center;
    max-width: min(900px, 92vw);
}

.automation-ads-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.automation-ads-content {
    flex: 0 0 auto;
    width: 100%;
    max-width: 480px;
}

.automation-ads-text {
    flex: 1;
    min-width: 280px;
    max-width: 560px;
    text-align: left;
}

.automation-ads-text .section-title {
    margin: 0 0 1rem;
    text-align: left;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    line-height: 1.25;
}

.automation-ads-text .section-subtitle {
    margin: 0;
    text-align: left;
    font-size: 1.0625rem;
    line-height: 1.65;
    max-width: none;
}

.automation-ads-content .mac-window {
    background: #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    margin: 0;
    transform: scale(0.88);
    transform-origin: top left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.automation-ads-content .mac-window-titlebar {
    background: #e8e8e8;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d0d0d0;
}

.automation-ads-content .mac-window-content {
    background: var(--bg-dark);
    padding: 2rem;
    min-height: 420px;
    height: auto;
    position: relative;
}

.ai-loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    width: 100%;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.ai-loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.ai-loading-icon {
    color: var(--primary-color);
    animation: aiLoadingSpin 2s linear infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
}

/* Automation ads: modern loading spinner */
.automation-ads-section .ai-loading-spinner {
    width: 48px;
    height: 48px;
    position: relative;
}
.automation-ads-section .ai-loading-spinner-ring {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: #fff;
    border-radius: 50%;
    animation: aiLoadingSpin 0.9s linear infinite;
}
.automation-ads-section .ai-loading-text {
    gap: 0.75rem;
}
.automation-ads-section .ai-loading-status {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}
.automation-ads-section .url-input-container {
    margin-bottom: 1.5rem;
    gap: 0.5rem;
    max-width: 100%;
}
.automation-ads-section .url-input,
.automation-ads-section .url-input:focus {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border-width: 1px;
    border-radius: 8px;
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.12);
}
.automation-ads-section .auto-click-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-width: 1px;
    border-radius: 8px;
    white-space: nowrap;
    background: #fff !important;
    color: #0f172a !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    box-shadow: none !important;
}
.automation-ads-section .auto-click-btn:disabled {
    background: rgba(255, 255, 255, 0.85) !important;
    color: #64748b !important;
}
.automation-ads-section .auto-click-btn:active,
.automation-ads-section .auto-click-btn.auto-clicking {
    background: #e2e8f0 !important;
    color: #0f172a !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: none !important;
}
.automation-ads-section .ad-post:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

@media (max-width: 900px) {
    .automation-ads-layout {
        flex-direction: column;
        align-items: center;
    }
    .automation-ads-content {
        max-width: 100%;
    }
    .automation-ads-content .mac-window {
        transform: scale(0.82);
        transform-origin: center;
        margin: 0 auto;
    }
}

@keyframes aiLoadingSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.ai-loading-pulse {
    animation: aiLoadingPulse 1.5s ease-in-out infinite;
}

@keyframes aiLoadingPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.ai-loading-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ai-loading-label {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
}

.ai-loading-status {
    font-size: 1rem;
    color: var(--text-secondary);
    animation: aiLoadingTextPulse 2s ease-in-out infinite;
}

@keyframes aiLoadingTextPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.url-input-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 100%;
}

.url-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: not-allowed;
}

.url-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.url-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.url-input[readonly] {
    background: var(--bg-darker);
    opacity: 0.8;
}

.auto-click-btn {
    white-space: nowrap;
    padding: 1rem 2rem;
    position: relative;
    transition: all 0.2s ease;
    background: transparent !important;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: not-allowed;
}

.auto-click-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.auto-click-btn:active,
.auto-click-btn.auto-clicking {
    transform: scale(0.95);
    background: var(--primary-color) !important;
    color: #000 !important;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

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

.ads-preview-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Automation ads: 2 Instagram-style posts, compact height */
.automation-ads-section .ads-preview-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 1rem;
}
.automation-ads-section .ad-post-instagram {
    max-width: 220px;
    width: 100%;
    min-width: 0;
    margin: 0 auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #1a1a24;
}
.automation-ads-section .ig-post-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.6rem;
}
.automation-ads-section .ig-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    flex-shrink: 0;
}
.automation-ads-section .ig-username {
    flex: 1;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}
.automation-ads-section .ad-image-instagram {
    height: 118px;
    position: relative;
    overflow: hidden;
}
.automation-ads-section .ad-image-instagram svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.automation-ads-section .ig-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.3rem 0.6rem 0.1rem;
}
.automation-ads-section .ig-icon {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1;
}
.automation-ads-section .ad-content-instagram {
    padding: 0.25rem 0.6rem 0.55rem;
}
.automation-ads-section .ig-caption {
    font-size: 0.68rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.automation-ads-section .ad-post-instagram:hover {
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
@media (max-width: 520px) {
    .automation-ads-section .ads-preview-container {
        grid-template-columns: 1fr;
    }
}

.ad-post {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: popupEffect 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    transform: scale(0.5) translateY(50px);
}

@keyframes popupEffect {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
    }
    50% {
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.ad-post:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25);
}

.ad-image-placeholder {
    width: 100%;
    height: 250px;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ad-image-placeholder svg {
    width: 100%;
    height: 100%;
}

.ad-content {
    padding: 1.5rem;
}

.ad-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.ad-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
}

/* Eshops Section */
.eshops-section {
    background: var(--bg-darker);
    padding: 80px 0;
}
.eshops-section .section-title {
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    background-clip: unset;
}

/* Nested / stacked under marketing feature group (after AI Watch) */
.eshops-section--in-marketing {
    background: var(--bg-dark);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    overflow: visible;
}

.automation-ads-section .eshops-section--in-marketing {
    background: transparent;
    padding: clamp(3rem, 6vw, 4.5rem) 0 0;
}

/* Server-side conversions — κείμενο + illustration στα πλάγια */
.server-side-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}
.server-side-copy {
    flex: 1;
    min-width: 280px;
    max-width: 560px;
    text-align: left;
}
.server-side-copy .section-header {
    max-width: none;
    margin: 0;
    text-align: left;
}
.server-side-copy .section-title {
    margin: 0 0 1rem;
    text-align: left;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    line-height: 1.25;
}
.server-side-copy .section-subtitle {
    font-size: 1.0625rem;
    line-height: 1.65;
    margin: 0;
    text-align: left;
    max-width: none;
}
.server-side-visual {
    flex: 1;
    min-width: 260px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}
.server-side-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.35));
}
@media (max-width: 900px) {
    .server-side-inner {
        flex-direction: column;
        text-align: left;
    }
    .server-side-copy .section-header,
    .server-side-copy .section-title,
    .server-side-copy .section-subtitle {
        text-align: left;
    }
    .server-side-copy {
        max-width: 100%;
    }
    .server-side-visual {
        max-width: 100%;
    }
}

.eshops-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

/* Eshops μόνο κουτάκια (χωρίς γραφικό) */
.eshops-content.eshops-boxes {
    display: block;
    margin-top: 2rem;
}
.eshops-content.eshops-boxes .eshops-features-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0;
}
.eshops-content.eshops-boxes .eshops-feature-text-item.eshops-box {
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 1.75rem;
    background: var(--bg-card);
    transition: all 0.3s ease;
}
.eshops-content.eshops-boxes .eshops-feature-text-item.eshops-box:hover {
    padding-left: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.eshop-integration-visual {
    flex: 1;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eshop-feature-left {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    justify-content: flex-end;
}

.eshop-feature-left .eshops-feature-item,
.eshop-feature-right .eshops-feature-item {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 50px 50px 50px 10px;
    padding: 2rem;
    position: relative;
    max-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.08);
    border: none;
}

.eshop-feature-right .eshops-feature-item {
    border-radius: 50px 50px 10px 50px;
}

.eshop-feature-left .eshops-feature-item::before,
.eshop-feature-right .eshops-feature-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(0, 255, 136, 0.1);
    border: none;
    border-radius: 50%;
    opacity: 0.4;
}

.eshop-feature-left .eshops-feature-item::before {
    right: -10px;
    top: 30px;
}

.eshop-feature-right .eshops-feature-item::before {
    left: -10px;
    top: 30px;
}

.eshop-feature-left .eshops-feature-item::after,
.eshop-feature-right .eshops-feature-item::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(0, 255, 136, 0.08);
    border: none;
    border-radius: 50%;
    opacity: 0.3;
}

.eshop-feature-left .eshops-feature-item::after {
    right: -5px;
    top: 60px;
}

.eshop-feature-right .eshops-feature-item::after {
    left: -5px;
    top: 60px;
}

.eshop-center-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.eshop-feature-right {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    justify-content: flex-start;
}

.eshop-feature-bottom {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.eshop-platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    width: 100%;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    min-width: 150px;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.connection-line {
    position: absolute;
    bottom: -2rem;
    width: 3px;
    height: 2rem;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
    animation: pulseLine 2s ease-in-out infinite;
}

@keyframes pulseLine {
    0%, 100% {
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

.ai-plugin-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
    position: relative;
    z-index: 10;
}

.plugin-icon-wrapper {
    animation: float 3s ease-in-out infinite;
}

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

.plugin-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.plugin-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.output-platforms {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    width: 100%;
}

.output-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    min-width: 150px;
}

.output-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.google-card:hover {
    border-color: #4285F4;
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
}

.meta-card:hover {
    border-color: #1877F2;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.connection-line-output {
    position: absolute;
    top: -2rem;
    width: 3px;
    height: 2rem;
    background: linear-gradient(180deg, transparent 0%, var(--primary-color) 100%);
    animation: pulseLine 2s ease-in-out infinite;
}

.platform-icons-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.eshops-features-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
}

.eshops-feature-text-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.eshops-feature-text-item:last-child {
    border-bottom: none;
}

.eshops-feature-text-item:hover {
    padding-left: 1rem;
}

.eshops-feature-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    color: var(--primary-color);
    flex-shrink: 0;
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

.eshops-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
}

.eshops-feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    padding-left: 0;
}

.ai-plugin-visualization {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.ai-plugin-svg {
    width: 100%;
    height: auto;
    min-height: 400px;
}

.data-pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

.data-packet {
    filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.8));
}

.flow-path {
    stroke-dasharray: 10, 5;
    animation: flowAnimation 2s linear infinite;
}

@keyframes flowAnimation {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 15;
    }
}

.ai-plugin-core {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
    }
}

.eshops-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.eshops-feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
}

.eshops-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25);
}

.eshops-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.eshops-feature-item:hover .eshops-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.eshops-feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.eshops-feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Partnerships Section */
.partnerships-section {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.partnerships-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.partnerships-text {
    margin-bottom: 2.5rem;
}

.partnerships-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0;
}

.partnerships-cta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.partners {
    background: var(--bg-dark);
}
.partners .partners-title,
.partners .section-title.partners-title {
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    background-clip: unset;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    background: transparent;
}

.partner-logo {
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 100px;
    min-width: 160px;
    min-height: 100px;
    transition: all 0.3s;
    box-shadow: none !important;
}

.partner-logo:hover {
    transform: translateY(-5px);
    background: transparent !important;
    box-shadow: none !important;
}

.logo-placeholder {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-align: center;
}

.partner-logo-img {
    width: 140px;
    height: 80px;
    object-fit: contain;
    object-position: center;
    filter: invert(1) brightness(2) contrast(1.5);
    transition: filter 0.3s ease;
    background: transparent;
}

.partner-logo:hover .partner-logo-img {
    filter: invert(1) brightness(2.2) contrast(1.7);
}

.partners-footer {
    text-align: left;
    font-size: 1rem;
    color: var(--text-secondary);
    opacity: 0.9;
    margin-top: 2rem;
    margin-bottom: 0;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-darker);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.pricing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: pricingOrbFloat 18s ease-in-out infinite;
}

.pricing-orb.orb-1 {
    width: 450px;
    height: 450px;
    background: var(--gradient-1);
    top: -200px;
    left: -150px;
    animation-delay: 0s;
}

.pricing-orb.orb-2 {
    width: 380px;
    height: 380px;
    background: var(--gradient-2);
    bottom: -120px;
    right: -100px;
    animation-delay: 7s;
}

@keyframes pricingOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.25);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card-featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.pricing-card-featured::before {
    transform: scaleX(1);
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-1);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* Start On Your Own Section */
.start-on-your-own-section {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.start-on-your-own-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.start-on-your-own-content .section-title {
    margin-bottom: 1rem;
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    background-clip: unset;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.start-on-your-own-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
    margin-bottom: 0;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.start-on-your-own-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.35rem 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;
    text-align: center;
}

.start-on-your-own-tier-title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.start-on-your-own-tier-price {
    margin: 0 0 1rem;
    font-size: clamp(1.3rem, 2.6vw, 1.55rem);
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: -0.02em;
}

.start-on-your-own-features {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    text-align: center;
}

.start-on-your-own-features li {
    position: relative;
    padding-left: 0;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #94a3b8;
    letter-spacing: -0.01em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.45rem;
    max-width: 100%;
    text-align: center;
}

.start-on-your-own-features li::before {
    content: "";
    position: static;
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    margin-top: 0.5em;
    border-radius: 50%;
    background: #64748b;
}

@media (max-width: 520px) {
    .start-on-your-own-tiers {
        grid-template-columns: 1fr;
    }
}

.start-on-your-own-text {
    margin-bottom: 2rem;
}

.start-on-your-own-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.start-on-your-own-section .start-on-your-own-description strong {
    color: #cbd5e1;
    font-weight: 700;
    font-size: 1.25rem;
}

.start-on-your-own-section .start-text-link {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.start-on-your-own-section .start-text-link:hover {
    color: #cbd5e1;
    border-bottom-color: #94a3b8;
}

.start-on-your-own-tier .start-on-your-own-cta {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.start-on-your-own-section .start-on-your-own-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    max-width: 14rem;
    padding: 0.7rem 1.15rem;
    font-size: 0.95rem;
    background: #fff !important;
    color: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: none !important;
}
.start-on-your-own-section .start-on-your-own-cta .btn-primary:hover {
    background: #e2e8f0 !important;
    color: #0f172a !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

@media (max-width: 768px) {
    .start-on-your-own-section {
        padding: 60px 0;
    }
    
    .start-on-your-own-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* Contact page — phone, HQ, map */
.contact-details-section {
    background: var(--bg-dark);
    padding: clamp(3rem, 6vw, 5rem) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Contact page only — περισσότερο κενό ανάμεσα σε τίτλο, τοποθεσίες και φόρμα */
body.page-contact .hero-wrapper.hero-index-mac .hero.contact-page-hero {
    padding-top: clamp(4rem, 10vw, 7.5rem) !important;
    padding-bottom: clamp(3.5rem, 7vw, 6rem) !important;
    min-height: 0 !important;
}

body.page-contact .hero.contact-page-hero .hero-content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 42rem;
}

body.page-contact .hero.contact-page-hero .hero-title {
    margin: 0;
    line-height: 1.15;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    white-space: normal;
}

body.page-contact .contact-details-section {
    padding-top: clamp(4rem, 8vw, 6.5rem);
    padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

body.page-contact .contact-details-section-title {
    margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

body.page-contact .contact-details-grid {
    gap: clamp(2.25rem, 5vw, 3.25rem);
}

body.page-contact .cta-section {
    padding-top: clamp(5rem, 10vw, 7.5rem);
    padding-bottom: clamp(5rem, 10vw, 7.5rem);
}

/* Partners program (affiliate) — partners.html */
.affiliate-program-section {
    background: var(--bg-dark);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(4.5rem, 9vw, 6rem);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

body.page-partners .affiliate-program-section {
    padding-top: clamp(4rem, 8vw, 6.5rem);
    padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

body.page-partners .partners-hero-tagline {
    max-width: 36rem;
    margin: 1rem auto 0;
    text-align: center;
    font-size: clamp(1.05rem, 2.4vw, 1.25rem);
    line-height: 1.55;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: -0.01em;
}

.affiliate-program-lead {
    max-width: 42rem;
    margin: 0 auto 1.25rem;
    text-align: center;
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    line-height: 1.65;
    color: var(--text-secondary);
}

.affiliate-program-highlight {
    text-align: center;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #7dd3fc;
    margin: 0 auto 2.5rem;
}

.affiliate-program-section-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-primary);
}

.affiliate-program-steps {
    display: grid;
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
    .affiliate-program-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.affiliate-program-card {
    position: relative;
    padding: 1.5rem 1.35rem 1.5rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: left;
}

.affiliate-program-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    background: linear-gradient(135deg, #7dd3fc, #a5b4fc);
    border-radius: 8px;
}

.affiliate-program-card-title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.affiliate-program-card-text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.affiliate-program-cta {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.affiliate-program-cta-copy {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.affiliate-program-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Ro Stores — stores.html */
body.page-stores .hero-wrapper .hero.hero-corporate .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    justify-items: center;
    text-align: center;
    max-width: min(1040px, 94vw);
    margin: 0 auto;
}

@media (min-width: 900px) {
    body.page-stores .hero-wrapper .hero.hero-corporate .hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(2rem, 4vw, 3rem);
        align-items: center;
    }
}

body.page-stores .hero-wrapper .hero.hero-corporate .hero-content {
    text-align: center;
    justify-self: center;
    width: 100%;
    max-width: min(480px, 100%);
}

@media (min-width: 900px) {
    body.page-stores .hero-wrapper .hero.hero-corporate .hero-content {
        grid-column: 1;
        justify-self: center;
        align-self: center;
    }
}

body.page-stores .stores-hero-tagline {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

body.page-stores .ro-stores-hero-badge {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9999px;
}

body.page-stores .ro-stores-hero-visual {
    width: 100%;
    max-width: 440px;
    justify-self: center;
}

@media (min-width: 900px) {
    body.page-stores .ro-stores-hero-visual {
        grid-column: 2;
        justify-self: center;
        align-self: center;
        max-width: 100%;
    }
}

.ro-stores-photo-frame {
    position: relative;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111118;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.ro-stores-photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
}

.ro-stores-photo-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    vertical-align: middle;
}

.ro-stores-photo-frame--hero img {
    aspect-ratio: 4 / 3;
}

.ro-stores-photo-frame--feature img {
    aspect-ratio: 3 / 2;
}

.ro-stores-photo-hud {
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
}

.ro-stores-hud-chip {
    padding: 0.35rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #f1f5f9;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    backdrop-filter: blur(8px);
}

.ro-stores-hud-chip--accent {
    color: #cbd5e1;
    border-color: rgba(148, 163, 184, 0.35);
}

.ro-stores-intro-dash {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    margin: 0;
    padding: 0.75rem 0.85rem;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.ro-stores-intro-dash-head {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #e2e8f0;
}

.ro-stores-intro-dash-head img {
    width: 18px;
    height: 18px;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 4px;
}

.ro-stores-intro-dash-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.ro-stores-intro-dash-row div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.ro-stores-intro-dash-row strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -0.02em;
}

.ro-stores-intro-dash-row span {
    font-size: 0.68rem;
    color: #94a3b8;
}

.ro-stores-section {
    background: var(--bg-dark);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
    border-top: 1px solid var(--border-color);
}

body.page-stores .stores-hero-tagline {
    max-width: 40rem;
    margin: 1rem auto 0;
    font-size: clamp(1.05rem, 2.4vw, 1.3rem);
    line-height: 1.55;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
}

.ro-stores-intro-split {
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

@media (min-width: 900px) {
    .ro-stores-intro-split {
        grid-template-columns: 1fr 1fr;
    }
}

.ro-stores-section-title--left,
.ro-stores-lead--left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.ro-stores-panel {
    position: relative;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    overflow: hidden;
    min-height: 0;
}

.ro-stores-intro-graphic {
    padding: clamp(0.75rem, 2vw, 1.25rem);
}

.ro-stores-intro-svg {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.ro-stores-compare {
    display: grid;
    gap: 1.25rem;
    align-items: stretch;
    max-width: 880px;
    margin: 0 auto clamp(3.5rem, 7vw, 5rem);
}

@media (min-width: 768px) {
    .ro-stores-compare {
        grid-template-columns: 1fr auto 1fr;
        gap: 1rem;
    }
}

.ro-stores-compare-card {
    padding: 1.35rem 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    text-align: center;
}

.ro-stores-compare-card--ro {
    border-color: rgba(148, 163, 184, 0.35);
    background: var(--bg-card);
}

.ro-stores-compare-label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.ro-stores-compare-label--ro {
    color: #e2e8f0;
}

.ro-stores-compare-photo {
    position: relative;
    margin: 0 auto 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ro-stores-compare-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.ro-stores-compare-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

.ro-stores-compare-photo--ro {
    border-color: rgba(148, 163, 184, 0.25);
}

.ro-stores-compare-live {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    z-index: 1;
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
}

.ro-stores-compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #94a3b8;
    opacity: 0.9;
}

.ro-stores-compare-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.ro-stores-compare-list li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.4rem;
}

.ro-stores-compare-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.35);
}

.ro-stores-compare-list--ro li::before {
    content: '✓';
    color: #94a3b8;
    font-size: 0.75rem;
}

.ro-stores-flow {
    position: relative;
    display: grid;
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto clamp(3.5rem, 7vw, 5rem);
}

@media (min-width: 768px) {
    .ro-stores-flow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
    .ro-stores-flow-line {
        position: absolute;
        top: 52px;
        left: 12%;
        right: 12%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.35), transparent);
        pointer-events: none;
    }
}

.ro-stores-step-card--visual {
    text-align: center;
}

.ro-stores-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 0.65rem;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.ro-stores-step-icon svg {
    width: 26px;
    height: 26px;
}

.ro-stores-step-card--visual .ro-stores-step-num {
    margin: 0 auto 0.65rem;
}

.ro-stores-step-card--visual .ro-stores-step-title,
.ro-stores-step-card--visual .ro-stores-step-text {
    text-align: center;
}

.ro-stores-feature-rows {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 3.5rem);
    max-width: 1000px;
    margin: 0 auto clamp(3rem, 6vw, 4rem);
}

.ro-stores-feature-row {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: center;
}

@media (min-width: 768px) {
    .ro-stores-feature-row {
        grid-template-columns: 1fr 1fr;
    }
    .ro-stores-feature-row--reverse .ro-stores-feature-mock {
        order: 2;
    }
    .ro-stores-feature-row--reverse .ro-stores-feature-copy {
        order: 1;
    }
}

.ro-stores-feature-mock {
    width: 100%;
}

.ro-stores-device-frame {
    margin: 0 auto;
    max-width: 380px;
    padding: 0.65rem;
    background: #14141c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.ro-stores-device-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.ro-stores-device-caption {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    line-height: 1.4;
    color: #cbd5e1;
}

.ro-stores-device-caption-ok {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
}

.ro-stores-photo-tag {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    z-index: 1;
    margin: 0;
    padding: 0.4rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #f1f5f9;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.ro-stores-optin-scene {
    position: relative;
    margin: 0 auto;
    max-width: 420px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.ro-stores-optin-scene::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.ro-stores-optin-scene-bg {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.ro-stores-optin-kiosk {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    width: min(48%, 200px);
    padding: 0.45rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    backdrop-filter: blur(8px);
}

.ro-stores-optin-kiosk img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.ro-stores-optin-kiosk-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.ro-stores-optin-timer {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: -0.02em;
}

.ro-stores-optin-label {
    font-size: 0.62rem;
    font-weight: 600;
    color: #94a3b8;
    text-align: right;
}

.ro-stores-reports-graphic {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.ro-stores-reports-svg {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.ro-stores-feature-copy .ro-stores-feature-title {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    margin-bottom: 0.65rem;
}

.ro-stores-feature-copy .ro-stores-feature-desc {
    font-size: 1rem;
    line-height: 1.65;
}

.ro-stores-section-title {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 1rem;
    color: var(--text-primary);
}

.ro-stores-lead,
.ro-stores-model-lead {
    margin: 0 auto 2rem;
    max-width: 42rem;
    text-align: center;
    font-size: clamp(1.02rem, 2.1vw, 1.15rem);
    line-height: 1.65;
    color: var(--text-secondary);
}

.ro-stores-model-lead {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.ro-stores-steps {
    display: grid;
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto clamp(3rem, 6vw, 4rem);
}

@media (min-width: 768px) {
    .ro-stores-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.ro-stores-step-card {
    padding: 1.5rem 1.35rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: left;
}

.ro-stores-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #f8fafc;
    background: rgba(148, 163, 184, 0.2);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 8px;
}

.ro-stores-step-title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.ro-stores-step-text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.ro-stores-features-heading {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.ro-stores-features-grid {
    display: grid;
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto clamp(3rem, 6vw, 4rem);
}

@media (min-width: 600px) {
    .ro-stores-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.ro-stores-feature-card {
    padding: 1.5rem 1.35rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: left;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.ro-stores-feature-card:hover {
    border-color: rgba(148, 163, 184, 0.35);
    transform: translateY(-2px);
}

.ro-stores-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.ro-stores-feature-title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.ro-stores-feature-desc {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.ro-stores-cta {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1.35rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.ro-stores-cta-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 700;
    color: var(--text-primary);
}

.ro-stores-cta-text {
    margin: 0 0 1.25rem;
    font-size: 1.02rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.ro-stores-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.contact-details-section-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 2rem;
    text-align: center;
}

.contact-details-grid {
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.5rem);
    align-items: start;
}

@media (min-width: 900px) {
    .contact-details-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
        align-items: stretch;
    }
}

.contact-details-info {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.contact-detail-block {
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin: 0 0 0.5rem;
}

.contact-phone-link {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-phone-link:hover {
    color: #7dd3fc;
}

.contact-address {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.contact-detail-block--offices {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-office {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.contact-office:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.contact-office-country {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.contact-office-flag {
    font-size: 1.35rem;
    line-height: 1;
    flex-shrink: 0;
}

.contact-map-wrap {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    min-height: 280px;
    aspect-ratio: 16 / 10;
}

/* Dark-styled embedded map (matches site palette) */
.contact-map-wrap--dark {
    background: #0f172a;
    border-color: rgba(148, 163, 184, 0.2);
}

.contact-map-wrap--dark .contact-map-iframe {
    filter: grayscale(100%) invert(92%) hue-rotate(180deg) brightness(0.85) contrast(1.05);
    transform: scale(1.002);
}

@supports not (filter: invert(1)) {
    .contact-map-wrap--dark .contact-map-iframe {
        filter: none;
        opacity: 0.92;
    }
}

.contact-map-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* CTA Section */
.cta-section {
    background: var(--bg-darker);
    padding: 80px 0;
}

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

.cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 auto 2rem;
    max-width: 38rem;
    line-height: 1.7;
    font-weight: 400;
}

.cta-lead-frame {
    position: absolute;
    width: 0;
    height: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.cta-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    text-align: left;
}

.cta-form input {
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.cta-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}
.cta-section .cta-form .btn-primary {
    background: #fff !important;
    color: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: none !important;
}
.cta-section .cta-form .btn-primary:hover {
    background: #e2e8f0 !important;
    color: #0f172a !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.cta-form input::placeholder {
    color: var(--text-muted);
}

.cta-form-status {
    margin: 0.25rem 0 0;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

.cta-form-status[hidden] {
    display: none;
}

.cta-form-status--pending {
    color: #e2e8f0;
    background: rgba(148, 163, 184, 0.16);
    border: 1px solid rgba(148, 163, 184, 0.28);
}

.cta-form-status--success {
    color: #ecfdf5;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(52, 211, 153, 0.45);
}

.cta-form-status--error {
    color: #fef2f2;
    background: rgba(239, 68, 68, 0.16);
    border: 1px solid rgba(248, 113, 113, 0.4);
}

body.page-corp-simple .corp-cta-section .cta-form-status--pending {
    color: #e2e8f0;
}


/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 50px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    max-width: 300px;
}
.footer .logo-text {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    background-clip: unset;
    color: #fff;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.875rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    min-width: 0;
}

.footer-contact-line {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.75rem;
}

.footer-contact-label {
    color: var(--text-muted);
    font-weight: 600;
}

.footer-contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: #cbd5e1;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
}

.social-icon:hover {
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-ask-ai {
    margin: 0 0 2.25rem;
    padding-top: 0.25rem;
}

.footer-ask-ai-title {
    margin: 0 0 0.9rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-ask-ai-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.footer-ask-ai-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.footer-ask-ai-btn:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
    transform: translateY(-1px);
}

.footer-ask-ai-btn svg {
    display: block;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-bottom .footer-link {
    color: #94a3b8;
    margin-left: 0.5rem;
    text-decoration: underline;
}

.footer-bottom .footer-link:hover {
    color: #cbd5e1;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        gap: 0.75rem;
    }
    
    .language-selector-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8125rem;
    }
    
    .language-selector-btn svg:first-child {
        width: 16px;
        height: 16px;
    }
    
    .current-language {
        min-width: 28px;
    }
    
    .language-dropdown {
        right: 0;
        left: auto;
        min-width: 160px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .black-box-graphic {
        order: -1;
    }
    
    .black-box-svg {
        width: 80px;
        height: 80px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .physical-store-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .step-left {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }
    
    .step-number {
        position: static;
        right: auto;
        width: auto;
        min-width: auto;
        text-align: left;
    }
    
    .step-graphic {
        order: -1;
    }
    
    .steps-connector {
        display: none;
    }
    
    .step-icon-wrapper {
        margin: 0 auto;
    }
    
    .step-left .step-content {
        margin-left: 0;
    }
    
    .step-content {
        text-align: left;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-logo {
        width: 120px;
        height: 75px;
        min-width: 120px;
        min-height: 75px;
    }
    
    .partner-logo-img {
        width: 100px;
        height: 60px;
    }
    
    .agency-central-image {
        margin: 2rem 0 3rem;
        padding: 1rem;
    }
    
    .agency-dashboard {
        padding: 1rem;
    }
    
    .campaign-item {
        padding: 1rem;
    }
    
    .campaign-header {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .campaign-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 60px;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .campaign-chart {
        height: 60px;
    }
    
    .mac-window-titlebar {
        padding: 8px 12px;
    }
    
    .traffic-light {
        width: 10px;
        height: 10px;
    }
    
    .agency-features {
        grid-template-columns: 1fr;
    }
    
    .physical-store-features {
        grid-template-columns: 1fr;
    }
    
    .physical-store-text {
        max-width: 100%;
        text-align: left;
    }
    
    .physical-store-header .section-title {
        text-align: left;
        font-size: 1.5rem;
    }
    
    .physical-store-header .section-subtitle {
        text-align: left;
    }
    
    .physical-store-description {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .radius-animation-container {
        max-width: 100%;
    }
    
    .radius-animation-svg {
        max-width: 100%;
        height: auto;
    }
    
    .automation-ads-content .mac-window-content {
        padding: 1.5rem;
    }
    
    .url-input-container {
        flex-direction: column;
    }
    
    #generate-ads-btn {
        width: 100%;
    }
    
    .ads-preview-container {
        grid-template-columns: 1fr;
    }
    
    @media (min-width: 769px) and (max-width: 1024px) {
        .ads-preview-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 1025px) {
        .ads-preview-container {
            grid-template-columns: repeat(3, 1fr);
        }
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .agency-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .agency-features {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-contact-line {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
}

@media (max-width: 480px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-contact-line {
        justify-content: center;
    }
    
    .footer-social {
        gap: 1rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title-wrapper {
        gap: 1rem;
    }
    
    .black-box-svg {
        width: 60px;
        height: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 1.05rem;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
    }
    
    .hero-clients {
        margin-top: 2rem;
        padding-top: 2rem;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .hero-clients-logos {
        padding: 1rem 0.5rem;
    }
    
    .hero-clients-logos-row {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .hero-client-logo {
        height: 44px;
    }
    
    .client-logo-img {
        max-height: 44px;
        max-width: 130px;
    }
    
    .features {
        padding-top: 60px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .automation-features {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1rem;
    }
    
    .automation-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .automation-text {
        text-align: left;
        max-width: 100%;
    }
    
    .automation-text .physical-store-description {
        font-size: 1rem;
        line-height: 1.65;
        text-align: left;
    }
    
    .automation-header {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 400 / 320;
        margin-left: 0;
        margin-right: 0;
    }
    
    .budget-chart-container {
        margin: 0;
        padding: 1.15rem 1.2rem 1.1rem;
        max-width: 100%;
        transform: none;
    }
    
    .automation-section .budget-chart-container {
        transform: none;
    }
    
    .automation-section .budget-chart-container:hover {
        transform: none;
    }
    
    .budget-chart-container .time-period-container {
        padding: 0.7rem 0.85rem;
        margin-bottom: 1.05rem;
    }
    
    .time-period-text {
        font-size: 1.05rem;
    }
    
    .automation-section .budget-chart-container .time-period-text {
        font-size: 0.95rem;
    }
    
    .clock-icon {
        width: 36px;
        height: 36px;
    }
    
    .clock-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .budget-chart-title {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .budget-chart {
        gap: 1rem;
    }
    
    .automation-section .budget-chart-container .budget-bar-wrapper {
        height: 12px;
    }
    
    .budget-bar-wrapper {
        height: 28px;
    }
    
    .budget-bar-label {
        font-size: 0.8125rem;
    }
    
    .budget-amount {
        font-size: 0.875rem;
    }
    
    .budget-total {
        font-size: 0.875rem;
        padding-top: 0.95rem;
    }
    
    .budget-total strong {
        font-size: 1rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .eshops-content {
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .eshop-integration-visual {
        width: 100%;
        padding: 1rem;
    }
    
    .eshops-features-text {
        width: 100%;
    }
    .eshops-content.eshops-boxes .eshops-features-text {
        grid-template-columns: 1fr;
    }
    .eshops-feature-text-item {
        padding: 1.25rem 0;
    }
    
    .eshops-feature-title {
        font-size: 1.125rem;
        gap: 0.5rem;
    }
    
    .eshops-feature-description {
        padding-left: 0;
        margin-top: 0.5rem;
        font-size: 0.9375rem;
    }
    
    .gamification-visual {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .gamification-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Knowledge Base Styles */
.knowledge-hero {
    background: var(--bg-darker);
    padding: 120px 0 80px;
    text-align: left;
}

.knowledge-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.knowledge-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
}

.knowledge-search {
    position: relative;
    max-width: 500px;
    margin: 0;
}

.knowledge-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.knowledge-search-input:focus {
    outline: none;
    border-color: #94a3b8;
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.15);
}

.knowledge-search .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.knowledge-content {
    padding: 60px 0;
    background: var(--bg-dark);
}

.knowledge-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.knowledge-category-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.knowledge-category-btn:hover {
    border-color: #94a3b8;
    color: var(--text-primary);
}

.knowledge-category-btn.active {
    background: rgba(100, 116, 139, 0.25);
    border-color: #94a3b8;
    color: var(--text-primary);
    font-weight: 600;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.knowledge-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.knowledge-card:hover {
    transform: translateY(-5px);
    border-color: rgba(125, 211, 252, 0.4);
    box-shadow: 0 8px 32px rgba(125, 211, 252, 0.08);
}

.knowledge-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.knowledge-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.knowledge-badge.getting-started {
    background: rgba(148, 163, 184, 0.2);
    color: #94a3b8;
}

.knowledge-badge.ads {
    background: rgba(66, 133, 244, 0.15);
    color: #4285F4;
}

.knowledge-badge.loyalty {
    background: rgba(255, 193, 7, 0.15);
    color: #FFC107;
}

.knowledge-badge.reports {
    background: rgba(156, 39, 176, 0.15);
    color: #9C27B0;
}

.knowledge-badge.integrations {
    background: rgba(255, 87, 34, 0.15);
    color: #FF5722;
}

.knowledge-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.knowledge-type svg {
    width: 14px;
    height: 14px;
}

.knowledge-card-shot {
    display: block;
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: #0a0a10;
    border: 1px solid var(--border-color);
}

.knowledge-card-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.knowledge-video-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.knowledge-video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.06) 0%, rgba(100, 116, 139, 0.08) 100%);
    opacity: 1;
}

.video-play-button {
    width: 60px;
    height: 60px;
    background: rgba(100, 116, 139, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.video-play-button:hover {
    transform: scale(1.1);
    background: rgba(148, 163, 184, 0.4);
    box-shadow: 0 0 24px rgba(125, 211, 252, 0.15);
}

.knowledge-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.knowledge-card-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.knowledge-card-link {
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    color: #94a3b8;
}

.knowledge-card-link:hover {
    gap: 0.75rem;
    color: #cbd5e1;
}

.nav-menu a.active {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .knowledge-grid {
        grid-template-columns: 1fr;
    }
    
    .knowledge-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .knowledge-category-btn {
        flex-shrink: 0;
    }
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

.video-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.video-modal-player {
    width: 100%;
    max-width: 1400px;
    height: 80vh;
    max-height: 900px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-modal-content {
        padding: 1rem;
    }
    
    .video-modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .video-modal-player {
        height: 60vh;
        border-radius: 8px;
    }
}

/* Login platform modal */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.login-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Partner signup — iframe modal (partners.html) */
.partner-signup-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 3vw, 1.25rem);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.partner-signup-modal.active {
    opacity: 1;
    visibility: visible;
}

.partner-signup-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.partner-signup-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: min(520px, 100%);
    max-height: min(90vh, 860px);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

.partner-signup-modal-title {
    flex-shrink: 0;
    margin: 0;
    padding: 1.25rem 3.25rem 1rem 1.35rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.partner-signup-modal-close {
    z-index: 2;
}

.partner-signup-modal-frame-wrap {
    flex: 1;
    min-height: min(68vh, 620px);
    background: #f8fafc;
}

.partner-signup-modal-iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: min(68vh, 620px);
    border: 0;
    vertical-align: top;
}

@media (max-width: 480px) {
    .partner-signup-modal-content {
        max-height: 92vh;
        border-radius: 16px;
    }
    .partner-signup-modal-frame-wrap,
    .partner-signup-modal-iframe {
        min-height: min(62vh, 540px);
    }
}

.login-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.login-modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.login-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.login-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.login-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-right: 2.5rem;
    text-align: center;
}

.login-modal-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-modal-option {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.login-modal-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.login-modal-option-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.95);
}

.login-modal-option-icon svg {
    width: 32px;
    height: 32px;
}

.login-modal-option-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.login-modal-option-text {
    font-weight: 600;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
}

.login-modal-option-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ========== Mobile friendly – παντού ========== */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .section-header {
        padding-left: 0;
        padding-right: 0;
    }
    .btn, .nav-cta a, .nav-signup, .nav-login {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.6rem 1.25rem;
    }
    .cta-form input,
    .cta-form button {
        min-height: 48px;
        width: 100%;
    }
    .cta-form {
        padding: 0 0.5rem;
    }
    .footer-content {
        text-align: center;
    }
    .footer-tagline {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    .partners-grid, .partner-logos {
        gap: 1rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    body {
        font-size: 14px;
    }
    .section-title {
        font-size: 1.05rem;
        line-height: 1.25;
    }
    .section-subtitle {
        font-size: 0.9375rem;
    }
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-left: 0;
        margin-right: auto;
    }
    .hero-cta .btn {
        width: 100%;
    }
    .login-modal-content {
        width: 95%;
        max-width: none;
        margin: 1rem;
        padding: 1.25rem;
    }
}



/* Use case pages (SME / Corporation) */
body.page-use-case .hero-wrapper.hero-index-mac .hero.use-case-hero {
    padding-top: clamp(3.5rem, 8vw, 6rem) !important;
    padding-bottom: clamp(3rem, 6vw, 5rem) !important;
    min-height: 0 !important;
}
body.page-use-case .use-case-hero .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}
body.page-use-case .use-case-hero-content {
    text-align: left;
    max-width: 36rem;
    margin: 0;
}
body.page-use-case .use-case-hero .contact-hero-title-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
}
body.page-use-case .hero-wrapper .hero.hero-corporate.use-case-hero .hero-title {
    font-size: clamp(2.1rem, 4.5vw, 3.25rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    white-space: normal;
    align-self: flex-start;
    text-align: left;
    max-width: 100%;
}
body.page-use-case .use-case-kicker {
    margin: 0 0 0.55rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    position: relative;
    z-index: 1;
}
body.page-use-case .use-case-lead {
    margin: 1rem 0 1.5rem;
    color: rgba(255,255,255,0.78);
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.55;
}
body.page-use-case .use-case-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
body.page-use-case .use-case-hero-art {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
body.page-use-case .use-case-section {
    background: #000;
    padding: clamp(3.5rem, 8vw, 6rem) 0;
}
body.page-use-case .use-case-section-title {
    margin: 0 0 0.75rem;
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}
body.page-use-case .use-case-section-lead {
    margin: 0 auto 2.5rem;
    max-width: 40rem;
    text-align: center;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
}
body.page-use-case .use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
body.page-use-case .use-case-point {
    padding: 1.25rem 1.15rem;
    border-radius: 14px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.1);
}
body.page-use-case .use-case-point h3 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-size: 1.05rem;
}
body.page-use-case .use-case-point p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.5;
}
body.page-use-case .use-case-bottom-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

/* SME feature cards — simple & clear */
body.page-use-case-sme .sme-features-intro, body.page-use-case-freelancer .sme-features-intro {
    padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

body.page-use-case-sme .sme-features-section, body.page-use-case-freelancer .sme-features-section {
    background: #05070d;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

body.page-use-case-sme .sme-features-section--alt, body.page-use-case-freelancer .sme-features-section--alt {
    background: #080b12;
}

body.page-use-case-sme .sme-features-head, body.page-use-case-freelancer .sme-features-head {
    max-width: 36rem;
    margin: 0 auto 2rem;
    text-align: center;
}

body.page-use-case-sme .sme-features-kicker, body.page-use-case-freelancer .sme-features-kicker {
    display: inline-block;
    margin: 0 0 0.65rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 136, 0.28);
    background: rgba(0, 255, 136, 0.08);
    color: #00ff88;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.page-use-case-sme .sme-features-title, body.page-use-case-freelancer .sme-features-title {
    margin: 0 0 0.65rem;
    color: #f8fafc;
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    font-weight: 750;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

body.page-use-case-sme .sme-features-lead, body.page-use-case-freelancer .sme-features-lead {
    margin: 0;
    color: rgba(226, 232, 240, 0.72);
    font-size: 1.02rem;
    line-height: 1.6;
}

body.page-use-case-sme .sme-features-grid, body.page-use-case-freelancer .sme-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

body.page-use-case-sme .sme-feature-card, body.page-use-case-freelancer .sme-feature-card {
    padding: 1.35rem 1.2rem 1.4rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.16);
    transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

body.page-use-case-sme .sme-feature-card:hover, body.page-use-case-freelancer .sme-feature-card:hover {
    border-color: rgba(0, 255, 136, 0.35);
    background: rgba(15, 23, 42, 0.8);
    transform: translateY(-3px);
}

body.page-use-case-sme .sme-feature-icon, body.page-use-case-freelancer .sme-feature-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    margin-bottom: 0.85rem;
    color: #e2e8f0;
}

body.page-use-case-sme .sme-feature-icon svg, body.page-use-case-freelancer .sme-feature-icon svg {
    width: 48px;
    height: 48px;
    display: block;
}

body.page-use-case-sme .sme-feature-card h3, body.page-use-case-freelancer .sme-feature-card h3 {
    margin: 0 0 0.45rem;
    color: #f1f5f9;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

body.page-use-case-sme .sme-feature-card p, body.page-use-case-freelancer .sme-feature-card p {
    margin: 0;
    color: rgba(203, 213, 225, 0.78);
    font-size: 0.94rem;
    line-height: 1.55;
}

@media (max-width: 900px) {
    body.page-use-case-sme .sme-features-grid, body.page-use-case-freelancer .sme-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    body.page-use-case-sme .sme-features-grid, body.page-use-case-freelancer .sme-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Freelancer use-case — image + copy story sections */
body.page-uc-story .fl-story-section {
    padding: clamp(2.75rem, 6vw, 5rem) 0;
}

body.page-uc-story .fl-story-rows {
    display: flex;
    flex-direction: column;
    gap: clamp(2.75rem, 6vw, 4.5rem);
    max-width: 1080px;
    margin: 0 auto;
}

body.page-uc-story .fl-story-row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 4vw, 3.25rem);
    align-items: center;
}

body.page-uc-story .fl-story-row--reverse .fl-story-visual {
    order: 2;
}

body.page-uc-story .fl-story-row--reverse .fl-story-copy {
    order: 1;
}

body.page-uc-story .fl-story-visual {
    position: relative;
    margin: 0;
    width: 100%;
}

body.page-uc-story .fl-ui-mac.mac-window {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}

body.page-uc-story .fl-ui-mac.mac-window:hover {
    transform: none;
}

body.page-uc-story .fl-ui-mac .mac-window-titlebar {
    padding: 7px 12px;
    background: #e8e8e8;
}

body.page-uc-story .fl-ui-mac .traffic-light {
    width: 8px;
    height: 8px;
}

body.page-uc-story .fl-ui-mac .mac-window-content {
    background: #0b1220;
    padding: 12px;
}

body.page-uc-story .fl-ui {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-height: 220px;
    color: #cbd5e1;
    font-size: 0.75rem;
    line-height: 1.35;
}

body.page-uc-story .fl-ui-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #f8fafc;
    font-size: 0.82rem;
    font-weight: 700;
}

body.page-uc-story .fl-ui-live {
    color: #00ff88;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

body.page-uc-story .fl-ui-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

body.page-uc-story .fl-ui-kpi {
    padding: 0.55rem 0.5rem;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

body.page-uc-story .fl-ui-kpi b {
    display: block;
    color: #f8fafc;
    font-size: 0.95rem;
    font-weight: 750;
}

body.page-uc-story .fl-ui-kpi span {
    color: #94a3b8;
    font-size: 0.68rem;
}

body.page-uc-story .fl-ui-field,
body.page-uc-story .fl-ui-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    padding: 0.55rem 0.65rem;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

body.page-uc-story .fl-ui-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.7rem;
    border-radius: 8px;
    background: #00ff88;
    color: #052e16;
    font-size: 0.72rem;
    font-weight: 750;
    white-space: nowrap;
}

body.page-uc-story .fl-ui-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

body.page-uc-story .fl-ui-card {
    padding: 0.7rem 0.65rem;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(125, 211, 252, 0.28);
}

body.page-uc-story .fl-ui-card--green {
    border-color: rgba(0, 255, 136, 0.28);
}

body.page-uc-story .fl-ui-card strong {
    display: block;
    color: #f8fafc;
    margin-bottom: 0.2rem;
}

body.page-uc-story .fl-ui-tiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

body.page-uc-story .fl-ui-tile {
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 0.45rem;
    color: #f8fafc;
    font-weight: 700;
    font-size: 0.68rem;
}

body.page-uc-story .fl-ui-tile--a { background: linear-gradient(160deg, #38bdf8, #0f172a); }
body.page-uc-story .fl-ui-tile--b { background: linear-gradient(160deg, #00ff88, #0f172a); }
body.page-uc-story .fl-ui-tile--c { background: linear-gradient(160deg, #a78bfa, #0f172a); }

body.page-uc-story .fl-ui-bar {
    flex: 1;
    height: 7px;
    border-radius: 99px;
    background: rgba(51, 65, 85, 0.9);
    overflow: hidden;
}

body.page-uc-story .fl-ui-bar > i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #00ff88;
}

body.page-uc-story .fl-ui-bar > i.sky { background: #7dd3fc; }

body.page-uc-story .fl-ui-badge {
    padding: 0.12rem 0.4rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.16);
    color: #7dd3fc;
    font-size: 0.64rem;
    font-weight: 700;
}

body.page-uc-story .fl-ui-badge--new {
    padding: 0.12rem 0.4rem;
    border-radius: 999px;
    background: rgba(0, 255, 136, 0.14);
    color: #00ff88;
    font-size: 0.64rem;
    font-weight: 700;
}

body.page-uc-story .fl-ui-cal {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.28rem;
}

body.page-uc-story .fl-ui-cal span {
    text-align: center;
    padding: 0.38rem 0;
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.8);
    color: #94a3b8;
}

body.page-uc-story .fl-ui-cal .on {
    background: rgba(0, 255, 136, 0.18);
    color: #00ff88;
    font-weight: 700;
}

body.page-uc-story .fl-ui-phone {
    width: min(100%, 168px);
    margin: 0 auto;
    padding: 0.7rem 0.65rem 1rem;
    border-radius: 22px;
    border: 2px solid #334155;
    background: #020617;
    min-height: 210px;
}

body.page-uc-story .fl-ui-phone-bar {
    width: 42px;
    height: 4px;
    margin: 0 auto 0.7rem;
    border-radius: 99px;
    background: #475569;
}

body.page-uc-story .fl-ui-phone h4 {
    margin: 0 0 0.55rem;
    color: #f8fafc;
    font-size: 0.85rem;
}

body.page-uc-story .fl-ui-chart {
    height: 54px;
    width: 100%;
}

body.page-uc-story .fl-ui-chart path.line {
    fill: none;
    stroke: #7dd3fc;
    stroke-width: 2;
}

body.page-uc-story .fl-ui-chart path.fill {
    fill: url(#flUiLineFill);
}

body.page-uc-story .fl-story-copy {
    max-width: 34rem;
}

body.page-uc-story .fl-story-step {
    margin: 0 0 0.7rem;
    color: #00ff88;
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.16em;
}

body.page-uc-story .fl-story-copy h3 {
    margin: 0 0 0.85rem;
    color: #f8fafc;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 750;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

body.page-uc-story .fl-story-copy p:last-child {
    margin: 0;
    color: rgba(226, 232, 240, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 860px) {
    body.page-uc-story .fl-story-row,
    body.page-uc-story .fl-story-row--reverse {
        grid-template-columns: 1fr;
    }
    body.page-uc-story .fl-story-row--reverse .fl-story-visual,
    body.page-uc-story .fl-story-row--reverse .fl-story-copy {
        order: unset;
    }
    body.page-uc-story .fl-story-copy {
        max-width: none;
    }
}

@media (max-width: 900px) {
    body.page-use-case .use-case-hero .hero-inner {
        grid-template-columns: 1fr;
    }
    body.page-use-case .use-case-hero-content,
    body.page-use-case .use-case-hero .contact-hero-title-block,
    body.page-use-case .hero-wrapper .hero.hero-corporate.use-case-hero .hero-title {
        text-align: center;
        align-items: center;
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }
    body.page-use-case .use-case-hero-cta {
        justify-content: center;
    }
    body.page-use-case .use-case-grid {
        grid-template-columns: 1fr;
    }
}

/* SME use-case — polished centered hero */
body.page-use-case-sme .hero-wrapper.hero-index-mac, body.page-use-case-freelancer .hero-wrapper.hero-index-mac {
    position: relative;
    background:
        radial-gradient(ellipse 70% 55% at 50% -5%, rgba(56, 189, 248, 0.12), transparent 58%),
        radial-gradient(ellipse 45% 35% at 78% 55%, rgba(0, 255, 136, 0.06), transparent 55%),
        #05070d;
    overflow: hidden;
}

body.page-use-case-sme .use-case-hero, body.page-use-case-freelancer .use-case-hero {
    position: relative;
    isolation: isolate;
}

body.page-use-case-sme .use-case-hero-atmosphere, body.page-use-case-freelancer .use-case-hero-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

body.page-use-case-sme .use-case-hero-grid, body.page-use-case-freelancer .use-case-hero-grid {
    position: absolute;
    inset: -10% 0 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.055) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 75% 70% at 50% 35%, #000 15%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 35%, #000 15%, transparent 78%);
    opacity: 0.9;
}

body.page-use-case-sme .use-case-hero-glow, body.page-use-case-freelancer .use-case-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    animation: use-case-hero-glow-drift 14s ease-in-out infinite alternate;
}

body.page-use-case-sme .use-case-hero-glow--a, body.page-use-case-freelancer .use-case-hero-glow--a {
    width: 280px;
    height: 280px;
    top: 8%;
    left: 12%;
    background: rgba(56, 189, 248, 0.16);
}

body.page-use-case-sme .use-case-hero-glow--b, body.page-use-case-freelancer .use-case-hero-glow--b {
    width: 240px;
    height: 240px;
    right: 10%;
    bottom: 12%;
    background: rgba(0, 255, 136, 0.12);
    animation-delay: -5s;
}

@keyframes use-case-hero-glow-drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(16px, -18px) scale(1.08); }
}

body.page-use-case-sme .hero-wrapper.hero-index-mac .hero.use-case-hero, body.page-use-case-freelancer .hero-wrapper.hero-index-mac .hero.use-case-hero {
    padding-top: clamp(4rem, 9vw, 6.5rem) !important;
    padding-bottom: clamp(3.5rem, 7vw, 5.5rem) !important;
}

body.page-use-case-sme .use-case-hero .hero-inner, body.page-use-case-freelancer .use-case-hero .hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 2.75rem);
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

body.page-use-case-sme .use-case-hero-content, body.page-use-case-freelancer .use-case-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
    animation: use-case-hero-rise 0.8s ease both;
}

body.page-use-case-sme .use-case-hero .use-case-hero-title-block, body.page-use-case-freelancer .use-case-hero .use-case-hero-title-block,
body.page-use-case-sme .use-case-hero .contact-hero-title-block, body.page-use-case-freelancer .use-case-hero .contact-hero-title-block {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0.35rem 0.5rem 0.55rem;
}

body.page-use-case-sme .use-case-hero .hero-brand-stars, body.page-use-case-freelancer .use-case-hero .hero-brand-stars {
    inset: -2.75rem -4rem -2.25rem -4rem;
}

body.page-use-case-sme .use-case-kicker, body.page-use-case-freelancer .use-case-kicker {
    align-self: flex-end;
    margin: 0 0.15rem 0.65rem 0;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.45);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: rgba(226, 232, 240, 0.72);
    z-index: 1;
}

body.page-use-case-sme .hero-wrapper .hero.hero-corporate.use-case-hero .hero-title, body.page-use-case-freelancer .hero-wrapper .hero.hero-corporate.use-case-hero .hero-title,
body.page-use-case-sme .hero-wrapper .hero.hero-corporate .hero-title-block > .hero-title, body.page-use-case-freelancer .hero-wrapper .hero.hero-corporate .hero-title-block > .hero-title {
    position: relative;
    z-index: 1;
    align-self: center;
    text-align: center;
    font-size: clamp(2.15rem, 5.2vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin: 0;
    color: #f8fafc !important;
    -webkit-text-fill-color: #f8fafc !important;
    background: none !important;
    background-image: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
    text-shadow: 0 1px 24px rgba(0, 0, 0, 0.45);
}

body.page-use-case-sme .use-case-lead, body.page-use-case-freelancer .use-case-lead {
    max-width: 38rem;
    margin: 1.15rem auto 1.75rem;
    font-size: clamp(1.02rem, 1.7vw, 1.16rem);
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.82);
}

body.page-use-case-sme .use-case-hero-cta, body.page-use-case-freelancer .use-case-hero-cta {
    justify-content: center;
    gap: 0.85rem;
}

body.page-use-case-sme .use-case-cta-primary, body.page-use-case-freelancer .use-case-cta-primary {
    box-shadow:
        0 0 0 1px rgba(0, 255, 136, 0.25),
        0 8px 28px rgba(0, 255, 136, 0.28),
        0 0 40px rgba(0, 255, 136, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.page-use-case-sme .use-case-cta-primary:hover, body.page-use-case-freelancer .use-case-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(0, 255, 136, 0.35),
        0 12px 34px rgba(0, 255, 136, 0.35),
        0 0 48px rgba(0, 255, 136, 0.16);
}

body.page-use-case-sme .use-case-cta-secondary, body.page-use-case-freelancer .use-case-cta-secondary {
    background: rgba(15, 23, 42, 0.65) !important;
    border: 1px solid rgba(148, 163, 184, 0.28) !important;
    color: #f1f5f9 !important;
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

body.page-use-case-sme .use-case-cta-secondary:hover, body.page-use-case-freelancer .use-case-cta-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(148, 163, 184, 0.5) !important;
    background: rgba(30, 41, 59, 0.8) !important;
}

body.page-uc-story .hero-wrapper.hero-index-mac .hero.use-case-hero {
    padding-top: clamp(4rem, 8vw, 6rem) !important;
    padding-bottom: clamp(2.5rem, 5vw, 3.5rem) !important;
}

body.page-uc-story .use-case-hero .hero-inner {
    gap: 0;
}

body.page-uc-story .use-case-lead {
    margin: 1.15rem auto 1.75rem;
}

body.page-uc-story .fl-hero-clients {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: clamp(2rem, 4vw, 2.75rem);
    padding-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
    border-top-color: rgba(255, 255, 255, 0.08);
    background: #05070d;
}

body.page-uc-story .fl-hero-clients .hero-clients-title {
    margin-bottom: 1.5rem;
}

body.page-uc-story .fl-hero-clients .hero-clients-logos {
    padding: 0.75rem 0;
}

body.page-uc-story .sme-features-intro.use-case-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.25rem, 4vw, 3.25rem);
}

body.page-uc-story .sme-features-intro .use-case-section-lead {
    margin-bottom: 0;
}

body.page-uc-story .sme-features-section.fl-story-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

body.page-uc-story .fl-story-section .sme-features-head {
    margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

body.page-uc-story .fl-story-rows {
    gap: clamp(3.75rem, 8vw, 6rem);
}

body.page-uc-story .fl-story-row {
    gap: clamp(2rem, 4.5vw, 3.5rem);
}

body.page-uc-story .fl-story-section .use-case-bottom-cta {
    margin-top: clamp(3.25rem, 6vw, 4.5rem);
}

@media (max-width: 860px) {
    body.page-uc-story .hero-wrapper.hero-index-mac .hero.use-case-hero {
        padding-top: clamp(3.25rem, 8vw, 4.5rem) !important;
        padding-bottom: 2rem !important;
    }
    body.page-uc-story .fl-story-rows {
        gap: 3rem;
    }
    body.page-uc-story .sme-features-section.fl-story-section {
        padding: 2.75rem 0;
    }
    body.page-uc-story .sme-features-intro.use-case-section {
        padding: 2.75rem 0 1.75rem;
    }
}

body.page-use-case-sme .use-case-hero-art, body.page-use-case-freelancer .use-case-hero-art {
    width: min(100%, 560px);
    margin: 0 auto;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.9), rgba(5, 8, 16, 0.95));
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    overflow: hidden;
    animation: use-case-hero-rise 0.95s ease 0.12s both;
}

body.page-use-case-sme .use-case-hero-art-svg, body.page-use-case-freelancer .use-case-hero-art-svg {
    display: block;
    width: 100%;
    height: auto;
}

body.page-use-case-sme .use-case-art-plus, body.page-use-case-freelancer .use-case-art-plus {
    transform-origin: center;
    animation: use-case-plus-pulse 3.2s ease-in-out infinite;
}

@keyframes use-case-hero-rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes use-case-plus-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.72; }
}

@media (max-width: 900px) {
    body.page-use-case-sme .use-case-hero .hero-inner, body.page-use-case-freelancer .use-case-hero .hero-inner {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding-inline: 0.25rem;
    }
    body.page-use-case-sme .use-case-kicker, body.page-use-case-freelancer .use-case-kicker {
        align-self: center;
        margin-right: 0;
    }
    body.page-use-case-sme .use-case-hero-art, body.page-use-case-freelancer .use-case-hero-art {
        width: min(100%, 20rem);
        margin-inline: auto;
    }
    body.page-use-case-sme .use-case-hero-cta, body.page-use-case-freelancer .use-case-hero-cta {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.7rem;
    }
    body.page-use-case-sme .use-case-cta-primary,
    body.page-use-case-freelancer .use-case-cta-primary,
    body.page-use-case-sme .use-case-cta-secondary,
    body.page-use-case-freelancer .use-case-cta-secondary {
        flex: 1 1 10.5rem;
        justify-content: center;
        text-align: center;
        min-height: 2.85rem;
    }
    body.page-use-case-sme .sme-features-section, body.page-use-case-freelancer .sme-features-section {
        padding: 2.25rem 0;
    }
    body.page-use-case-sme .sme-features-head, body.page-use-case-freelancer .sme-features-head {
        padding-inline: 0.15rem;
        margin-bottom: 1.25rem;
    }
    body.page-use-case-sme .sme-features-title, body.page-use-case-freelancer .sme-features-title {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }
    body.page-use-case-sme .sme-features-lead, body.page-use-case-freelancer .sme-features-lead {
        font-size: 0.95rem;
    }
    body.page-use-case-sme .sme-feature-card, body.page-use-case-freelancer .sme-feature-card {
        padding: 1rem 0.9rem;
    }
}

@media (max-width: 560px) {
    body.page-use-case-sme .hero-wrapper .hero.hero-corporate.use-case-hero .hero-title,
    body.page-use-case-freelancer .hero-wrapper .hero.hero-corporate.use-case-hero .hero-title,
    body.page-use-case-sme .hero-wrapper .hero.hero-corporate .hero-title-block > .hero-title,
    body.page-use-case-freelancer .hero-wrapper .hero.hero-corporate .hero-title-block > .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        line-height: 1.15;
    }
    body.page-use-case-sme .use-case-lead, body.page-use-case-freelancer .use-case-lead {
        font-size: 0.98rem;
        line-height: 1.6;
        margin: 0.9rem auto 1.35rem;
        padding-inline: 0.15rem;
    }
    body.page-use-case-sme .use-case-hero-art, body.page-use-case-freelancer .use-case-hero-art {
        display: none;
    }
    body.page-use-case-sme .use-case-cta-primary,
    body.page-use-case-freelancer .use-case-cta-primary,
    body.page-use-case-sme .use-case-cta-secondary,
    body.page-use-case-freelancer .use-case-cta-secondary {
        flex: 1 1 100%;
        width: 100%;
    }
    body.page-use-case-sme .sme-features-section, body.page-use-case-freelancer .sme-features-section {
        padding: 1.75rem 0;
    }
    body.page-use-case-sme .sme-feature-card, body.page-use-case-freelancer .sme-feature-card {
        padding: 1rem 0.85rem;
        gap: 0.65rem;
    }
    body.page-use-case-sme .sme-feature-card h3, body.page-use-case-freelancer .sme-feature-card h3 {
        font-size: 1rem;
    }
    body.page-use-case-sme .sme-feature-card p, body.page-use-case-freelancer .sme-feature-card p {
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.page-use-case-sme .use-case-hero-glow, body.page-use-case-freelancer .use-case-hero-glow,
    body.page-use-case-sme .use-case-art-plus, body.page-use-case-freelancer .use-case-art-plus,
    body.page-use-case-sme .use-case-hero-content, body.page-use-case-freelancer .use-case-hero-content,
    body.page-use-case-sme .use-case-hero-art, body.page-use-case-freelancer .use-case-hero-art {
        animation: none !important;
    }
}


/* Corporation simple page — partners + path of the user */
body.page-corp-simple {
    background: #070b14;
}
body.page-corp-simple .hero-wrapper.hero-index-mac {
    min-height: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(56, 189, 248, 0.14), transparent 55%),
        radial-gradient(ellipse 50% 40% at 80% 40%, rgba(167, 139, 250, 0.1), transparent 50%),
        #070b14;
}
body.page-corp-simple .corp-simple-hero {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    overflow: visible;
}
body.page-corp-simple .corp-simple-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}
body.page-corp-simple .corp-hero-title-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    overflow: visible;
}
body.page-corp-simple .corp-hero-title-block .hero-brand-stars {
    inset: -4.5rem -7rem -3.5rem -7rem;
    z-index: 0;
}
body.page-corp-simple .corp-hero-title-block .hero-brand-stars .hero-brand-star {
    opacity: 0.85;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.7));
}
body.page-corp-simple .corp-hero-title-block .corp-brand-wordmark {
    position: relative;
    z-index: 1;
}
body.page-corp-simple .corp-simple-cta {
    margin-top: 1.15rem;
}
body.page-corp-simple .corp-simple-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: #042f1e;
    border: none;
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.35);
}
body.page-corp-simple .corp-simple-cta .btn-primary:hover {
    background: linear-gradient(135deg, #6ee7b7 0%, #34d399 100%);
    color: #042f1e;
    transform: translateY(-1px);
}
body.page-corp-simple .corp-brand-wordmark {
    display: inline-flex;
    align-items: flex-end;
    text-decoration: none;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
}
body.page-corp-simple .corp-brand-ro {
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    color: #fff;
}
body.page-corp-simple .corp-brand-app {
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    color: #34d399;
    padding-bottom: 0.12em;
}
body.page-corp-simple .corp-simple-kicker {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.55);
}
body.page-corp-simple .corp-simple-title {
    margin: 0.35rem auto 0;
    max-width: 42rem;
    font-size: clamp(1.25rem, 3.2vw, 1.85rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: rgba(248, 250, 252, 0.95);
    text-wrap: balance;
}

body.page-corp-simple .corp-hero-clients {
    margin-top: clamp(0.5rem, 2vw, 1.25rem);
    margin-bottom: 0;
    padding-top: clamp(1.75rem, 4vw, 2.75rem);
    padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
    border-top-color: rgba(255, 255, 255, 0.08);
}
body.page-corp-simple .corp-partners {
    display: none;
}

body.page-corp-simple .corp-path-section {
    padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 7vw, 5.5rem);
    background:
        radial-gradient(ellipse 55% 50% at 78% 48%, rgba(52, 211, 153, 0.08), transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 40%, rgba(56, 189, 248, 0.06), transparent 55%),
        #05080f;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-corp-simple .corp-path-title {
    margin: 0 0 0.65rem;
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #f8fafc;
}
body.page-corp-simple .corp-path-lead {
    margin: 0 auto 1.75rem;
    max-width: 36rem;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.55;
    color: rgba(203, 213, 225, 0.78);
}
body.page-corp-simple .corp-path-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    width: min(1100px, 100%);
    margin: 0 auto 1.25rem;
    min-height: 2.75rem;
}
body.page-corp-simple .corp-path-split-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #f8fafc;
    text-align: center;
    line-height: 1.25;
}
body.page-corp-simple .corp-path-split-left {
    justify-content: center;
    text-align: center;
    padding-right: 1.25rem;
}
body.page-corp-simple .corp-path-split-right {
    justify-content: center;
    text-align: center;
    padding-left: 1.25rem;
}
body.page-corp-simple .corp-path-stage {
    width: min(1100px, calc(100% - 1.5rem));
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
body.page-corp-simple .corp-path-svg {
    display: block;
    width: 100%;
    height: auto;
}
body.page-corp-simple .corp-path-label {
    fill: rgba(226, 232, 240, 0.45);
    font-size: 13px;
    font-family: Inter, system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
body.page-corp-simple .corp-road-source-logos {
    pointer-events: none;
}
body.page-corp-simple .corp-road-source-logo {
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}
body.page-corp-simple .corp-logo-tube {
    pointer-events: none;
}
body.page-corp-simple .corp-tube-logo {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}
body.page-corp-simple .corp-tube-agent-logo {
    filter: none;
}
body.page-corp-simple .corp-tube-agent-label {
    fill: #e2e8f0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-family: Inter, system-ui, sans-serif;
}
body.page-corp-simple .corp-loop-brand {
    pointer-events: none;
}
body.page-corp-simple .corp-loop-brand-logo {
    filter: none;
}
body.page-corp-simple .corp-fp-ball {
    will-change: transform;
    pointer-events: none;
}
body.page-corp-simple .corp-fp-trail {
    pointer-events: none;
    mix-blend-mode: normal;
}
body.page-corp-simple .corp-fp-ball use {
    color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 700px) {
    body.page-corp-simple .corp-partner-logo img {
        height: 24px;
    }
    body.page-corp-simple .corp-path-stage {
        width: calc(100% - 0.5rem);
    }
    body.page-corp-simple .corp-path-split {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        text-align: center;
    }
    body.page-corp-simple .corp-path-split-left,
    body.page-corp-simple .corp-path-split-right {
        justify-content: center;
        text-align: center;
        padding: 0.35rem 0.5rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    body.page-corp-simple .corp-fp-ball animateMotion {
        display: none;
    }
    body.page-corp-simple .corp-ai-ad-scan,
    body.page-corp-simple .corp-ai-ad-shape,
    body.page-corp-simple .corp-ai-progress-bar,
    body.page-corp-simple .corp-ai-canvas-live {
        animation: none !important;
    }
}

/* Corp — AI graphics section */
body.page-corp-simple .corp-ai-art-section {
    padding: clamp(3rem, 7vw, 5.5rem) 0;
    background:
        radial-gradient(ellipse 50% 60% at 85% 40%, rgba(52, 211, 153, 0.1), transparent 55%),
        radial-gradient(ellipse 40% 50% at 10% 70%, rgba(56, 189, 248, 0.07), transparent 50%),
        #070b14;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-corp-simple .corp-ai-art-inner,
body.page-corp-simple .corp-ai-watch-inner,
body.page-corp-simple .corp-budget-inner,
body.page-corp-simple .corp-crm-inner,
body.page-corp-simple .corp-loyalty-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(1.35rem, 3vw, 2.25rem);
    column-gap: clamp(1.5rem, 3.5vw, 2.5rem);
}
body.page-corp-simple .corp-ai-art-copy,
body.page-corp-simple .corp-ai-watch-copy,
body.page-corp-simple .corp-budget-copy,
body.page-corp-simple .corp-crm-copy,
body.page-corp-simple .corp-loyalty-copy {
    flex: 1 1 17rem;
    max-width: 28rem;
    min-width: 0;
}
body.page-corp-simple .corp-ai-art-visual,
body.page-corp-simple .corp-ai-watch-visual,
body.page-corp-simple .corp-budget-visual,
body.page-corp-simple .corp-crm-visual,
body.page-corp-simple .corp-loyalty-visual {
    flex: 0 1 340px;
    width: 100%;
    max-width: 340px;
    margin: 0;
    justify-self: unset;
}

body.page-corp-simple .corp-ai-art-title {
    margin: 0 0 1rem;
    font-size: clamp(1.65rem, 3.6vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #f8fafc;
    text-wrap: balance;
}
body.page-corp-simple .corp-ai-art-lead {
    margin: 0;
    max-width: 34rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.82);
}
body.page-corp-simple .corp-ai-canvas {
    position: relative;
    border-radius: 1rem;
    transform: scale(0.92);
    transform-origin: center center;
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(8, 12, 22, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(52, 211, 153, 0.08);
    overflow: hidden;
}
body.page-corp-simple .corp-ai-canvas-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}
body.page-corp-simple .corp-ai-canvas-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.45);
}
body.page-corp-simple .corp-ai-canvas-dot:nth-child(1) { background: #f87171; }
body.page-corp-simple .corp-ai-canvas-dot:nth-child(2) { background: #fbbf24; }
body.page-corp-simple .corp-ai-canvas-dot:nth-child(3) { background: #34d399; }
body.page-corp-simple .corp-ai-canvas-title {
    margin-left: 0.55rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.75);
    letter-spacing: 0.02em;
}
body.page-corp-simple .corp-ai-canvas-live {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #34d399;
}
body.page-corp-simple .corp-ai-canvas-live::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
    animation: corp-ai-pulse 1.6s ease-in-out infinite;
}
body.page-corp-simple .corp-ai-canvas-body {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 0.85rem;
    padding: 1rem;
}
body.page-corp-simple .corp-ai-ad--main {
    border-radius: 0.9rem;
    overflow: hidden;
    background: #0b1220;
    border: 1px solid rgba(148, 163, 184, 0.22);
}
body.page-corp-simple .corp-ai-ad-art {
    position: relative;
    aspect-ratio: 1.15 / 1;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 25%, rgba(56, 189, 248, 0.35), transparent 45%),
        radial-gradient(circle at 75% 70%, rgba(52, 211, 153, 0.4), transparent 50%),
        linear-gradient(145deg, #0f172a, #020617);
}
body.page-corp-simple .corp-ai-ad-shape {
    position: absolute;
    border-radius: 1.25rem;
    filter: blur(0.5px);
}
body.page-corp-simple .corp-ai-ad-shape--a {
    width: 48%;
    height: 42%;
    left: 12%;
    top: 18%;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.85), rgba(16, 185, 129, 0.35));
    transform: rotate(-8deg);
    animation: corp-ai-float 5.5s ease-in-out infinite;
}
body.page-corp-simple .corp-ai-ad-shape--b {
    width: 38%;
    height: 38%;
    right: 10%;
    top: 28%;
    border-radius: 50%;
    background: linear-gradient(160deg, rgba(56, 189, 248, 0.75), rgba(14, 165, 233, 0.25));
    animation: corp-ai-float 6.2s ease-in-out 0.4s infinite reverse;
}
body.page-corp-simple .corp-ai-ad-shape--c {
    width: 55%;
    height: 18%;
    left: 18%;
    bottom: 16%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(248, 250, 252, 0.55), rgba(148, 163, 184, 0.15));
    animation: corp-ai-float 4.8s ease-in-out 0.2s infinite;
}
body.page-corp-simple .corp-ai-ad-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 28%;
    background: linear-gradient(180deg, transparent, rgba(52, 211, 153, 0.22), transparent);
    animation: corp-ai-scan 2.8s ease-in-out infinite;
}
body.page-corp-simple .corp-ai-ad-badge {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #042f1e;
    background: #34d399;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}
body.page-corp-simple .corp-ai-ad-meta {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.85rem 0.9rem 1rem;
    background: rgba(15, 23, 42, 0.95);
}
body.page-corp-simple .corp-ai-ad-line {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.28);
    width: 72%;
}
body.page-corp-simple .corp-ai-ad-line--title {
    width: 88%;
    height: 10px;
    background: rgba(226, 232, 240, 0.45);
}
body.page-corp-simple .corp-ai-ad-cta {
    align-self: flex-start;
    margin-top: 0.25rem;
    padding: 0.35rem 0.75rem;
    border-radius: 0.45rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #042f1e;
    background: linear-gradient(135deg, #34d399, #10b981);
}
body.page-corp-simple .corp-ai-variants {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
body.page-corp-simple .corp-ai-variant {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: rgba(203, 213, 225, 0.8);
    font-size: 0.75rem;
    font-weight: 700;
}
body.page-corp-simple .corp-ai-variant-art {
    width: 52px;
    height: 52px;
    border-radius: 0.55rem;
    flex-shrink: 0;
}
body.page-corp-simple .corp-ai-variant--1 .corp-ai-variant-art {
    background:
        radial-gradient(circle at 35% 35%, rgba(52, 211, 153, 0.9), transparent 55%),
        linear-gradient(145deg, #134e4a, #0f172a);
}
body.page-corp-simple .corp-ai-variant--2 .corp-ai-variant-art {
    background:
        radial-gradient(circle at 70% 30%, rgba(56, 189, 248, 0.85), transparent 50%),
        linear-gradient(145deg, #0c4a6e, #0f172a);
}
body.page-corp-simple .corp-ai-variant--3 .corp-ai-variant-art {
    background:
        radial-gradient(circle at 40% 70%, rgba(251, 191, 36, 0.7), transparent 50%),
        linear-gradient(145deg, #422006, #0f172a);
}
body.page-corp-simple .corp-ai-canvas-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
body.page-corp-simple .corp-ai-progress {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.18);
    overflow: hidden;
}
body.page-corp-simple .corp-ai-progress-bar {
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7);
    animation: corp-ai-progress 2.4s ease-in-out infinite;
}
body.page-corp-simple .corp-ai-progress-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.9);
    white-space: nowrap;
}
@keyframes corp-ai-scan {
    0% { top: -20%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 90%; opacity: 0; }
}
@keyframes corp-ai-float {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-8px) rotate(-4deg); }
}
@keyframes corp-ai-progress {
    0% { width: 18%; }
    50% { width: 78%; }
    100% { width: 18%; }
}
@keyframes corp-ai-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}
@media (max-width: 900px) {
    body.page-corp-simple .corp-ai-art-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
    }
    body.page-corp-simple .corp-ai-art-title,
    body.page-corp-simple .corp-ai-art-lead {
        text-align: left;
    }
    body.page-corp-simple .corp-ai-art-visual {
        max-width: 300px;
        margin-left: 0;
        margin-right: auto;
    }
    body.page-corp-simple .corp-ai-canvas {
        transform: none;
    }
}

/* Corp — AI Watch section */
body.page-corp-simple .corp-ai-watch-section {
    padding: clamp(3rem, 7vw, 5.5rem) 0;
    background:
        radial-gradient(ellipse 45% 55% at 15% 45%, rgba(56, 189, 248, 0.09), transparent 55%),
        radial-gradient(ellipse 40% 50% at 90% 70%, rgba(52, 211, 153, 0.08), transparent 50%),
        #05080f;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-corp-simple .corp-ai-watch-title {
    margin: 0 0 1rem;
    font-size: clamp(1.65rem, 3.6vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #f8fafc;
    text-wrap: balance;
}
body.page-corp-simple .corp-ai-watch-lead {
    margin: 0;
    max-width: 34rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.82);
}
body.page-corp-simple .corp-watch-panel {
    max-width: 340px;
    width: 100%;
    margin: 0;
    border-radius: 1rem;
    transform: scale(0.92);
    transform-origin: center center;
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(8, 12, 22, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}
body.page-corp-simple .corp-watch-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-corp-simple .corp-watch-panel-brand {
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #f8fafc;
}
body.page-corp-simple .corp-watch-panel-status {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #38bdf8;
}
body.page-corp-simple .corp-watch-radar {
    position: relative;
    width: min(100%, 160px);
    aspect-ratio: 1;
    margin: 0.85rem auto 0.35rem;
}
body.page-corp-simple .corp-watch-radar-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, 0.18);
}
body.page-corp-simple .corp-watch-radar-ring--1 { inset: 12%; }
body.page-corp-simple .corp-watch-radar-ring--2 { inset: 26%; border-color: rgba(52, 211, 153, 0.22); }
body.page-corp-simple .corp-watch-radar-ring--3 { inset: 40%; border-color: rgba(56, 189, 248, 0.28); }
body.page-corp-simple .corp-watch-radar-sweep {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(52, 211, 153, 0.35) 50deg, transparent 70deg);
    animation: corp-watch-spin 3.2s linear infinite;
}
body.page-corp-simple .corp-watch-radar-core {
    position: absolute;
    inset: 38%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f8fafc;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    z-index: 2;
}
body.page-corp-simple .corp-watch-blip {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.8);
    z-index: 2;
    animation: corp-watch-blip 2.4s ease-in-out infinite;
}
body.page-corp-simple .corp-watch-blip--a { top: 22%; left: 62%; }
body.page-corp-simple .corp-watch-blip--b { top: 58%; left: 24%; animation-delay: 0.5s; background: #38bdf8; box-shadow: 0 0 10px rgba(56, 189, 248, 0.8); }
body.page-corp-simple .corp-watch-blip--c { top: 70%; left: 68%; animation-delay: 1s; }
body.page-corp-simple .corp-watch-feed {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.85rem 1rem 1.1rem;
}
body.page-corp-simple .corp-watch-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.65rem;
    align-items: center;
    padding: 0.65rem 0.75rem;
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.16);
}
body.page-corp-simple .corp-watch-card-icon {
    width: 28px;
    height: 28px;
    border-radius: 0.5rem;
    position: relative;
    flex-shrink: 0;
}
body.page-corp-simple .corp-watch-card-icon--mail {
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.35);
}
body.page-corp-simple .corp-watch-card-icon--mail::before {
    content: '';
    position: absolute;
    inset: 7px 6px;
    border: 1.5px solid #38bdf8;
    border-radius: 2px;
}
body.page-corp-simple .corp-watch-card-icon--mail::after {
    content: '';
    position: absolute;
    left: 6px;
    right: 6px;
    top: 8px;
    height: 8px;
    border-left: 1.5px solid #38bdf8;
    border-right: 1.5px solid #38bdf8;
    border-bottom: 1.5px solid #38bdf8;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    clip-path: polygon(0 0, 50% 70%, 100% 0, 100% 100%, 0 100%);
}
body.page-corp-simple .corp-watch-card-icon--up {
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.35);
}
body.page-corp-simple .corp-watch-card-icon--up::before {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    top: 12px;
    border-left: 2px solid #34d399;
    border-top: 2px solid #34d399;
    transform: rotate(45deg);
    transform-origin: center;
}
body.page-corp-simple .corp-watch-card-icon--check {
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.35);
}
body.page-corp-simple .corp-watch-card-icon--check::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 11px;
    width: 12px;
    height: 6px;
    border-left: 2px solid #34d399;
    border-bottom: 2px solid #34d399;
    transform: rotate(-45deg);
}
body.page-corp-simple .corp-watch-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
body.page-corp-simple .corp-watch-card-body strong {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #f1f5f9;
}
body.page-corp-simple .corp-watch-card-body span {
    font-size: 0.6875rem;
    color: rgba(148, 163, 184, 0.9);
}
body.page-corp-simple .corp-watch-card em {
    font-style: normal;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #38bdf8;
}
body.page-corp-simple .corp-watch-spark {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 22px;
}
body.page-corp-simple .corp-watch-spark span {
    width: 4px;
    border-radius: 2px;
    background: #34d399;
    animation: corp-watch-bars 1.6s ease-in-out infinite;
}
body.page-corp-simple .corp-watch-spark span:nth-child(1) { height: 35%; animation-delay: 0s; }
body.page-corp-simple .corp-watch-spark span:nth-child(2) { height: 55%; animation-delay: 0.1s; }
body.page-corp-simple .corp-watch-spark span:nth-child(3) { height: 75%; animation-delay: 0.2s; }
body.page-corp-simple .corp-watch-spark span:nth-child(4) { height: 50%; animation-delay: 0.3s; }
body.page-corp-simple .corp-watch-spark span:nth-child(5) { height: 90%; animation-delay: 0.4s; }
@keyframes corp-watch-spin {
    to { transform: rotate(360deg); }
}
@keyframes corp-watch-blip {
    0%, 100% { opacity: 0.35; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.15); }
}
@keyframes corp-watch-bars {
    0%, 100% { transform: scaleY(0.7); opacity: 0.7; }
    50% { transform: scaleY(1); opacity: 1; }
}
@media (max-width: 900px) {
    body.page-corp-simple .corp-ai-watch-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
    }
    body.page-corp-simple .corp-watch-panel {
        max-width: 300px;
        margin-left: 0;
        margin-right: auto;
        transform: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    body.page-corp-simple .corp-watch-radar-sweep,
    body.page-corp-simple .corp-watch-blip,
    body.page-corp-simple .corp-watch-spark span {
        animation: none !important;
    }
}

/* Corp — Auto Budget Allocation section */
body.page-corp-simple .corp-budget-section {
    padding: clamp(3rem, 7vw, 5.5rem) 0;
    background:
        radial-gradient(ellipse 48% 55% at 88% 40%, rgba(66, 133, 244, 0.1), transparent 55%),
        radial-gradient(ellipse 40% 50% at 12% 70%, rgba(24, 119, 242, 0.08), transparent 50%),
        #070b14;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-corp-simple .corp-budget-title {
    margin: 0 0 1rem;
    font-size: clamp(1.65rem, 3.6vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #f8fafc;
    text-wrap: balance;
}
body.page-corp-simple .corp-budget-lead {
    margin: 0;
    max-width: 34rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.82);
}
body.page-corp-simple .corp-budget-panel {
    border-radius: 1rem;
    transform: scale(0.92);
    transform-origin: center center;
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(8, 12, 22, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    padding-bottom: 0.85rem;
}
body.page-corp-simple .corp-budget-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-corp-simple .corp-budget-panel-brand {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: 0.02em;
}
body.page-corp-simple .corp-budget-panel-live {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #34d399;
}
body.page-corp-simple .corp-budget-panel-live::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 0.35rem;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
    animation: corp-ai-pulse 1.6s ease-in-out infinite;
    vertical-align: middle;
}
body.page-corp-simple .corp-budget-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.9rem 1rem 0.35rem;
}
body.page-corp-simple .corp-budget-total-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.9);
}
body.page-corp-simple .corp-budget-total-value {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #f8fafc;
}
body.page-corp-simple .corp-budget-channels {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0.55rem 1rem 0.75rem;
}
body.page-corp-simple .corp-budget-channel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}
body.page-corp-simple .corp-budget-channel-name {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #e2e8f0;
}
body.page-corp-simple .corp-budget-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
body.page-corp-simple .corp-budget-dot--meta { background: #1877F2; }
body.page-corp-simple .corp-budget-dot--google { background: #4285F4; }
body.page-corp-simple .corp-budget-channel-pct {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #f8fafc;
}
body.page-corp-simple .corp-budget-bar {
    height: 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.16);
    overflow: hidden;
}
body.page-corp-simple .corp-budget-bar-fill {
    height: 100%;
    border-radius: inherit;
}
body.page-corp-simple .corp-budget-bar-fill--meta {
    width: 58%;
    background: linear-gradient(90deg, #1877F2, #60a5fa);
    animation: corp-budget-meta 4.5s ease-in-out infinite;
}
body.page-corp-simple .corp-budget-bar-fill--google {
    width: 42%;
    background: linear-gradient(90deg, #4285F4, #34d399);
    animation: corp-budget-google 4.5s ease-in-out infinite;
}
body.page-corp-simple .corp-budget-channel-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.9);
}
body.page-corp-simple .corp-budget-channel-meta span:last-child {
    color: #34d399;
}
body.page-corp-simple .corp-budget-split {
    padding: 0.25rem 1rem 0.35rem;
}
body.page-corp-simple .corp-budget-split-track {
    display: flex;
    height: 14px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.8);
}
body.page-corp-simple .corp-budget-split-meta {
    width: 58%;
    background: #1877F2;
    animation: corp-budget-meta 4.5s ease-in-out infinite;
}
body.page-corp-simple .corp-budget-split-google {
    flex: 1;
    background: #4285F4;
}
body.page-corp-simple .corp-budget-split-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(148, 163, 184, 0.85);
}
body.page-corp-simple .corp-budget-footnote {
    margin: 0.55rem 1rem 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.75);
}
@keyframes corp-budget-meta {
    0%, 100% { width: 58%; }
    50% { width: 46%; }
}
@keyframes corp-budget-google {
    0%, 100% { width: 42%; }
    50% { width: 54%; }
}
@media (max-width: 900px) {
    body.page-corp-simple .corp-budget-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
    }
    body.page-corp-simple .corp-budget-visual {
        max-width: 300px;
        margin-left: 0;
        margin-right: auto;
    }
    body.page-corp-simple .corp-budget-panel {
        transform: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    body.page-corp-simple .corp-budget-bar-fill--meta,
    body.page-corp-simple .corp-budget-bar-fill--google,
    body.page-corp-simple .corp-budget-split-meta,
    body.page-corp-simple .corp-budget-panel-live::before {
        animation: none !important;
    }
}

/* Corp — CRM auto-leads section */
body.page-corp-simple .corp-crm-section {
    padding: clamp(3rem, 7vw, 5.5rem) 0;
    background:
        radial-gradient(ellipse 45% 55% at 18% 40%, rgba(52, 211, 153, 0.09), transparent 55%),
        radial-gradient(ellipse 40% 50% at 88% 65%, rgba(56, 189, 248, 0.07), transparent 50%),
        #05080f;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-corp-simple .corp-crm-title {
    margin: 0 0 1rem;
    font-size: clamp(1.65rem, 3.6vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #f8fafc;
    text-wrap: balance;
}
body.page-corp-simple .corp-crm-lead {
    margin: 0;
    max-width: 34rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.82);
}
body.page-corp-simple .corp-crm-panel {
    border-radius: 1rem;
    transform: scale(0.92);
    transform-origin: center center;
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(8, 12, 22, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}
body.page-corp-simple .corp-crm-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-corp-simple .corp-crm-panel-brand {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #f8fafc;
}
body.page-corp-simple .corp-crm-panel-live {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #34d399;
}
body.page-corp-simple .corp-crm-panel-live::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 0.35rem;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
    animation: corp-ai-pulse 1.6s ease-in-out infinite;
    vertical-align: middle;
}
body.page-corp-simple .corp-crm-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.9rem 1rem 0.55rem;
}
body.page-corp-simple .corp-crm-source {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
body.page-corp-simple .corp-crm-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 800;
    color: #fff;
}
body.page-corp-simple .corp-crm-pill--meta { background: #1877F2; }
body.page-corp-simple .corp-crm-pill--google { background: #4285F4; }
body.page-corp-simple .corp-crm-arrow {
    flex: 1;
    height: 2px;
    position: relative;
    background: linear-gradient(90deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.85));
}
body.page-corp-simple .corp-crm-arrow::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #34d399;
    border-top: 2px solid #34d399;
    transform: translateY(-50%) rotate(45deg);
}
body.page-corp-simple .corp-crm-arrow::before {
    content: '';
    position: absolute;
    left: 20%;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.7);
    animation: corp-crm-dot 1.8s linear infinite;
}
body.page-corp-simple .corp-crm-inbox {
    min-width: 52px;
    padding: 0.45rem 0.55rem;
    border-radius: 0.65rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #042f1e;
    background: linear-gradient(135deg, #34d399, #10b981);
}
body.page-corp-simple .corp-crm-leads {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem 0.75rem;
}
body.page-corp-simple .corp-crm-lead-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.55rem;
    align-items: center;
    padding: 0.55rem 0.65rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.16);
}
body.page-corp-simple .corp-crm-lead-item--new {
    border-color: rgba(52, 211, 153, 0.45);
    box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.12);
    animation: corp-crm-flash 2.8s ease-in-out infinite;
}
body.page-corp-simple .corp-crm-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.625rem;
    font-weight: 800;
    color: #fff;
    background: #1877F2;
}
body.page-corp-simple .corp-crm-avatar--2 { background: #4285F4; }
body.page-corp-simple .corp-crm-avatar--3 { background: #0f766e; }
body.page-corp-simple .corp-crm-lead-body {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}
body.page-corp-simple .corp-crm-lead-body strong {
    font-size: 0.75rem;
    font-weight: 700;
    color: #f1f5f9;
}
body.page-corp-simple .corp-crm-lead-body span {
    font-size: 0.625rem;
    color: rgba(148, 163, 184, 0.9);
}
body.page-corp-simple .corp-crm-lead-item em {
    font-style: normal;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #34d399;
}
body.page-corp-simple .corp-crm-seller {
    font-size: 0.625rem;
    font-weight: 700;
    color: rgba(226, 232, 240, 0.75);
    padding: 0.2rem 0.4rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.14);
}
body.page-corp-simple .corp-crm-sellers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 1rem 0.9rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(148, 163, 184, 0.9);
}
body.page-corp-simple .corp-crm-seller-dots {
    display: flex;
    gap: 0.3rem;
}
body.page-corp-simple .corp-crm-seller-dots i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.35);
    border: 1.5px solid rgba(15, 23, 42, 0.9);
}
body.page-corp-simple .corp-crm-seller-dots i:nth-child(1) { background: #34d399; }
body.page-corp-simple .corp-crm-seller-dots i:nth-child(2) { background: #38bdf8; }
body.page-corp-simple .corp-crm-seller-dots i:nth-child(3) { background: #94a3b8; }
@keyframes corp-crm-dot {
    0% { left: 8%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { left: 88%; opacity: 0; }
}
@keyframes corp-crm-flash {
    0%, 100% { background: rgba(255, 255, 255, 0.03); }
    50% { background: rgba(52, 211, 153, 0.1); }
}
@media (max-width: 900px) {
    body.page-corp-simple .corp-crm-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
    }
    body.page-corp-simple .corp-crm-visual {
        max-width: 300px;
        margin-left: 0;
        margin-right: auto;
    }
    body.page-corp-simple .corp-crm-panel {
        transform: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    body.page-corp-simple .corp-crm-arrow::before,
    body.page-corp-simple .corp-crm-lead-item--new,
    body.page-corp-simple .corp-crm-panel-live::before {
        animation: none !important;
    }
}

/* Corp — Loyalty retention section */
body.page-corp-simple .corp-loyalty-section {
    padding: clamp(3rem, 7vw, 5.5rem) 0;
    background:
        radial-gradient(ellipse 48% 55% at 85% 35%, rgba(251, 191, 36, 0.1), transparent 55%),
        radial-gradient(ellipse 40% 50% at 12% 70%, rgba(52, 211, 153, 0.08), transparent 50%),
        #070b14;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-corp-simple .corp-loyalty-title {
    margin: 0 0 1rem;
    font-size: clamp(1.65rem, 3.6vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #f8fafc;
    text-wrap: balance;
}
body.page-corp-simple .corp-loyalty-lead {
    margin: 0;
    max-width: 34rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.82);
}
body.page-corp-simple .corp-loyalty-panel {
    border-radius: 1rem;
    transform: scale(0.92);
    transform-origin: center center;
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(8, 12, 22, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}
body.page-corp-simple .corp-loyalty-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-corp-simple .corp-loyalty-panel-brand {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #f8fafc;
}
body.page-corp-simple .corp-loyalty-panel-live {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fbbf24;
}
body.page-corp-simple .corp-loyalty-panel-live::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 0.35rem;
    border-radius: 50%;
    background: #fbbf24;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.8);
    animation: corp-ai-pulse 1.6s ease-in-out infinite;
    vertical-align: middle;
}
body.page-corp-simple .corp-loyalty-channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.85rem 0.85rem 0.45rem;
}
body.page-corp-simple .corp-loyalty-channel {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem;
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.16);
}
body.page-corp-simple .corp-loyalty-channel strong {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #f1f5f9;
}
body.page-corp-simple .corp-loyalty-channel span {
    font-size: 0.5625rem;
    color: rgba(148, 163, 184, 0.9);
}
body.page-corp-simple .corp-loyalty-channel-icon {
    width: 28px;
    height: 28px;
    border-radius: 0.5rem;
    flex-shrink: 0;
    position: relative;
}
body.page-corp-simple .corp-loyalty-channel-icon--store {
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.35);
}
body.page-corp-simple .corp-loyalty-channel-icon--store::before {
    content: '';
    position: absolute;
    left: 7px;
    right: 7px;
    bottom: 6px;
    height: 10px;
    border: 1.5px solid #34d399;
    border-radius: 2px 2px 0 0;
}
body.page-corp-simple .corp-loyalty-channel-icon--store::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 6px;
    width: 12px;
    height: 8px;
    margin-left: -6px;
    border-left: 1.5px solid #34d399;
    border-right: 1.5px solid #34d399;
    border-top: 1.5px solid #34d399;
    border-radius: 2px 2px 0 0;
    transform: perspective(8px) rotateX(15deg);
}
body.page-corp-simple .corp-loyalty-channel-icon--web {
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.35);
}
body.page-corp-simple .corp-loyalty-channel-icon--web::before {
    content: '';
    position: absolute;
    inset: 7px 6px;
    border: 1.5px solid #38bdf8;
    border-radius: 3px;
}
body.page-corp-simple .corp-loyalty-channel-icon--web::after {
    content: '';
    position: absolute;
    left: 6px;
    right: 6px;
    top: 11px;
    height: 1.5px;
    background: #38bdf8;
}
body.page-corp-simple .corp-loyalty-card {
    margin: 0.45rem 0.85rem 0.65rem;
    padding: 0.85rem;
    border-radius: 0.9rem;
    background:
        radial-gradient(circle at 85% 20%, rgba(251, 191, 36, 0.28), transparent 45%),
        linear-gradient(145deg, #0f172a, #020617);
    border: 1px solid rgba(251, 191, 36, 0.28);
}
body.page-corp-simple .corp-loyalty-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(226, 232, 240, 0.75);
}
body.page-corp-simple .corp-loyalty-tier {
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    color: #422006;
    background: #fbbf24;
    font-size: 0.625rem;
    font-weight: 800;
}
body.page-corp-simple .corp-loyalty-points {
    margin-top: 0.65rem;
}
body.page-corp-simple .corp-loyalty-points strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #f8fafc;
    line-height: 1;
}
body.page-corp-simple .corp-loyalty-points span {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.9);
}
body.page-corp-simple .corp-loyalty-meter {
    margin-top: 0.65rem;
    height: 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.18);
    overflow: hidden;
}
body.page-corp-simple .corp-loyalty-meter-fill {
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #34d399);
    animation: corp-loyalty-meter 3.2s ease-in-out infinite;
}
body.page-corp-simple .corp-loyalty-card-foot {
    display: flex;
    justify-content: space-between;
    margin-top: 0.55rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(203, 213, 225, 0.85);
}
body.page-corp-simple .corp-loyalty-card-foot span:last-child {
    color: #34d399;
}
body.page-corp-simple .corp-loyalty-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    padding: 0 0.85rem 0.95rem;
}
body.page-corp-simple .corp-loyalty-stats div {
    text-align: center;
    padding: 0.45rem 0.25rem;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.14);
}
body.page-corp-simple .corp-loyalty-stats strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 800;
    color: #34d399;
}
body.page-corp-simple .corp-loyalty-stats span {
    font-size: 0.5625rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.9);
}
@keyframes corp-loyalty-meter {
    0%, 100% { width: 62%; }
    50% { width: 84%; }
}
@media (max-width: 900px) {
    body.page-corp-simple .corp-loyalty-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
    }
    body.page-corp-simple .corp-loyalty-visual {
        max-width: 300px;
        margin-left: 0;
        margin-right: auto;
    }
    body.page-corp-simple .corp-loyalty-panel {
        transform: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    body.page-corp-simple .corp-loyalty-meter-fill,
    body.page-corp-simple .corp-loyalty-panel-live::before {
        animation: none !important;
    }
}

/* Corp — Loyalty physical / online cards */
body.page-corp-simple .corp-loyalty-modes {
    padding: 0 0 clamp(3rem, 7vw, 5.5rem);
    background: #070b14;
}
body.page-corp-simple .corp-loyalty-modes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    align-items: stretch;
}
body.page-corp-simple .corp-loyalty-mode {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: clamp(1.35rem, 3vw, 1.85rem);
    border-radius: 1.15rem;
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(8, 12, 22, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}
body.page-corp-simple .corp-loyalty-mode--store {
    border-color: rgba(52, 211, 153, 0.28);
    background:
        radial-gradient(ellipse 70% 50% at 10% 0%, rgba(52, 211, 153, 0.1), transparent 55%),
        linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(8, 12, 22, 0.98));
}
body.page-corp-simple .corp-loyalty-mode--web {
    border-color: rgba(56, 189, 248, 0.28);
    background:
        radial-gradient(ellipse 70% 50% at 90% 0%, rgba(56, 189, 248, 0.1), transparent 55%),
        linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(8, 12, 22, 0.98));
}
body.page-corp-simple .corp-loyalty-mode-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.85rem;
    position: relative;
    flex-shrink: 0;
}
body.page-corp-simple .corp-loyalty-mode-icon--store {
    background: rgba(52, 211, 153, 0.14);
    border: 1px solid rgba(52, 211, 153, 0.35);
}
body.page-corp-simple .corp-loyalty-mode-icon--store::before {
    content: '';
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 10px;
    height: 14px;
    border: 1.7px solid #34d399;
    border-radius: 2px 2px 0 0;
}
body.page-corp-simple .corp-loyalty-mode-icon--store::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 10px;
    width: 18px;
    height: 10px;
    margin-left: -9px;
    border-left: 1.7px solid #34d399;
    border-right: 1.7px solid #34d399;
    border-top: 1.7px solid #34d399;
    border-radius: 3px 3px 0 0;
}
body.page-corp-simple .corp-loyalty-mode-icon--web {
    background: rgba(56, 189, 248, 0.14);
    border: 1px solid rgba(56, 189, 248, 0.35);
}
body.page-corp-simple .corp-loyalty-mode-icon--web::before {
    content: '';
    position: absolute;
    inset: 11px 9px;
    border: 1.7px solid #38bdf8;
    border-radius: 4px;
}
body.page-corp-simple .corp-loyalty-mode-icon--web::after {
    content: '';
    position: absolute;
    left: 9px;
    right: 9px;
    top: 17px;
    height: 1.7px;
    background: #38bdf8;
}
body.page-corp-simple .corp-loyalty-mode-title {
    margin: 0;
    font-size: clamp(1.15rem, 2.4vw, 1.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #f8fafc;
}
body.page-corp-simple .corp-loyalty-mode-text {
    margin: 0;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.82);
}
@media (max-width: 800px) {
    body.page-corp-simple .corp-loyalty-modes-grid {
        grid-template-columns: 1fr;
    }
}

/* Corp — Loyalty tools: image left + text right */
body.page-corp-simple .corp-loyalty-tools {
    padding: 0 0 clamp(3rem, 7vw, 5.5rem);
    background: #05080f;
}
body.page-corp-simple .corp-loyalty-tools-list {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}
body.page-corp-simple .corp-loyalty-tool {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(1.35rem, 3vw, 2.25rem);
    column-gap: clamp(1.5rem, 3.5vw, 2.5rem);
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}
body.page-corp-simple .corp-loyalty-tool-media {
    flex: 0 1 340px;
    width: 100%;
    max-width: 340px;
}
body.page-corp-simple .corp-loyalty-tool-copy {
    flex: 1 1 17rem;
    max-width: 28rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
body.page-corp-simple .corp-loyalty-tool-visual {
    position: relative;
    min-height: 200px;
    width: 100%;
    border-radius: 1.15rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}
body.page-corp-simple .corp-loyalty-tool-visual--data {
    background:
        radial-gradient(ellipse 70% 60% at 20% 20%, rgba(56, 189, 248, 0.22), transparent 55%),
        linear-gradient(160deg, #0f172a, #020617);
    border-color: rgba(56, 189, 248, 0.3);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}
body.page-corp-simple .corp-ltv-stack {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
body.page-corp-simple .corp-ltv-stack span {
    display: block;
    height: 34px;
    border-radius: 0.55rem;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.28);
}
body.page-corp-simple .corp-ltv-stack span:nth-child(1) { width: 92%; }
body.page-corp-simple .corp-ltv-stack span:nth-child(2) { width: 78%; opacity: 0.85; }
body.page-corp-simple .corp-ltv-stack span:nth-child(3) { width: 64%; opacity: 0.7; }
body.page-corp-simple .corp-ltv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
body.page-corp-simple .corp-ltv-tags em {
    font-style: normal;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    color: #e0f2fe;
    background: rgba(56, 189, 248, 0.16);
    border: 1px solid rgba(56, 189, 248, 0.3);
}
body.page-corp-simple .corp-loyalty-tool-visual--campaigns {
    background:
        radial-gradient(ellipse 60% 50% at 80% 15%, rgba(251, 191, 36, 0.25), transparent 50%),
        linear-gradient(160deg, #0f172a, #020617);
    border-color: rgba(251, 191, 36, 0.3);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    justify-content: center;
}
body.page-corp-simple .corp-ltv-code {
    align-self: flex-start;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #422006;
    background: #fbbf24;
    padding: 0.55rem 0.85rem;
    border-radius: 0.65rem;
}
body.page-corp-simple .corp-ltv-burn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0.75rem;
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.18);
}
body.page-corp-simple .corp-ltv-burn span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(203, 213, 225, 0.85);
}
body.page-corp-simple .corp-ltv-burn strong {
    font-size: 0.95rem;
    font-weight: 800;
    color: #34d399;
}
body.page-corp-simple .corp-ltv-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    height: 52px;
}
body.page-corp-simple .corp-ltv-bars i {
    flex: 1;
    border-radius: 0.3rem 0.3rem 0 0;
    background: linear-gradient(180deg, #fbbf24, rgba(251, 191, 36, 0.25));
}
body.page-corp-simple .corp-ltv-bars i:nth-child(1) { height: 45%; }
body.page-corp-simple .corp-ltv-bars i:nth-child(2) { height: 70%; }
body.page-corp-simple .corp-ltv-bars i:nth-child(3) { height: 55%; }
body.page-corp-simple .corp-ltv-bars i:nth-child(4) { height: 92%; }
body.page-corp-simple .corp-loyalty-tool-visual--booking {
    background:
        radial-gradient(ellipse 60% 55% at 25% 80%, rgba(52, 211, 153, 0.22), transparent 55%),
        linear-gradient(160deg, #0f172a, #020617);
    border-color: rgba(52, 211, 153, 0.3);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    justify-content: center;
}
body.page-corp-simple .corp-ltv-cal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}
body.page-corp-simple .corp-ltv-cal span {
    aspect-ratio: 1.15;
    border-radius: 0.45rem;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.22);
}
body.page-corp-simple .corp-ltv-cal span:nth-child(2),
body.page-corp-simple .corp-ltv-cal span:nth-child(5) {
    background: rgba(52, 211, 153, 0.28);
    border-color: rgba(52, 211, 153, 0.55);
}
body.page-corp-simple .corp-ltv-reward {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.7rem 0.8rem;
    border-radius: 0.7rem;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.3);
}
body.page-corp-simple .corp-ltv-reward strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: #34d399;
}
body.page-corp-simple .corp-ltv-reward span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(203, 213, 225, 0.85);
}
body.page-corp-simple .corp-loyalty-tool-title {
    margin: 0;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.25;
    color: #f8fafc;
    text-wrap: balance;
}
body.page-corp-simple .corp-loyalty-tool-text {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.82);
}
@media (max-width: 800px) {
    body.page-corp-simple .corp-loyalty-tool {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    body.page-corp-simple .corp-loyalty-tool-media {
        max-width: 300px;
    }
    body.page-corp-simple .corp-loyalty-tool-visual {
        min-height: 180px;
        max-width: 300px;
    }
}


/* Corp CTA form on dark page */
body.page-corp-simple .corp-cta-section {
    background:
        radial-gradient(ellipse 55% 60% at 50% 0%, rgba(52, 211, 153, 0.1), transparent 55%),
        #070b14;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-corp-simple .corp-cta-section .cta-title {
    color: #f8fafc;
}
body.page-corp-simple .corp-cta-section .cta-description {
    color: rgba(203, 213, 225, 0.82);
}
body.page-corp-simple .corp-cta-section .cta-form input {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.28);
    color: #f8fafc;
}
body.page-corp-simple .corp-cta-section .cta-form input::placeholder {
    color: rgba(148, 163, 184, 0.75);
}

/* Loyalty / education tutorials */
.tutorial-page .knowledge-hero {
    padding-top: 2rem;
}
.tutorial-wrap {
    padding: 3.5rem 0 5rem;
    background: var(--bg-dark);
}
.tutorial-crumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    color: rgba(226, 232, 240, 0.62);
}
.tutorial-crumb a {
    color: #7dd3fc;
    text-decoration: none;
}
.tutorial-crumb a:hover { color: #fff; }
.tutorial-intro {
    max-width: 42rem;
    color: rgba(226, 232, 240, 0.82);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 2.5rem;
}
.tutorial-step {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.15rem;
    margin: 0 0 3.25rem;
    padding-bottom: 3.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.tutorial-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.tutorial-step-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7dd3fc;
}
.tutorial-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 999px;
    background: #7dd3fc;
    color: #0b1220;
    font-size: 0.78rem;
    letter-spacing: 0;
}
.tutorial-step h2 {
    margin: 0 0 0.7rem;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    color: #f8fafc;
}
.tutorial-step p,
.tutorial-step li {
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.65;
}
.tutorial-step ul {
    margin: 0.4rem 0 0;
    padding-left: 1.15rem;
}
.tutorial-shot {
    margin: 0.35rem 0 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0b1220;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.tutorial-shot img {
    display: block;
    width: 100%;
    height: auto;
}
.tutorial-tip {
    margin: 0.85rem 0 0;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(125, 211, 252, 0.08);
    border: 1px solid rgba(125, 211, 252, 0.22);
    color: rgba(226, 232, 240, 0.88);
    font-size: 0.95rem;
}
.tutorial-fields {
    display: grid;
    gap: 0.65rem;
    margin: 0.85rem 0 0;
}
.tutorial-field {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.tutorial-field strong {
    display: block;
    color: #fff;
    margin-bottom: 0.2rem;
}
.tutorial-field span,
.tutorial-field p {
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.92rem;
    margin: 0;
}
