/* ══════════════════════════════════════════════
   WatuHRM Marketing Website — Modern Design
   ══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
    /* ── Primary Blue ── */
    --primary: #2563eb;
    --primary-rgb: 37,99,235;
    --primary-dark: #1d4ed8;
    --primary-darker: #1e3a8a;
    --primary-light: #dbeafe;
    --primary-lighter: #eff6ff;

    /* ── Secondary Green ── */
    --secondary: #059669;
    --secondary-rgb: 5,150,105;
    --secondary-dark: #047857;
    --secondary-light: #d1fae5;

    /* ── Accent Amber ── */
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fef3c7;

    /* ── Purple ── */
    --purple: #7c3aed;
    --purple-light: #ede9fe;

    /* ── Pink ── */
    --pink: #ec4899;
    --pink-light: #fce7f3;

    /* ── Neutrals ── */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --gray-950: #020617;

    /* ── Typography ── */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Plus Jakarta Sans', var(--font-body);

    /* ── Shadows ── */
    --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --shadow: 0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -2px rgba(0,0,0,.06);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.06);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.06);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.2);
    --shadow-glow-blue: 0 0 50px -12px rgba(var(--primary-rgb),.4);
    --shadow-glow-green: 0 0 50px -12px rgba(var(--secondary-rgb),.4);

    /* ── Radii ── */
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.25rem;
    --radius-full: 999px;

    /* ── Layout ── */
    --max-w: 1200px;
    --nav-h: 76px;
}

