/* =============================================
   ARCOL GROUP LLC — Premium CSS
   Slate + Teal | Business Growth Consulting
   ============================================= */

/* ---- Variables ---- */
:root {
    --slate-darkest: #060D1A;
    --slate-dark: #0B1121;
    --slate-base: #0F1729;
    --slate-medium: #162040;
    --slate-light: #1E3055;
    --slate-card: #111B30;
    --slate-card-hover: #152238;
    --teal-dark: #009E7A;
    --teal-base: #00E5B0;
    --teal-medium: #33EDCA;
    --teal-light: #66F2D8;
    --teal-bright: #99F7E5;
    --white: #FFFFFF;
    --text-primary: #E8EDF4;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border-subtle: rgba(0, 229, 176, 0.10);
    --border-teal: rgba(0, 229, 176, 0.35);
    --gradient-teal: linear-gradient(135deg, #00E5B0 0%, #00D4FF 50%, #00E5B0 100%);
    --gradient-teal-shine: linear-gradient(90deg, #00E5B0, #66F2D8, #00E5B0);
    --gradient-bg: linear-gradient(180deg, #060D1A 0%, #0F1729 100%);
    --shadow-teal: 0 0 30px rgba(0, 229, 176, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-card-hover: 0 12px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 229, 176, 0.2);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--slate-darkest);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background: rgba(0, 229, 176, 0.3); color: var(--white); }

/* ---- Utilities ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.gradient-text {
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-base);
    background: rgba(0, 229, 176, 0.1);
    border: 1px solid rgba(0, 229, 176, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--teal-base);
    color: var(--slate-darkest);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-primary:hover {
    background: var(--teal-medium);
    box-shadow: 0 0 24px rgba(0, 229, 176, 0.3), 0 0 60px rgba(0, 229, 176, 0.1);
    transform: translateY(-2px);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--teal-base);
    font-weight: 600;
    font-size: 0.9375rem;
    border: 1.5px solid var(--border-teal);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.btn-secondary:hover {
    background: rgba(0, 229, 176, 0.08);
    border-color: var(--teal-base);
    transform: translateY(-2px);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(0, 229, 176, 0.05);
    color: var(--teal-light);
    font-weight: 500;
    font-size: 0.9375rem;
    border: 1px solid rgba(0, 229, 176, 0.15);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.btn-ghost:hover {
    background: rgba(0, 229, 176, 0.12);
    border-color: rgba(0, 229, 176, 0.3);
    transform: translateY(-1px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-xl { padding: 20px 44px; font-size: 1.0625rem; border-radius: var(--radius-lg); }
.btn-block { width: 100%; justify-content: center; text-align: center; }

/* ---- Cookie Banner ---- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--slate-base);
    border-top: 1px solid var(--border-subtle);
    padding: 20px 0;
    display: none;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-banner.visible { opacity: 1; transform: translateY(0); }
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-text { display: flex; align-items: flex-start; gap: 12px; flex: 1; min-width: 280px; }
.cookie-text p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }
.cookie-text a { color: var(--teal-base); text-decoration: underline; }
.cookie-icon { color: var(--teal-base); flex-shrink: 0; margin-top: 2px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.cookie-accept { background: var(--teal-base); color: var(--slate-darkest); }
.cookie-accept:hover { background: var(--teal-medium); }
.cookie-reject { background: transparent; color: var(--text-secondary); border: 1px solid rgba(255,255,255,0.1); }
.cookie-reject:hover { border-color: rgba(255,255,255,0.2); color: var(--text-primary); }
.cookie-customize { background: transparent; color: var(--teal-base); border: 1px solid var(--border-teal); }
.cookie-customize:hover { background: rgba(0, 229, 176, 0.08); }

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cookie-modal.visible { opacity: 1; }
.cookie-modal-content {
    background: var(--slate-base);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--border-subtle);
}
.cookie-modal-header h3 { font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: var(--white); }
.cookie-modal-close { color: var(--text-muted); transition: var(--transition); }
.cookie-modal-close:hover { color: var(--white); }
.cookie-modal-body { padding: 24px; }
.cookie-toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cookie-toggle-item:last-child { border-bottom: none; }
.cookie-toggle-info strong { display: block; font-size: 0.9375rem; color: var(--text-primary); margin-bottom: 4px; }
.cookie-toggle-info p { font-size: 0.8125rem; color: var(--text-muted); }
.toggle-switch {
    width: 48px;
    height: 26px;
    background: var(--slate-light);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.toggle-switch.active { background: var(--teal-base); }
.toggle-switch.disabled { opacity: 0.7; cursor: not-allowed; }
.toggle-thumb {
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: var(--transition);
}
.toggle-switch.active .toggle-thumb { left: 25px; }
.cookie-modal-footer {
    display: flex;
    gap: 10px;
    padding: 16px 24px 24px;
    justify-content: flex-end;
}

/* ---- Navigation ---- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}
#navbar.scrolled {
    background: rgba(6, 13, 26, 0.92);
    backdrop-filter: blur(16px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal-base); }
.lang-switcher {
    display: flex;
    gap: 4px;
    padding: 3px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
}
.lang-btn {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    color: var(--text-muted);
    transition: var(--transition);
}
.lang-btn.active, .lang-btn[aria-pressed="true"] {
    background: var(--teal-base);
    color: var(--slate-darkest);
}
.nav-cta {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 10px 22px;
    background: var(--teal-base);
    color: var(--slate-darkest);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    flex-shrink: 0;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--teal-medium);
    box-shadow: 0 0 20px rgba(0, 229, 176, 0.25);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 20px;
    position: relative;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero Section ---- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: var(--gradient-bg);
}
#particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.4;
}
.orb-1 { width: 500px; height: 500px; background: rgba(0, 229, 176, 0.12); top: -10%; right: -5%; animation: float 8s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: rgba(0, 212, 255, 0.08); bottom: 10%; left: -10%; animation: float 10s ease-in-out infinite reverse; }
.orb-3 { width: 300px; height: 300px; background: rgba(0, 229, 176, 0.06); top: 50%; left: 40%; animation: float 12s ease-in-out infinite 2s; }
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 176, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 176, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--teal-base);
    background: rgba(0, 229, 176, 0.08);
    border: 1px solid rgba(0, 229, 176, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
}
.hero-badge svg { stroke: var(--teal-base); }
.hero-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 14px; }
.hero-trust-avatars { display: flex; }
.trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    border: 2px solid var(--slate-darkest);
    margin-left: -8px;
}
.trust-avatar:first-child { margin-left: 0; }
.hero-trust-text { font-size: 0.875rem; color: var(--text-secondary); }
.hero-trust-text strong { color: var(--text-primary); }

/* Hero Performance Cards */
.hero-cards { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); z-index: 3; display: flex; flex-direction: column; gap: 16px; }
.perf-card {
    background: rgba(17, 27, 48, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 20px;
    min-width: 220px;
    box-shadow: var(--shadow-card);
}
.perf-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 0.75rem; color: var(--text-muted); }
.perf-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-base); animation: pulse 2s ease-in-out infinite; }
.perf-dot-green { background: #22C55E; }
.perf-amount { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--teal-base); font-weight: 400; }
.perf-desc { font-size: 0.8125rem; color: var(--text-muted); margin: 4px 0 12px; }
.perf-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--teal-base);
    background: rgba(0, 229, 176, 0.1);
    border: 1px solid rgba(0, 229, 176, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
}
.perf-metric-row { display: flex; gap: 24px; }
.perf-metric-value { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--white); }
.perf-metric-label { font-size: 0.75rem; color: var(--text-muted); }

