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

:root {
    --kl-teal: #0D9488;
    --kl-teal-dark: #0F766E;
    --kl-teal-light: #14B8A6;
    --kl-blue: #3B82F6;
    --kl-blue-dark: #2563EB;
    --kl-yellow: #F59E0B;
    --kl-yellow-light: #FCD34D;
    --kl-green: #10B981;
    --kl-green-light: #34D399;
    --kl-orange: #F97316;
    --kl-purple: #8B5CF6;
    --kl-pink: #EC4899;
    --kl-slate-50: #F8FAFC;
    --kl-slate-100: #F1F5F9;
    --kl-slate-200: #E2E8F0;
    --kl-slate-300: #CBD5E1;
    --kl-slate-400: #94A3B8;
    --kl-slate-500: #64748B;
    --kl-slate-600: #475569;
    --kl-slate-700: #334155;
    --kl-slate-800: #1E293B;
    --kl-slate-900: #0F172A;
    --gradient-teal: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
    --gradient-blue: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F2932 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-card: 0 0 0 1px rgb(0 0 0 / 0.03), 0 2px 4px rgb(0 0 0 / 0.05), 0 12px 24px rgb(0 0 0 / 0.05);
    --shadow-card-hover: 0 0 0 1px rgb(0 0 0 / 0.03), 0 4px 8px rgb(0 0 0 / 0.08), 0 24px 48px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--kl-slate-700);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
}

.navbar .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--kl-teal);
}

.navbar-logo svg {
    width: 36px;
    height: 36px;
}

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

.navbar-nav a {
    text-decoration: none;
    color: var(--kl-slate-600);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
    position: relative;
}

.navbar-nav a:hover {
    color: var(--kl-teal);
}

.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 0.75rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-nav .dropdown-menu a {
    display: block;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--kl-slate-600);
}

.navbar-nav .dropdown-menu a:hover {
    background: var(--kl-slate-50);
    color: var(--kl-teal);
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: var(--gradient-teal);
    color: white !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

.navbar-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.4);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--kl-slate-700);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 999;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    color: var(--kl-slate-700);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--kl-slate-100);
}

.mobile-menu .btn-primary {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--gradient-teal);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(13,148,136,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(13, 148, 136, 0.15);
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 100px;
    color: var(--kl-teal-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--kl-teal-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--kl-teal-light), var(--kl-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--kl-slate-400);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--gradient-teal);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--kl-slate-400);
    margin-top: 0.25rem;
}