/* ── RESET + BASE ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 8px); }
body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ── NAVBAR ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(16px) saturate(1.8);
    -webkit-backdrop-filter: blur(16px) saturate(1.8);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: all .35s cubic-bezier(.4,0,.2,1);
}
.navbar.scrolled {
    background: rgba(255,255,255,.95);
    box-shadow: 0 1px 3px rgba(0,0,0,.08), 0 8px 30px rgba(0,0,0,.04);
}
.navbar .container {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--nav-h);
}
.navbar-logo { display: flex; align-items: center; gap: .5rem; }
.navbar-logo img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nav-links a {
    color: var(--gray-600); font-size: .925rem; font-weight: 500;
    padding: .5rem 1rem; border-radius: var(--radius);
    transition: all .2s;
}
.nav-links a:hover { color: var(--primary); background: var(--primary-lighter); }
.nav-cta {
    background: var(--primary) !important; color: var(--white) !important;
    padding: .6rem 1.5rem !important; border-radius: var(--radius-full) !important;
    font-weight: 600 !important; margin-left: .5rem;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb),.3);
    transition: all .25s !important;
}
.nav-cta:hover {
    background: var(--primary-dark) !important;
    box-shadow: 0 4px 16px rgba(var(--primary-rgb),.4) !important;
    transform: translateY(-1px);
}
.menu-toggle {
    display: none; background: none; border: 1px solid var(--gray-200);
    cursor: pointer; font-size: 1.25rem; color: var(--gray-700);
    padding: .5rem .75rem; border-radius: var(--radius);
    transition: all .2s;
}
.menu-toggle:hover { background: var(--gray-50); border-color: var(--gray-300); }

/* ── HERO ── */
.hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--gray-950) 0%, var(--primary-darker) 40%, var(--primary-dark) 70%, #3b82f6 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(var(--primary-rgb),.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124,58,237,.2) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(5,150,105,.15) 0%, transparent 40%);
}
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='.6' fill='%23ffffff' fill-opacity='.07'/%3E%3C/svg%3E");
}
.hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center;
}
.hero-text h1 {
    font-family: var(--font-display);
    font-size: 3.5rem; font-weight: 800; line-height: 1.1;
    margin-bottom: 1.5rem; letter-spacing: -.03em;
}
.hero-text h1 span {
    background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-text p {
    font-size: 1.15rem; line-height: 1.8; opacity: .85;
    max-width: 520px; margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero floating shapes */
.hero-shape {
    position: absolute; border-radius: 50%; opacity: .1;
    animation: float 20s infinite ease-in-out;
}
.hero-shape-1 { width: 400px; height: 400px; background: var(--accent); top: -100px; right: -100px; animation-delay: 0s; }
.hero-shape-2 { width: 300px; height: 300px; background: var(--secondary); bottom: -80px; left: -80px; animation-delay: -7s; }
.hero-shape-3 { width: 200px; height: 200px; background: var(--purple); top: 50%; left: 50%; animation-delay: -14s; }

@keyframes float {
    0%,100% { transform: translate(0,0) scale(1); }
    25% { transform: translate(30px,-30px) scale(1.05); }
    50% { transform: translate(-20px,20px) scale(.95); }
    75% { transform: translate(20px,10px) scale(1.02); }
}

/* Hero dashboard mockup */
.hero-mockup {
    position: relative;
    perspective: 1000px;
}
.dashboard-preview {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 50px 100px -20px rgba(0,0,0,.5), 0 30px 60px -30px rgba(0,0,0,.4);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform .6s cubic-bezier(.4,0,.2,1);
    animation: mockupFloat 6s ease-in-out infinite;
}
.dashboard-preview:hover { transform: rotateY(0) rotateX(0); }

@keyframes mockupFloat {
    0%,100% { transform: rotateY(-5deg) rotateX(2deg) translateY(0); }
    50% { transform: rotateY(-5deg) rotateX(2deg) translateY(-10px); }
}

.dash-chrome {
    background: var(--gray-100);
    padding: .6rem 1rem;
    display: flex; align-items: center; gap: .4rem;
    border-bottom: 1px solid var(--gray-200);
}
.dash-dot {
    width: 10px; height: 10px; border-radius: 50%;
}
.dash-dot:nth-child(1) { background: #ef4444; }
.dash-dot:nth-child(2) { background: var(--accent); }
.dash-dot:nth-child(3) { background: var(--secondary); }
.dash-url {
    margin-left: .75rem; background: var(--white);
    border-radius: var(--radius); padding: .2rem .75rem;
    font-size: .7rem; color: var(--gray-400); flex: 1;
    max-width: 200px; border: 1px solid var(--gray-200);
}
.dash-body { padding: 1.25rem; background: var(--gray-50); }
.dash-stats {
    display: grid; grid-template-columns: repeat(4,1fr); gap: .6rem;
    margin-bottom: 1rem;
}
.dash-stat-card {
    background: var(--white); border-radius: var(--radius);
    padding: .6rem .75rem; border: 1px solid var(--gray-200);
}
.dash-stat-card .label { font-size: .55rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .03em; }
.dash-stat-card .value { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); }
.dash-stat-card .value.blue { color: var(--primary); }
.dash-stat-card .value.green { color: var(--secondary); }
.dash-stat-card .value.amber { color: var(--accent-dark); }
.dash-stat-card .value.purple { color: var(--purple); }
.dash-charts {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: .6rem;
}
.dash-chart-box {
    background: var(--white); border-radius: var(--radius);
    padding: .75rem; border: 1px solid var(--gray-200);
}
.dash-chart-box .chart-title {
    font-size: .6rem; font-weight: 600; color: var(--gray-600);
    margin-bottom: .5rem;
}
.dash-bars { display: flex; align-items: flex-end; gap: 4px; height: 60px; }
.dash-bar {
    flex: 1; border-radius: 2px 2px 0 0;
    transition: height .3s;
}
.dash-list-item {
    display: flex; align-items: center; gap: .5rem;
    padding: .35rem 0; border-bottom: 1px solid var(--gray-100);
    font-size: .6rem; color: var(--gray-600);
}
.dash-list-dot {
    width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.dash-list-bar {
    height: 4px; border-radius: 2px; margin-left: auto;
}

/* ── WAVE DIVIDERS ── */
.wave-divider {
    display: block; width: 100%; line-height: 0;
    position: relative; z-index: 1;
}
.wave-divider svg { display: block; width: 100%; height: auto; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: .8rem 2rem; border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: .95rem; font-weight: 600; border: none; cursor: pointer;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    text-decoration: none; gap: .5rem;
    position: relative; overflow: hidden;
}
.btn::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(rgba(255,255,255,.2), transparent);
    opacity: 0; transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(var(--secondary-rgb),.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--secondary-rgb),.45);
}
.btn-outline-white {
    background: rgba(255,255,255,.1); color: var(--white);
    border: 2px solid rgba(255,255,255,.3);
    backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6);
    transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--gray-900);
    box-shadow: 0 4px 14px rgba(245,158,11,.35);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,.45); }
.btn-primary-blue {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(var(--primary-rgb),.35);
}
.btn-primary-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb),.45);
}

/* ── SECTIONS ── */
section { padding: 6rem 0; position: relative; }
.section-light { background: var(--gray-50); }
.section-dark { background: var(--gray-950); color: var(--white); }
.section-dark::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(var(--primary-rgb),.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(124,58,237,.06) 0%, transparent 50%);
    pointer-events: none;
}
.section-header {
    text-align: center; max-width: 680px; margin: 0 auto 3.5rem;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 800; margin-bottom: .75rem;
    color: var(--gray-900); letter-spacing: -.02em; line-height: 1.2;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
    font-size: 1.1rem; color: var(--gray-500); line-height: 1.8;
}
.section-dark .section-header p { color: var(--gray-400); }
.badge-label {
    display: inline-block; padding: .3rem .875rem; border-radius: var(--radius-full);
    font-size: .75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: .875rem;
    background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light));
    color: var(--primary-dark); border: 1px solid rgba(var(--primary-rgb),.1);
}
.section-dark .badge-label {
    background: rgba(var(--primary-rgb),.15);
    color: #93c5fd; border-color: rgba(var(--primary-rgb),.2);
}