/* ---- Trust Bar ---- */
.trust-bar {
    background: var(--slate-dark);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 32px 0;
    overflow: hidden;
}
.trust-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.trust-bar-label {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}
.marquee-wrapper { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; gap: 48px; animation: marquee 30s linear infinite; width: max-content; }
.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.6;
    transition: var(--transition);
}
.marquee-item:hover { opacity: 1; color: var(--teal-base); }
.marquee-item svg { stroke: var(--text-muted); }
.marquee-item:hover svg { stroke: var(--teal-base); }

/* ---- Stats Section ---- */
.stats-section { padding: 80px 0; background: var(--slate-darkest); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--slate-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--border-teal);
}
.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(0, 229, 176, 0.08);
    border: 1px solid rgba(0, 229, 176, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}
.stat-icon svg { stroke: var(--teal-base); }
.stat-number-wrap { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 8px; }
.stat-prefix, .stat-suffix { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--teal-base); }
.stat-number { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.9375rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.stat-sublabel { font-size: 0.8125rem; color: var(--text-muted); }

/* ---- Services Section ---- */
.services-section { padding: 100px 0; background: var(--slate-dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    padding: 36px 28px;
    background: var(--slate-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-teal);
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--border-teal);
}
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(0, 229, 176, 0.08);
    border: 1px solid rgba(0, 229, 176, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
    background: rgba(0, 229, 176, 0.15);
    border-color: rgba(0, 229, 176, 0.3);
    box-shadow: 0 0 20px rgba(0, 229, 176, 0.15);
}
.service-icon-wrap svg { stroke: var(--teal-base); }
.service-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}
.service-card p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.service-features li {
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}
.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-base);
    opacity: 0.5;
}