/* Hero Mockup */
.hero-mockup {
    position: relative;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot.red { background: #EF4444; }
.mockup-dot.yellow { background: #F59E0B; }
.mockup-dot.green { background: #10B981; }

.mockup-title {
    color: var(--kl-slate-400);
    font-size: 0.8125rem;
    margin-left: 0.5rem;
}

.mockup-body {
    display: grid;
    gap: 1rem;
}

.mockup-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mockup-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.mockup-stat-icon.teal { background: rgba(13,148,136,0.2); color: var(--kl-teal-light); }
.mockup-stat-icon.blue { background: rgba(59,130,246,0.2); color: #60A5FA; }
.mockup-stat-icon.yellow { background: rgba(245,158,11,0.2); color: #FBBF24; }

.mockup-stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mockup-stat-label {
    font-size: 0.75rem;
    color: var(--kl-slate-400);
    margin-top: 0.25rem;
}

.mockup-chart {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 140px;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, rgba(13,148,136,0.3), rgba(13,148,136,0.7));
    border-radius: 6px 6px 0 0;
    min-height: 20px;
    transition: height 0.5s ease;
}

.mockup-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mockup-mini-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.mockup-list-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.mockup-avatar.a { background: var(--kl-teal); }
.mockup-avatar.b { background: var(--kl-blue); }
.mockup-avatar.c { background: var(--kl-purple); }

.mockup-list-text {
    flex: 1;
}

.mockup-list-name {
    font-size: 0.8125rem;
    color: white;
    font-weight: 500;
}

.mockup-list-desc {
    font-size: 0.6875rem;
    color: var(--kl-slate-400);
}

.mockup-badge {
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.mockup-badge.active {
    background: rgba(16, 185, 129, 0.2);
    color: #34D399;
}

.mockup-badge.pending {
    background: rgba(245, 158, 11, 0.2);
    color: #FBBF24;
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--kl-slate-50);
}

.section-dark {
    background: var(--gradient-hero);
    color: white;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(13, 148, 136, 0.1);
    color: var(--kl-teal);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-dark .section-label {
    background: rgba(20, 184, 166, 0.15);
    color: var(--kl-teal-light);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--kl-slate-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-dark .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--kl-slate-500);
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: var(--kl-slate-400);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: white;
    border-top: 1px solid var(--kl-slate-100);
    border-bottom: 1px solid var(--kl-slate-100);
    padding: 2rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.trust-icon.teal { background: rgba(13,148,136,0.1); color: var(--kl-teal); }
.trust-icon.blue { background: rgba(59,130,246,0.1); color: var(--kl-blue); }
.trust-icon.yellow { background: rgba(245,158,11,0.1); color: var(--kl-yellow); }
.trust-icon.green { background: rgba(16,185,129,0.1); color: var(--kl-green); }
.trust-icon.purple { background: rgba(139,92,246,0.1); color: var(--kl-purple); }

.trust-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--kl-slate-700);
}

/* ===== PROBLEM SECTION ===== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.problem-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--kl-slate-100);
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: #FCA5A5;
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: #FEF2F2;
}

.problem-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--kl-slate-800);
    margin-bottom: 0.75rem;
}

.problem-card p {
    font-size: 0.9375rem;
    color: var(--kl-slate-500);
    line-height: 1.6;
}

/* ===== SOLUTION SECTION ===== */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-visual {
    position: relative;
}

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

.solution-floating-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--kl-slate-100);
    position: relative;
    z-index: 1;
}

.solution-floating-card.secondary {
    position: absolute;
    top: -1rem;
    right: -1rem;
    z-index: 0;
    opacity: 0.7;
    transform: scale(0.95);
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.solution-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.solution-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.125rem;
    background: rgba(13,148,136,0.1);
    color: var(--kl-teal);
}

.solution-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--kl-slate-800);
    margin-bottom: 0.25rem;
}

.solution-feature-text p {
    font-size: 0.875rem;
    color: var(--kl-slate-500);
    line-height: 1.5;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--kl-slate-100);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    border-color: rgba(13,148,136,0.2);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.feature-icon.teal { background: rgba(13,148,136,0.1); color: var(--kl-teal); }
.feature-icon.blue { background: rgba(59,130,246,0.1); color: var(--kl-blue); }
.feature-icon.yellow { background: rgba(245,158,11,0.1); color: var(--kl-yellow); }
.feature-icon.green { background: rgba(16,185,129,0.1); color: var(--kl-green); }
.feature-icon.purple { background: rgba(139,92,246,0.1); color: var(--kl-purple); }
.feature-icon.pink { background: rgba(236,72,153,0.1); color: var(--kl-pink); }
.feature-icon.orange { background: rgba(249,115,22,0.1); color: var(--kl-orange); }

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--kl-slate-800);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--kl-slate-500);
    line-height: 1.6;
}

/* ===== ROLE CARDS ===== */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.role-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.role-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.role-avatar {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
}

.role-avatar.teal { background: rgba(13,148,136,0.2); }
.role-avatar.blue { background: rgba(59,130,246,0.2); }
.role-avatar.yellow { background: rgba(245,158,11,0.2); }
.role-avatar.green { background: rgba(16,185,129,0.2); }
.role-avatar.purple { background: rgba(139,92,246,0.2); }

.role-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.role-card p {
    font-size: 0.875rem;
    color: var(--kl-slate-400);
    line-height: 1.5;
}

/* ===== MONTESSORI SECTION ===== */
.montessori-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.montessori-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--kl-slate-100);
    transition: all 0.3s ease;
}

.montessori-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.montessori-card.featured {
    background: var(--gradient-hero);
    border-color: transparent;
    color: white;
    grid-row: span 2;
}

.montessori-card.featured h3,
.montessori-card.featured p {
    color: white;
}