/* ── STATS ── */
.stats-section { padding: 0; position: relative; z-index: 3; margin-top: -3rem; }
.stats-row {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
    max-width: 900px; margin: 0 auto;
}
.stat-item {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 1.75rem 1.5rem; text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: transform .3s, box-shadow .3s;
}
.stat-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-number {
    font-family: var(--font-display);
    font-size: 2.75rem; font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: .85rem; color: var(--gray-500); margin-top: .35rem;
    font-weight: 500;
}

/* ── HERO BADGE ── */
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .5rem 1.25rem; border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(245,158,11,.2), rgba(245,158,11,.1));
    border: 1px solid rgba(245,158,11,.3);
    font-size: .875rem; font-weight: 600; color: #fbbf24;
    margin-bottom: 1.5rem;
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(245,158,11,.2); }
    50% { box-shadow: 0 0 20px 4px rgba(245,158,11,.15); }
}

/* ── AI AGENTS SECTION ── */
.ai-agents-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--gray-950) 0%, #0f172a 50%, var(--gray-950) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.ai-agents-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(124,58,237,.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(var(--primary-rgb),.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(245,158,11,.06) 0%, transparent 40%);
}
.ai-agents-section .container { position: relative; z-index: 1; }

.ai-agents-section .section-header h2 {
    color: var(--white);
    font-size: 2.75rem;
}
.ai-agents-section .section-header h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ai-agents-section .section-header p { color: var(--gray-400); }

.badge-ai {
    background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(var(--primary-rgb),.15)) !important;
    color: #a78bfa !important;
    border-color: rgba(124,58,237,.25) !important;
}

/* AI Agents highlight banner */
.ai-agents-highlight {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb),.08), rgba(124,58,237,.08));
    border: 1px solid rgba(var(--primary-rgb),.15);
    border-radius: var(--radius-2xl);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}
.ai-agents-highlight::before {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--purple));
}
.ai-highlight-icon {
    font-size: 3rem; flex-shrink: 0;
    animation: agentBounce 3s ease-in-out infinite;
}
@keyframes agentBounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.ai-highlight-text h3 {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 700; margin-bottom: .35rem;
    color: var(--white);
}
.ai-highlight-text p {
    font-size: .95rem; color: var(--gray-400); line-height: 1.7;
}

/* AI Agent cards grid */
.ai-agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.ai-agent-card {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all .35s cubic-bezier(.4,0,.2,1);
}
.ai-agent-card::before {
    content: ''; position: absolute; inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, transparent, rgba(var(--primary-rgb),.2), transparent);
    opacity: 0; transition: opacity .35s;
    z-index: -1;
}
.ai-agent-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(var(--primary-rgb),.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,.4), 0 0 30px rgba(var(--primary-rgb),.1);
}
.ai-agent-card:hover::before { opacity: 1; }

.ai-agent-number {
    position: absolute; top: 1rem; right: 1.25rem;
    font-family: var(--font-display);
    font-size: .75rem; font-weight: 800; color: rgba(255,255,255,.1);
    letter-spacing: .05em;
}
.ai-agent-icon {
    width: 48px; height: 48px; border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    color: var(--primary);
}
.ai-agent-card h4 {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700; margin-bottom: .4rem;
    color: var(--white);
}
.ai-agent-card p {
    font-size: .85rem; color: var(--gray-400); line-height: 1.6;
}

/* Stagger animation for agent cards */
.ai-agents-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.ai-agents-grid .fade-in:nth-child(2) { transition-delay: .06s; }
.ai-agents-grid .fade-in:nth-child(3) { transition-delay: .12s; }
.ai-agents-grid .fade-in:nth-child(4) { transition-delay: .18s; }
.ai-agents-grid .fade-in:nth-child(5) { transition-delay: .24s; }
.ai-agents-grid .fade-in:nth-child(6) { transition-delay: .3s; }
.ai-agents-grid .fade-in:nth-child(7) { transition-delay: .36s; }
.ai-agents-grid .fade-in:nth-child(8) { transition-delay: .42s; }
.ai-agents-grid .fade-in:nth-child(9) { transition-delay: .48s; }
.ai-agents-grid .fade-in:nth-child(10) { transition-delay: .54s; }

/* AI Agents CTA */
.ai-agents-cta {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(245,158,11,.08), rgba(var(--primary-rgb),.08));
    border: 1px solid rgba(245,158,11,.15);
    border-radius: var(--radius-2xl);
}
.ai-agents-cta p {
    font-size: 1rem; color: var(--gray-400);
    margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto;
    line-height: 1.7;
}