/* ---- Results / Bento Grid ---- */
.results-section { padding: 100px 0; background: var(--slate-darkest); }
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
}
.bento-card {
    background: var(--slate-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}
.bento-card:hover { border-color: var(--border-teal); box-shadow: var(--shadow-teal); }
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-stat { grid-column: span 1; }
.bento-highlight { grid-column: span 2; }
.bento-metric { grid-column: span 1; }
.bento-image { grid-column: span 2; position: relative; overflow: hidden; min-height: 180px; }
.bento-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-base); margin-bottom: 12px; font-weight: 600; }
.bento-big-number { font-family: 'DM Serif Display', serif; font-size: 3.5rem; color: var(--white); line-height: 1; margin-bottom: 12px; }
.bento-big-number span { color: var(--teal-base); }
.bento-desc { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.bento-bar-chart { display: flex; align-items: flex-end; gap: 10px; height: 120px; }
.bar-item { flex: 1; display: flex; flex-direction: column; align-items: center; height: 100%; justify-content: flex-end; }
.bar {
    width: 100%;
    background: var(--gradient-teal);
    border-radius: 6px 6px 0 0;
    opacity: 0.7;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.bar span { position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%); font-size: 0.6875rem; color: var(--text-muted); white-space: nowrap; }
.bento-icon { margin-bottom: 16px; }
.bento-icon svg { stroke: var(--teal-base); }
.bento-stat-number { font-family: 'DM Serif Display', serif; font-size: 2.25rem; color: var(--white); margin-bottom: 4px; }
.bento-stat-label { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 16px; }
.bento-progress { height: 6px; background: var(--slate-light); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.progress-bar { height: 100%; background: var(--gradient-teal); border-radius: 3px; width: 0; transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1); }
.bento-compare { font-size: 0.75rem; color: var(--text-muted); }
.bento-quote-icon { margin-bottom: 16px; }
.bento-quote-icon svg { fill: var(--teal-base); }
.bento-quote { font-size: 1.0625rem; color: var(--text-primary); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.bento-author { display: flex; align-items: center; gap: 12px; }
.bento-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
}
.bento-author strong { display: block; font-size: 0.875rem; color: var(--white); }
.bento-author span { font-size: 0.8125rem; color: var(--text-muted); }
.bento-metric-icon { margin-bottom: 16px; }
.bento-metric-icon svg { stroke: var(--teal-base); }
.bento-metric-value { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--white); margin-bottom: 4px; }
.bento-metric-label { font-size: 0.875rem; color: var(--text-secondary); }
.bento-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 160px;
    background: linear-gradient(135deg, var(--slate-medium), var(--slate-dark));
    border-radius: var(--radius-md);
}
.bento-image-overlay {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
}
.bento-image-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-base);
    background: rgba(0, 229, 176, 0.12);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 8px;
}
.bento-image-overlay p { font-size: 0.875rem; color: var(--text-secondary); }