.montessori-card.featured p {
    color: var(--kl-slate-400);
}

.montessori-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.montessori-icon.teal { background: rgba(13,148,136,0.1); color: var(--kl-teal); }
.montessori-icon.blue { background: rgba(59,130,246,0.1); color: var(--kl-blue); }
.montessori-icon.yellow { background: rgba(245,158,11,0.1); color: var(--kl-yellow); }
.montessori-icon.green { background: rgba(16,185,129,0.1); color: var(--kl-green); }
.montessori-icon.purple { background: rgba(139,92,246,0.1); color: var(--kl-purple); }

.montessori-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--kl-slate-800);
    margin-bottom: 0.5rem;
}

.montessori-card p {
    font-size: 0.9375rem;
    color: var(--kl-slate-500);
    line-height: 1.6;
}

/* ===== PARENT COMMUNICATION ===== */
.parent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.parent-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.parent-feature {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--kl-slate-100);
    transition: all 0.3s ease;
}

.parent-feature:hover {
    border-color: rgba(13,148,136,0.2);
    box-shadow: var(--shadow-card);
}

.parent-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    background: rgba(13,148,136,0.1);
    color: var(--kl-teal);
}

.parent-feature h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--kl-slate-800);
    margin-bottom: 0.25rem;
}

.parent-feature p {
    font-size: 0.8125rem;
    color: var(--kl-slate-500);
    line-height: 1.5;
}

/* Phone Mockup */
.phone-mockup {
    width: 280px;
    margin: 0 auto;
    background: var(--kl-slate-900);
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    position: relative;
}

.phone-notch {
    width: 100px;
    height: 24px;
    background: var(--kl-slate-900);
    border-radius: 0 0 16px 16px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.phone-screen {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    padding-top: 2rem;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--kl-slate-700);
}

.phone-content {
    padding: 1rem 1.25rem 1.5rem;
}

.phone-greeting {
    font-size: 0.8125rem;
    color: var(--kl-slate-500);
    margin-bottom: 0.25rem;
}

.phone-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--kl-slate-900);
    margin-bottom: 1.25rem;
}

.phone-card {
    background: var(--kl-slate-50);
    border-radius: 12px;
    padding: 0.875rem;
    margin-bottom: 0.75rem;
}

.phone-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.phone-card-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--kl-slate-700);
}

.phone-card-badge {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
    border-radius: 100px;
    font-weight: 600;
}

.phone-card-badge.green {
    background: rgba(16,185,129,0.1);
    color: var(--kl-green);
}

.phone-card-badge.blue {
    background: rgba(59,130,246,0.1);
    color: var(--kl-blue);
}

.phone-card-text {
    font-size: 0.6875rem;
    color: var(--kl-slate-500);
    line-height: 1.4;
}

.phone-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.25rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border-top: 1px solid var(--kl-slate-100);
}

.phone-nav-item {
    text-align: center;
    font-size: 0.5625rem;
    color: var(--kl-slate-400);
}

.phone-nav-item.active {
    color: var(--kl-teal);
}

.phone-nav-item span {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.125rem;
}

/* ===== MULTI-TENANT ===== */
.tenant-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tenant-school {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid var(--kl-slate-100);
    transition: all 0.3s ease;
    position: relative;
}

.tenant-school:hover {
    border-color: var(--kl-teal);
    box-shadow: var(--shadow-card-hover);
}

.tenant-school::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}

.tenant-school:nth-child(1)::before { background: var(--kl-teal); }
.tenant-school:nth-child(2)::before { background: var(--kl-blue); }
.tenant-school:nth-child(3)::before { background: var(--kl-purple); }

.tenant-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tenant-school:nth-child(1) .tenant-logo { background: rgba(13,148,136,0.1); }
.tenant-school:nth-child(2) .tenant-logo { background: rgba(59,130,246,0.1); }
.tenant-school:nth-child(3) .tenant-logo { background: rgba(139,92,246,0.1); }

.tenant-school h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--kl-slate-800);
    margin-bottom: 0.25rem;
}

.tenant-school p {
    font-size: 0.8125rem;
    color: var(--kl-slate-500);
}