/* ── FEATURES GRID ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 2rem; position: relative;
    border: 1px solid var(--gray-100);
    transition: all .35s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--purple));
    opacity: 0; transition: opacity .3s;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
    border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 56px; height: 56px; border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    color: var(--primary);
    position: relative;
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem;
    color: var(--gray-900);
}
.feature-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }

/* ── CORE PACKAGE ── */
.core-package {
    background: var(--white); border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl), var(--shadow-glow-blue);
    overflow: hidden; max-width: 940px; margin: 0 auto;
    border: 1px solid rgba(var(--primary-rgb),.15);
    position: relative;
}
.core-package::before {
    content: ''; position: absolute; inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary), var(--purple), var(--secondary));
    z-index: -1; opacity: .5;
    filter: blur(1px);
}
.core-header {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    color: var(--white); padding: 2.5rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    position: relative; overflow: hidden;
}
.core-header::after {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='.5' fill='%23ffffff' fill-opacity='.06'/%3E%3C/svg%3E");
}
.core-header > * { position: relative; z-index: 1; }
.core-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700;
}
.core-price { text-align: right; }
.core-price .amount {
    font-family: var(--font-display);
    font-size: 3rem; font-weight: 800; line-height: 1;
}
.core-price .period { font-size: .9rem; opacity: .75; margin-top: .2rem; }
.core-body { padding: 2.5rem 3rem; }
.core-features {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: .6rem 1.5rem; list-style: none;
}
.core-features li {
    display: flex; align-items: flex-start; gap: .6rem;
    font-size: .925rem; padding: .4rem 0; color: var(--gray-700);
}
.core-features li::before {
    content: '\2713'; color: var(--secondary); font-weight: 700;
    flex-shrink: 0; margin-top: 1px;
    width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
    background: var(--secondary-light); border-radius: 50%;
    font-size: .7rem;
}
.per-user-banner {
    margin-top: 2rem; padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-lighter), var(--gray-50));
    border-radius: var(--radius-lg);
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
    border: 1px solid var(--primary-light);
}
.per-user-banner .icon { font-size: 1.5rem; }
.per-user-banner .label { font-weight: 600; color: var(--gray-700); }
.per-user-banner .price {
    font-family: var(--font-display);
    color: var(--primary); font-weight: 800; font-size: 1.25rem;
}
.per-user-banner .note { color: var(--gray-500); font-size: .875rem; }

/* ── ADD-ON MODULES ── */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}
.addon-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--gray-200);
    display: flex; align-items: center; gap: 1rem;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.addon-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--secondary);
    opacity: 0; transition: opacity .3s;
}
.addon-card:hover {
    border-color: rgba(var(--primary-rgb),.2);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}
.addon-card:hover::before { opacity: 1; }
.addon-icon {
    width: 44px; height: 44px; border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; flex-shrink: 0;
    background: var(--secondary-light); color: var(--secondary);
}
.addon-info { flex: 1; min-width: 0; }
.addon-info h4 { font-size: .95rem; font-weight: 600; margin-bottom: .15rem; color: var(--gray-900); }
.addon-info p { font-size: .825rem; color: var(--gray-500); line-height: 1.5; }
.addon-price {
    white-space: nowrap; flex-shrink: 0;
    font-size: .8rem; font-weight: 700; color: var(--accent-dark);
    background: var(--accent-light); padding: .25rem .75rem;
    border-radius: var(--radius-full);
}

/* ── PRICING CALCULATOR ── */
.calculator {
    background: var(--white); border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg); max-width: 940px; margin: 0 auto;
    overflow: hidden; border: 1px solid var(--gray-100);
}
.calc-body { padding: 2.5rem; }
.calc-label {
    font-family: var(--font-display);
    font-weight: 700; font-size: 1rem; margin-bottom: 1.25rem;
    color: var(--gray-800);
}
.calc-modules {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: .35rem; margin-bottom: 2rem;
}
.calc-modules label {
    display: flex; align-items: center; gap: .6rem;
    padding: .55rem .875rem; border-radius: var(--radius);
    cursor: pointer; font-size: .875rem; color: var(--gray-700);
    transition: all .15s; border: 1px solid transparent;
}
.calc-modules label:hover { background: var(--primary-lighter); border-color: var(--primary-light); }
.calc-modules input[type="checkbox"] {
    width: 18px; height: 18px; accent-color: var(--primary);
    border-radius: 3px;
}
.calc-modules input[type="checkbox"]:checked + span { color: var(--primary); font-weight: 500; }
.calc-user-row {
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
    padding: 1.5rem; background: var(--gray-50);
    border-radius: var(--radius-lg); border: 1px solid var(--gray-100);
}
.calc-user-row label { font-weight: 600; font-size: .95rem; color: var(--gray-700); }
.user-slider {
    flex: 1; min-width: 200px; accent-color: var(--primary);
    height: 6px; cursor: pointer;
}
.user-count {
    font-family: var(--font-display);
    font-size: 1.75rem; font-weight: 800;
    color: var(--primary); min-width: 60px; text-align: center;
}
/* Typeable variant — same visual weight, but accepts keyboard input */
.user-count-input {
    width: 110px; padding: .35rem .5rem;
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 800;
    color: var(--primary); text-align: center;
    transition: border-color .15s, box-shadow .15s;
    -moz-appearance: textfield;
}
.user-count-input::-webkit-outer-spin-button,
.user-count-input::-webkit-inner-spin-button {
    -webkit-appearance: none; margin: 0;
}
.user-count-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .15);
}
.calc-total {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.75rem 2.5rem;
    background: linear-gradient(135deg, var(--gray-950), var(--gray-900));
    color: var(--white); flex-wrap: wrap; gap: 1rem;
}
.calc-total .breakdown { font-size: .875rem; opacity: .6; }
.calc-total .total-monthly { font-size: .9rem; color: var(--accent); font-weight: 500; }
.calc-total .total-amount {
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 800;
}