/* ---- Process Section ---- */
.process-section { padding: 100px 0; background: var(--slate-dark); }
.process-timeline { position: relative; max-width: 800px; margin: 0 auto; }
.process-connector {
    position: absolute;
    left: 32px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--teal-base), rgba(0, 229, 176, 0.1));
}
.process-step { display: flex; gap: 32px; margin-bottom: 48px; position: relative; }
.process-step:last-child { margin-bottom: 0; }
.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--teal-base);
    background: var(--slate-base);
    border: 2px solid var(--border-teal);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}
.step-content { flex: 1; padding-top: 8px; }
.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 229, 176, 0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}
.step-icon svg { stroke: var(--teal-base); }
.step-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 8px;
}
.step-content p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; }

/* ---- Testimonials Section ---- */
.testimonials-section { padding: 100px 0; background: var(--slate-darkest); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    padding: 32px;
    background: var(--slate-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--border-teal); }
.testimonial-featured {
    border-color: var(--border-teal);
    background: linear-gradient(135deg, var(--slate-card), var(--slate-medium));
    box-shadow: var(--shadow-teal);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testimonial-stars svg { fill: var(--teal-base); }
.testimonial-card blockquote {
    font-size: 0.9375rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.testimonial-info strong { display: block; font-size: 0.9375rem; color: var(--white); }
.testimonial-info span { font-size: 0.8125rem; color: var(--text-muted); }
.testimonial-result { margin-top: auto; }
.result-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--teal-base);
    background: rgba(0, 229, 176, 0.1);
    border: 1px solid rgba(0, 229, 176, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
}

/* ---- Pricing Section ---- */
.pricing-section { padding: 100px 0; background: var(--slate-dark); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
    padding: 36px 28px;
    background: var(--slate-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.pricing-popular {
    border-color: var(--teal-base);
    box-shadow: var(--shadow-teal);
    transform: scale(1.02);
    background: linear-gradient(135deg, var(--slate-card), var(--slate-medium));
}
.pricing-popular:hover { transform: scale(1.02) translateY(-4px); }
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-darkest);
    background: var(--gradient-teal);
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
}
.pricing-header { text-align: center; margin-bottom: 24px; }
.pricing-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(0, 229, 176, 0.08);
    border: 1px solid rgba(0, 229, 176, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}
.pricing-icon svg { stroke: var(--teal-base); }
.pricing-header h3 { font-family: 'DM Serif Display', serif; font-size: 1.375rem; color: var(--white); margin-bottom: 4px; }
.pricing-tagline { font-size: 0.875rem; color: var(--text-muted); }
.pricing-price { text-align: center; padding: 20px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); margin-bottom: 24px; }
.price-label { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.price-main { display: block; font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--white); }
.price-sub { display: block; font-size: 0.8125rem; color: var(--text-muted); margin-top: 4px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-primary); }
.pricing-features li svg { flex-shrink: 0; stroke: var(--teal-base); }
.pricing-feature-dim { opacity: 0.4; }
.pricing-feature-dim svg { stroke: var(--text-muted) !important; }
.pricing-note { text-align: center; font-size: 0.8125rem; color: var(--text-muted); margin-top: 16px; }

/* ---- FAQ Section ---- */
.faq-section { padding: 100px 0; background: var(--slate-darkest); }
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--slate-card);
}
.faq-item:hover { border-color: var(--border-teal); }
.faq-item.active { border-color: var(--teal-base); box-shadow: var(--shadow-teal); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    border: none;
    font-family: inherit;
}
.faq-question:hover { color: var(--teal-base); }
.faq-icon { transition: transform 0.3s ease; flex-shrink: 0; stroke: var(--text-muted); }
.faq-item.active .faq-icon { transform: rotate(180deg); stroke: var(--teal-base); }
.faq-answer { padding: 0 24px; }
.faq-answer p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; }
.faq-cta { text-align: center; margin-top: 48px; }
.faq-cta p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 16px; }