.tenant-details {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tenant-tag {
    font-size: 0.6875rem;
    padding: 0.25rem 0.625rem;
    background: var(--kl-slate-50);
    border-radius: 6px;
    color: var(--kl-slate-600);
    font-weight: 500;
}

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

.tenant-feature {
    text-align: center;
    padding: 1.5rem;
}

.tenant-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    background: rgba(13,148,136,0.1);
    color: var(--kl-teal);
}

.tenant-feature h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--kl-slate-800);
    margin-bottom: 0.5rem;
}

.tenant-feature p {
    font-size: 0.875rem;
    color: var(--kl-slate-500);
    line-height: 1.5;
}

/* ===== NOTIFICATION TRACKING ===== */
.notification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.notification-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.notification-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.notification-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
}

.notification-icon.email { background: rgba(59,130,246,0.2); }
.notification-icon.whatsapp { background: rgba(16,185,129,0.2); }
.notification-icon.inapp { background: rgba(139,92,246,0.2); }

.notification-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.notification-card p {
    font-size: 0.9375rem;
    color: var(--kl-slate-400);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.notification-status {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--kl-slate-400);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.sent { background: var(--kl-blue); }
.status-dot.delivered { background: var(--kl-green); }
.status-dot.read { background: var(--kl-yellow); }

/* ===== TECH CREDIBILITY ===== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.tech-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--kl-slate-100);
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: rgba(13,148,136,0.2);
    box-shadow: var(--shadow-card);
}

.tech-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    background: var(--kl-slate-50);
    color: var(--kl-teal);
}

.tech-item h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--kl-slate-800);
    margin-bottom: 0.25rem;
}

.tech-item p {
    font-size: 0.8125rem;
    color: var(--kl-slate-500);
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 2px solid var(--kl-slate-100);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(13,148,136,0.3);
    box-shadow: var(--shadow-card-hover);
}

.pricing-card.popular {
    border-color: var(--kl-teal);
    box-shadow: 0 0 0 1px var(--kl-teal), var(--shadow-xl);
    transform: scale(1.02);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-teal);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1.25rem;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--kl-teal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--kl-slate-900);
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--kl-slate-500);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.pricing-amount {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--kl-slate-100);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--kl-slate-900);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.pricing-period {
    font-size: 0.875rem;
    color: var(--kl-slate-500);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--kl-slate-600);
}

.pricing-features li::before {
    content: '✓';
    color: var(--kl-teal);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 0.875rem;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.pricing-btn.primary {
    background: var(--gradient-teal);
    color: white;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.pricing-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.45);
}

.pricing-btn.secondary {
    background: var(--kl-slate-50);
    color: var(--kl-slate-700);
    border: 1px solid var(--kl-slate-200);
}

.pricing-btn.secondary:hover {
    background: var(--kl-slate-100);
}

/* ===== FAQ ===== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--kl-slate-100);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--kl-slate-800);
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--kl-slate-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--kl-slate-500);
}

.faq-item.active .faq-icon {
    background: rgba(13,148,136,0.1);
    color: var(--kl-teal);
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 0.9375rem;
    color: var(--kl-slate-500);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-hero);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13,148,136,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.125rem;
    color: var(--kl-slate-400);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--kl-slate-900);
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: 1.0625rem;
    color: var(--kl-slate-500);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(13,148,136,0.1);
    color: var(--kl-teal);
    font-size: 1.125rem;
}

.contact-detail-text h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--kl-slate-800);
    margin-bottom: 0.125rem;
}

.contact-detail-text p {
    font-size: 0.875rem;
    color: var(--kl-slate-500);
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--kl-slate-100);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--kl-slate-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--kl-slate-200);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--kl-slate-700);
    transition: all 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--kl-teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-teal);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
    margin-top: 0.5rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.45);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--kl-slate-900);
    color: var(--kl-slate-400);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: var(--kl-slate-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--kl-teal-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.8125rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--kl-slate-400);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--kl-teal-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .hero-mockup {
        max-width: 600px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

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

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .solution-content {
        grid-template-columns: 1fr;
    }

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

    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .montessori-grid {
        grid-template-columns: 1fr;
    }

    .montessori-card.featured {
        grid-row: auto;
    }

    .parent-grid {
        grid-template-columns: 1fr;
    }

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

    .tenant-visual {
        grid-template-columns: 1fr;
    }

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

    .notification-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .mockup-stat-row {
        grid-template-columns: 1fr;
    }

    .mockup-row {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        width: 240px;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== v2 Brand Refresh: aligned with KinderLink app UI ===== */
:root {
    --kl-teal: #2563EB;
    --kl-teal-dark: #1D4ED8;
    --kl-teal-light: #60A5FA;
    --kl-blue: #2563EB;
    --kl-blue-dark: #1D4ED8;
    --gradient-teal: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    --gradient-blue: linear-gradient(135deg, #2563EB 0%, #60A5FA 100%);
    --gradient-hero: linear-gradient(135deg, #EFF6FF 0%, #F8FBFF 50%, #EAF6FF 100%);
}

.navbar { background: rgba(255,255,255,0.88); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid rgba(37,99,235,.08); }
.navbar-logo { color: var(--kl-slate-900); gap: .75rem; }
.navbar-logo img { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 8px 16px rgba(37,99,235,.12)); }
.navbar-logo .brand-blue, .brand-blue { color: #2563EB; }
.footer-logo { color: white !important; }
.footer-logo img { width: 34px; height: 34px; }

.hero { color: var(--kl-slate-900); }
.hero::before { background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 68%); }
.hero::after { background: radial-gradient(circle, rgba(147,197,253,.18) 0%, transparent 70%); }
.hero-badge { background: rgba(37,99,235,.08); border-color: rgba(37,99,235,.16); color: #2563EB; }
.hero-badge::before { background: #2563EB; }
.hero h1 { color: #0F172A; }
.hero h1 span { background: linear-gradient(135deg, #2563EB, #1D4ED8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle, .hero-stat-label { color: #475569; }
.hero-stat-value { color: #0F172A; }
.btn-primary, .navbar-cta, .pricing-btn.primary { background: linear-gradient(135deg,#2563EB 0%,#1D4ED8 100%) !important; box-shadow: 0 12px 30px rgba(37,99,235,.25); }
.btn-primary:hover, .navbar-cta:hover, .pricing-btn.primary:hover { box-shadow: 0 18px 40px rgba(37,99,235,.35); }
.btn-secondary { background: white; color: #2563EB; border-color: rgba(37,99,235,.35); box-shadow: 0 8px 24px rgba(15,23,42,.06); }
.btn-secondary:hover { background: #EFF6FF; border-color: #2563EB; }

.hero-product-visual { display: flex; align-items: center; justify-content: center; }
.product-shot-shell { position: relative; border-radius: 28px; padding: 12px; background: rgba(255,255,255,.8); border: 1px solid rgba(37,99,235,.14); box-shadow: 0 32px 80px rgba(37,99,235,.18), 0 12px 32px rgba(15,23,42,.08); transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.product-shot-shell img { width: min(720px, 100%); display: block; border-radius: 20px; object-fit: cover; }
.product-shot-note { position: absolute; left: 28px; bottom: 28px; padding: .5rem .85rem; border-radius: 999px; background: rgba(255,255,255,.9); border: 1px solid rgba(37,99,235,.12); color: #2563EB; font-size: .8rem; font-weight: 700; box-shadow: 0 8px 24px rgba(15,23,42,.08); }

.section-dark { background: linear-gradient(135deg,#0F172A 0%,#172554 100%); }
.feature-icon.teal, .role-avatar.teal, .trust-icon.teal { background: #DBEAFE; color: #2563EB; }
.navbar-nav a:hover, .navbar-nav .dropdown-menu a:hover, .footer-col ul a:hover { color: #2563EB; }
.pricing-card.popular { border-color: rgba(37,99,235,.35); box-shadow: 0 24px 70px rgba(37,99,235,.18); }
.pricing-popular-badge { background: linear-gradient(135deg,#2563EB,#1D4ED8); }

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .product-shot-shell { transform: none; }
}