/* ── ESS FEATURES ── */
.ess-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem; position: relative; z-index: 1;
}
.ess-item {
    text-align: center; padding: 1.5rem 1rem;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,.08);
    transition: all .3s;
}
.ess-item:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.15);
    transform: translateY(-4px);
}
.ess-icon { font-size: 2rem; margin-bottom: .5rem; }
.ess-item h4 { font-size: .9rem; font-weight: 600; margin-bottom: .15rem; }
.ess-item p { font-size: .78rem; color: var(--gray-400); }

/* ── COMPLIANCE ── */
.compliance-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.compliance-card {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 2rem; text-align: center;
    border: 1px solid var(--gray-100);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.compliance-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--secondary), #34d399);
}
.compliance-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--shadow-glow-green);
}
.comp-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.compliance-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem;
    color: var(--gray-900);
}
.compliance-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }

/* ── STATS ROW (inline) ── */
.stats-row-inline {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
    text-align: center; padding: 3rem 0;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-darker), var(--primary-dark) 40%, var(--purple) 100%);
    padding: 5rem 0; text-align: center; color: var(--white);
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='.7' fill='%23ffffff' fill-opacity='.06'/%3E%3C/svg%3E");
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 800; margin-bottom: .75rem;
    letter-spacing: -.02em;
}
.cta-banner p {
    font-size: 1.15rem; opacity: .8; margin-bottom: 2.5rem;
    max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ── CONTACT ── */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem;
    align-items: start; position: relative; z-index: 1;
}
.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--white);
}
.contact-info > p { color: var(--gray-400); margin-bottom: 2rem; line-height: 1.8; }
.contact-detail {
    display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem;
    color: var(--gray-300); font-size: .95rem;
}
.contact-detail .cd-icon { font-size: 1.25rem; width: 1.5rem; text-align: center; }
.contact-detail a { color: var(--gray-300); }
.contact-detail a:hover { color: var(--white); }

.whatsapp-link {
    display: inline-flex; align-items: center; gap: .6rem;
    background: #25d366; color: var(--white) !important;
    padding: .65rem 1.5rem; border-radius: var(--radius-full);
    font-weight: 600; font-size: .9rem; margin-top: 1rem;
    transition: all .3s; box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.whatsapp-link:hover {
    background: #22c55e; transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,.4);
}
.whatsapp-link svg { width: 20px; height: 20px; }

.contact-benefits {
    margin-top: 2rem; padding: 1.75rem;
    background: rgba(255,255,255,.04);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}
.contact-benefits h4 { color: var(--white); margin-bottom: .75rem; font-weight: 700; }
.contact-benefits ul { list-style: none; }
.contact-benefits li {
    padding: .35rem 0; color: var(--gray-400); font-size: .9rem;
    display: flex; align-items: center; gap: .5rem;
}
.contact-benefits li::before {
    content: '\2713'; font-weight: 700; color: var(--secondary);
    width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
    background: rgba(5,150,105,.15); border-radius: 50%; font-size: .6rem; flex-shrink: 0;
}

.contact-form {
    background: var(--white); border-radius: var(--radius-2xl);
    padding: 2.5rem; box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--gray-900);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block; font-size: .825rem; font-weight: 600;
    color: var(--gray-600); margin-bottom: .4rem;
    text-transform: uppercase; letter-spacing: .02em;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: .8rem 1rem;
    border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg);
    font-family: var(--font-body); font-size: .925rem;
    transition: all .25s; background: var(--white);
    color: var(--gray-800);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb),.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hp-field { position: absolute; left: -9999px; }
.form-success { display: none; text-align: center; padding: 2.5rem; }
.form-success .check-icon {
    font-size: 3.5rem; margin-bottom: 1rem;
    width: 80px; height: 80px; line-height: 80px;
    border-radius: 50%; display: inline-block;
    background: var(--secondary-light); color: var(--secondary);
}
.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem; margin-bottom: .5rem; color: var(--gray-900);
}
.form-success p { color: var(--gray-500); font-size: 1rem; }