/* ---- Final CTA Section ---- */
.final-cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--slate-dark);
}
.final-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 229, 176, 0.06) 0%, transparent 70%);
}
.final-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.final-cta-orb-1 { width: 400px; height: 400px; background: rgba(0, 229, 176, 0.1); top: -20%; right: 10%; animation: float 8s ease-in-out infinite; }
.final-cta-orb-2 { width: 350px; height: 350px; background: rgba(0, 212, 255, 0.06); bottom: -20%; left: 10%; animation: float 10s ease-in-out infinite reverse; }
.final-cta-content { text-align: center; position: relative; z-index: 2; }
.final-cta-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    margin: 20px 0;
    line-height: 1.15;
}
.final-cta-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.final-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 40px; }
.final-cta-note { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--text-muted); }
.final-cta-note svg { stroke: var(--teal-base); flex-shrink: 0; }
.final-cta-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.final-stat { text-align: center; }
.final-stat strong { display: block; font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--white); }
.final-stat span { font-size: 0.8125rem; color: var(--text-muted); }
.final-stat-divider { width: 1px; height: 40px; background: var(--border-subtle); }

/* ---- Contact Section ---- */
.contact-section { padding: 100px 0; background: var(--slate-darkest); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 229, 176, 0.08);
    border: 1px solid rgba(0, 229, 176, 0.15);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.contact-detail-icon svg { stroke: var(--teal-base); }
.contact-detail strong { display: block; font-size: 0.875rem; color: var(--text-primary); margin-bottom: 2px; }
.contact-detail span, .contact-detail a { font-size: 0.875rem; color: var(--text-secondary); }
.contact-detail a:hover { color: var(--teal-base); }
.contact-trust-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.trust-badge-item svg { stroke: var(--teal-base); }

/* Contact Form */
.contact-form-wrap {
    background: var(--slate-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--slate-base);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9375rem;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-base);
    box-shadow: 0 0 0 3px rgba(0, 229, 176, 0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #EF4444; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-group select option { background: var(--slate-base); color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-error { font-size: 0.75rem; color: #EF4444; margin-top: 4px; display: none; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0; }
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    flex-shrink: 0;
    transition: var(--transition);
    margin-top: 2px;
}
.checkbox-label input:checked ~ .checkmark {
    background: var(--teal-base);
    border-color: var(--teal-base);
}
.checkbox-label input:checked ~ .checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid var(--slate-darkest);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}
.checkbox-label a { color: var(--teal-base); text-decoration: underline; }
.btn-submit { margin-top: 8px; position: relative; }
.btn-loading { display: none; align-items: center; gap: 8px; }
.spin { animation: spin 1s linear infinite; }
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 40px 20px;
}
.form-success svg { stroke: var(--teal-base); width: 48px; height: 48px; }
.form-success strong { font-size: 1.25rem; color: var(--white); }
.form-success p { color: var(--text-secondary); }

/* ---- Footer ---- */
.footer { background: var(--slate-base); border-top: 1px solid var(--border-subtle); }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { }
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-socials a:hover { background: rgba(0, 229, 176, 0.12); color: var(--teal-base); }
.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: var(--text-muted); transition: var(--transition); }
.footer-col a:hover { color: var(--teal-base); }
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p { font-size: 0.8125rem; color: var(--text-muted); }
.footer-bottom-badges { display: flex; gap: 20px; }
.footer-bottom-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.footer-bottom-badges svg { stroke: var(--text-muted); }

/* ---- Keyframes ---- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ---- Scroll Animations ---- */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-down"] { transform: translateY(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .hero-cards { display: none; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 2; }
    .bento-highlight { grid-column: span 2; }
    .bento-image { grid-column: span 2; }
}

@media (max-width: 1024px) {
    .nav-links, .lang-switcher, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: var(--slate-darkest);
        z-index: 999;
        padding: 100px 24px 40px;
        gap: 0;
        align-items: stretch;
    }
    .nav-links.open a {
        font-size: 1.25rem;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-subtle);
        color: var(--text-primary);
    }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-popular { transform: none; }
    .pricing-popular:hover { transform: translateY(-4px); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-highlight, .bento-image { grid-column: span 1; }
    .process-connector { left: 31px; }
    .hero-title { font-size: clamp(2rem, 5vw, 3rem); }
    .final-cta-stats { flex-direction: column; gap: 16px; }
    .final-stat-divider { width: 40px; height: 1px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-lg { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; }
    .cookie-content { flex-direction: column; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section-header { margin-bottom: 40px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { padding: 24px 16px; }
    .service-card { padding: 24px 20px; }
    .contact-form-wrap { padding: 24px 20px; }
}