/* ── FOOTER ── */
.footer {
    background: var(--gray-950); color: var(--gray-400);
    padding: 4rem 0 2rem;
    position: relative;
}
.footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--purple), var(--secondary), var(--accent));
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-top: .75rem; }
.footer-col h4 {
    color: var(--white); font-size: .85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: var(--gray-400); font-size: .9rem; transition: all .2s; }
.footer-col a:hover { color: var(--white); padding-left: .25rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: .85rem; flex-wrap: wrap; gap: .5rem;
}

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger animation for grid children */
.features-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.features-grid .fade-in:nth-child(2) { transition-delay: .06s; }
.features-grid .fade-in:nth-child(3) { transition-delay: .12s; }
.features-grid .fade-in:nth-child(4) { transition-delay: .18s; }
.features-grid .fade-in:nth-child(5) { transition-delay: .24s; }
.features-grid .fade-in:nth-child(6) { transition-delay: .3s; }
.features-grid .fade-in:nth-child(7) { transition-delay: .36s; }
.features-grid .fade-in:nth-child(8) { transition-delay: .42s; }
.features-grid .fade-in:nth-child(9) { transition-delay: .48s; }
.features-grid .fade-in:nth-child(10) { transition-delay: .54s; }
.features-grid .fade-in:nth-child(11) { transition-delay: .6s; }
.features-grid .fade-in:nth-child(12) { transition-delay: .66s; }

.stats-row .stat-item:nth-child(1) { transition-delay: 0s; }
.stats-row .stat-item:nth-child(2) { transition-delay: .1s; }
.stats-row .stat-item:nth-child(3) { transition-delay: .2s; }
.stats-row .stat-item:nth-child(4) { transition-delay: .3s; }

.ess-grid .fade-in:nth-child(2n) { transition-delay: .08s; }
.ess-grid .fade-in:nth-child(3n) { transition-delay: .16s; }
.ess-grid .fade-in:nth-child(4n) { transition-delay: .24s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-text h1 { font-size: 2.75rem; }
    .hero-buttons { justify-content: center; }
    .hero-mockup { max-width: 500px; margin: 0 auto; }
    .dashboard-preview { transform: rotateY(0) rotateX(3deg); }
    @keyframes mockupFloat {
        0%,100% { transform: rotateY(0) rotateX(3deg) translateY(0); }
        50% { transform: rotateY(0) rotateX(3deg) translateY(-8px); }
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-row { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
        background: var(--white); flex-direction: column;
        padding: 1rem; gap: .25rem;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block; padding: .75rem 1rem !important;
        border-radius: var(--radius) !important;
        margin-left: 0 !important;
    }
    .nav-links a:hover { background: var(--gray-50); }
    .nav-cta { text-align: center; }

    .hero { padding: 8rem 0 5rem; }
    .hero-text h1 { font-size: 2rem; }
    .hero-text p { font-size: 1rem; }
    section { padding: 4rem 0; }
    .section-header h2 { font-size: 1.75rem; }
    .ai-agents-section .section-header h2 { font-size: 1.75rem; }
    .ai-agents-highlight { flex-direction: column; text-align: center; padding: 1.5rem; }
    .ai-agents-cta { padding: 1.5rem; }
    .section-header { margin-bottom: 2.5rem; }

    .core-header { padding: 1.75rem; flex-direction: column; text-align: center; }
    .core-body { padding: 1.75rem; }
    .core-price { text-align: center; }
    .core-price .amount { font-size: 2.5rem; }

    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .calc-body { padding: 1.5rem; }
    .calc-total { padding: 1.25rem 1.5rem; }
    .calc-total .total-amount { font-size: 2rem; }

    .cta-banner { padding: 3.5rem 0; }
    .cta-banner h2 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.75rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .btn-lg { width: 100%; justify-content: center; }
    .stats-row { gap: 1rem; }
    .stat-item { padding: 1.25rem 1rem; }
    .stat-number { font-size: 2rem; }
    .hero-mockup { display: none; }
    .addons-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   Calculator – Core Package Note (added)
   ══════════════════════════════════════════════ */
.calc-core-note {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1rem 1.25rem; margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--secondary-light), #ecfdf5);
    border: 1px solid #a7f3d0;
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
}
.calc-core-icon {
    font-size: 1.5rem; line-height: 1;
    color: var(--secondary);
}
.calc-core-note strong {
    display: block; font-family: var(--font-display);
    font-size: 1rem; color: var(--gray-900); margin-bottom: .25rem;
}
.calc-core-note small {
    display: block; font-size: .85rem; color: var(--gray-600); line-height: 1.5;
}

/* ══════════════════════════════════════════════
   Data Security Section (added)
   ══════════════════════════════════════════════ */
#security { position: relative; }
.section-dark#security .section-header h2 em {
    background: linear-gradient(135deg, #34d399, #60a5fa);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

.security-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem; margin: 0 auto 3rem; max-width: 980px;
}
.security-stat {
    text-align: center; padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: all .3s;
}
.security-stat:hover {
    background: rgba(52,211,153,0.08);
    border-color: rgba(52,211,153,0.4);
    transform: translateY(-3px);
}
.security-stat-value {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 800;
    background: linear-gradient(135deg, #34d399, #60a5fa);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: .25rem;
}
.security-stat-label {
    font-size: .85rem; color: var(--gray-400);
    letter-spacing: .02em;
}

.security-compare {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
    margin-bottom: 3rem;
}
.security-card {
    padding: 2rem; border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative; overflow: hidden;
}
.security-cloud { border-color: rgba(52,211,153,0.35); }
.security-onprem { border-color: rgba(248,113,113,0.30); }
.security-cloud::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #34d399, #60a5fa);
}
.security-onprem::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #f87171, #fb923c);
}
.security-card-head h3 {
    font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
    color: var(--white); margin: .5rem 0 1.25rem;
}
.security-tag {
    display: inline-block; padding: .25rem .75rem; border-radius: 9999px;
    font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.security-tag.good { background: rgba(52,211,153,0.15); color: #6ee7b7; }
.security-tag.bad  { background: rgba(248,113,113,0.15); color: #fca5a5; }
.security-card ul { list-style: none; padding: 0; margin: 0; }
.security-card li {
    position: relative; padding-left: 1.75rem; margin-bottom: .75rem;
    color: var(--gray-300); font-size: .92rem; line-height: 1.6;
}
.security-cloud li::before {
    content: '✓'; position: absolute; left: 0; top: 0;
    color: #34d399; font-weight: 700;
}
.security-onprem li::before {
    content: '✗'; position: absolute; left: 0; top: 0;
    color: #f87171; font-weight: 700;
}

.security-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.security-feature {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem; border-radius: var(--radius-lg);
    transition: all .3s;
}
.security-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(96,165,250,0.4);
    background: rgba(96,165,250,0.05);
}
.security-feature-icon {
    font-size: 1.75rem; margin-bottom: .75rem;
}
.security-feature h4 {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem;
}
.security-feature p {
    font-size: .85rem; color: var(--gray-400); line-height: 1.6;
}

.security-quote {
    margin-top: 3rem; padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(96,165,250,0.08), rgba(52,211,153,0.05));
    border: 1px solid rgba(96,165,250,0.2);
    border-radius: var(--radius-xl);
    position: relative; max-width: 920px; margin-left: auto; margin-right: auto;
}
.security-quote-mark {
    position: absolute; top: -.5rem; left: 1rem;
    font-size: 4rem; line-height: 1;
    color: #60a5fa; opacity: .35;
    font-family: serif;
}
.security-quote p {
    font-size: 1.1rem; line-height: 1.7;
    color: var(--gray-200); font-style: italic;
    margin: 0; padding-left: 2rem;
}

/* ══════════════════════════════════════════════
   Client Portfolio Section (added)
   ══════════════════════════════════════════════ */
.clients-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem; margin-bottom: 3rem;
}
.client-card {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 2.25rem 2rem; border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all .3s;
    position: relative; overflow: hidden;
}
.client-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.client-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.client-flag { font-size: 1.75rem; margin-bottom: .75rem; }
.client-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 700;
    color: var(--gray-900); margin-bottom: .35rem;
}
.client-industry {
    font-size: .8rem; color: var(--primary); font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase;
    margin-bottom: 1rem;
}
.client-card p {
    font-size: .95rem; color: var(--gray-600); line-height: 1.65;
    margin-bottom: 1rem;
}
.client-link {
    display: inline-flex; align-items: center; gap: .25rem;
    color: var(--primary); font-weight: 600; font-size: .9rem;
    text-decoration: none;
}
.client-link:hover { color: var(--primary-dark); text-decoration: underline; }

.clients-strip {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 1.5rem 2rem; border: 1px solid var(--gray-200);
    display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
}
.clients-strip-label {
    font-size: .8rem; font-weight: 700; color: var(--gray-500);
    letter-spacing: .08em; text-transform: uppercase;
}
.clients-strip-tags {
    display: flex; flex-wrap: wrap; gap: .5rem; flex: 1;
}
.clients-strip-tags span {
    padding: .35rem .85rem; border-radius: 9999px;
    background: var(--gray-100); color: var(--gray-700);
    font-size: .8rem; font-weight: 500;
}

/* Responsive overrides for new sections */
@media (max-width: 768px) {
    .security-compare { grid-template-columns: 1fr; }
    .security-card { padding: 1.5rem; }
    .security-quote { padding: 1.5rem; }
    .security-quote p { font-size: 1rem; padding-left: 1.5rem; }
    .clients-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .client-card { padding: 1.75rem 1.5rem; }
    .clients-strip { flex-direction: column; align-items: flex-start; padding: 1.25rem; }
}

/* ══════════════════════════════════════════════
   Custom Services Panel (added)
   ══════════════════════════════════════════════ */
.custom-services {
    margin-top: 3rem; padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}
.custom-services-head { text-align: center; margin-bottom: 2rem; }
.custom-services-head h3 {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 700;
    color: var(--gray-900); margin: .75rem 0 .5rem;
}
.custom-services-head p {
    color: var(--gray-600); max-width: 640px;
    margin: 0 auto; line-height: 1.6;
}
.custom-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.custom-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem; transition: all .25s;
}
.custom-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    background: var(--white);
}
.custom-card.highlighted {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--primary-lighter), var(--white));
}
.custom-card.api-card {
    border-color: var(--secondary);
    background: linear-gradient(180deg, var(--secondary-light), var(--white));
}
.custom-card-tag {
    font-size: .75rem; font-weight: 700;
    color: var(--primary); letter-spacing: .04em;
    text-transform: uppercase; margin-bottom: .35rem;
}
.custom-card.api-card .custom-card-tag { color: var(--secondary-dark); }
.custom-card-price {
    font-family: var(--font-display);
    font-size: 1.75rem; font-weight: 800;
    color: var(--gray-900); margin-bottom: .5rem; line-height: 1;
}
.custom-card-price small {
    font-size: .7rem; font-weight: 500; color: var(--gray-500);
    letter-spacing: .02em;
}
.custom-card p {
    font-size: .85rem; color: var(--gray-600); line-height: 1.55; margin: 0;
}

/* ── Calculator: Custom Services row ── */
.calc-custom-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-bottom: 1rem;
}
.calc-custom-item label {
    display: block; font-size: .85rem; color: var(--gray-700);
    margin-bottom: .35rem; font-weight: 500;
}
.calc-custom-item select,
.calc-custom-item input[type="number"] {
    width: 100%; padding: .55rem .75rem;
    border: 1px solid var(--gray-300); border-radius: var(--radius);
    font-size: .9rem; background: var(--white);
    font-family: inherit;
}
.calc-custom-item select:focus,
.calc-custom-item input[type="number"]:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
@media (max-width: 768px) {
    .calc-custom-row { grid-template-columns: 1fr; }
    .custom-services { padding: 1.5rem; }
    .custom-services-head h3 { font-size: 1.35rem; }
}

/* ══════════════════════════════════════════════
   Core Package — Deployment options strip
   ══════════════════════════════════════════════ */
.core-deployment {
    padding: 1.5rem 3rem;
    background: linear-gradient(180deg, var(--gray-50), var(--white));
    border-top: 1px solid var(--gray-100);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.core-deployment .dep-row {
    display: flex; gap: .85rem; align-items: flex-start;
    padding: 1rem 1.25rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: all .25s;
}
.core-deployment .dep-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.core-deployment .dep-row-cloud {
    border-color: var(--primary-light);
    background: linear-gradient(180deg, var(--primary-lighter), var(--white));
}
.core-deployment .dep-row-onprem {
    border-color: var(--accent-light);
    background: linear-gradient(180deg, var(--accent-light), var(--white));
}
.core-deployment .dep-icon {
    font-size: 1.6rem; line-height: 1; flex-shrink: 0;
}
.core-deployment .dep-row strong {
    display: inline-block; font-family: var(--font-display);
    font-size: 1rem; font-weight: 700;
    color: var(--gray-900); margin-right: .5rem;
}
.core-deployment .dep-tag {
    display: inline-block; padding: .15rem .55rem;
    background: var(--secondary); color: var(--white);
    border-radius: 9999px;
    font-size: .65rem; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase;
    vertical-align: middle;
}
.core-deployment .dep-row p {
    margin: .35rem 0 0; font-size: .85rem;
    color: var(--gray-600); line-height: 1.55;
}
@media (max-width: 768px) {
    .core-deployment { grid-template-columns: 1fr; padding: 1.25rem 1.5rem; }
}

/* ══════════════════════════════════════════════
   Calculator — Deployment radio + Annual line
   ══════════════════════════════════════════════ */
.calc-deployment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: 1rem;
}
.dep-radio {
    display: flex; align-items: flex-start; gap: .75rem;
    padding: .85rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    transition: all .15s;
}
.dep-radio:hover {
    border-color: var(--primary-light);
    background: var(--primary-lighter);
}
.dep-radio input[type="radio"] {
    margin: 0; flex-shrink: 0; margin-top: 2px;
    width: 18px; height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}
.dep-radio:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-lighter);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .1);
}
.dep-radio strong {
    display: block;
    font-size: .95rem; font-weight: 700;
    color: var(--gray-900); margin-bottom: .15rem;
}
.dep-radio small {
    display: block;
    font-size: .8rem; color: var(--gray-600); line-height: 1.45;
}

.calc-total .total-annual {
    font-size: .9rem; color: #fbbf24; font-weight: 500;
    margin-top: .15rem;
}

@media (max-width: 600px) {
    .calc-deployment-options { grid-template-columns: 1fr; }
}
