/* ── Variables ── */
:root {
    --primary: #1a5276;
    --primary-dark: #0e3d52;
    --primary-light: #2471a3;
    --accent: #17a589;
    --accent-light: #1abc9c;
    --bg: #f8f7f4;
    --bg-dark: #0d2c3d;
    --bg-darker: #071e2b;
    --white: #ffffff;
    --text: #1a2332;
    --text-medium: #4a6080;
    --text-light: #8a9bb0;
    --border: #dce8f0;
    --shadow-sm: 0 2px 12px rgba(26, 82, 118, 0.08);
    --shadow: 0 6px 24px rgba(26, 82, 118, 0.12);
    --shadow-lg: 0 12px 48px rgba(26, 82, 118, 0.18);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --max-w: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--accent-light); }
.light-text { color: var(--white) !important; }
.light-text em { color: var(--accent-light); }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.mt-24 { margin-top: 24px; }
.hidden { display: none !important; }
.full-width { width: 100%; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 165, 137, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(13, 44, 61, 0.96);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-cta {
    padding: 10px 22px;
    background: var(--accent);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}
.nav-cta:hover { background: var(--accent-light); transform: translateY(-1px); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--primary-dark) 50%, #1a3a4a 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}
#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}
.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(23, 165, 137, 0.15);
    border: 1px solid rgba(23, 165, 137, 0.4);
    border-radius: 100px;
    color: var(--accent-light);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge::before { content: '✦'; }
.ai-driven-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    position: relative;
}
.ai-driven-tag::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
    opacity: 0.6;
}
.hero-title {
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 480px;
    margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: center; }
.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
    font-weight: 500;
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* Dashboard mockup */
.dashboard-card {
    background: #0f1923;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #161f2a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dashboard-dots { display: flex; gap: 6px; }
.dashboard-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #ff5f57;
}
.dashboard-dots span:nth-child(2) { background: #febc2e; }
.dashboard-dots span:nth-child(3) { background: #28c840; }
.dashboard-title { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.dashboard-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric-box {
    background: #1a2535;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.metric-box:hover { border-color: rgba(23,165,137,0.3); }
.alert-box { border-color: rgba(254,188,46,0.2); }
.metric-icon-wrap { font-size: 1rem; }
.metric-val { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.metric-lbl { font-size: 0.65rem; color: rgba(255,255,255,0.4); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; margin-left: auto; flex-shrink: 0; }
.status-dot.green { background: #28c840; box-shadow: 0 0 6px #28c840; }
.status-dot.yellow { background: #febc2e; box-shadow: 0 0 6px #febc2e; }

.chart-area { background: #1a2535; border-radius: 10px; padding: 14px; }
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-bottom: 8px;
}
.bar {
    flex: 1;
    background: rgba(36, 113, 163, 0.5);
    border-radius: 3px 3px 0 0;
    transition: var(--transition);
}
.bar:hover { background: rgba(36, 113, 163, 0.9); }
.bar-highlight { background: var(--accent) !important; }
.chart-label { font-size: 0.65rem; color: rgba(255,255,255,0.3); text-align: center; }

.alert-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(254,188,46,0.08);
    border: 1px solid rgba(254,188,46,0.2);
    border-radius: 8px;
    padding: 10px 14px;
}
.alert-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #febc2e;
    box-shadow: 0 0 8px #febc2e;
    animation: pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.alert-msg { color: rgba(255,255,255,0.7); font-size: 0.72rem; flex: 1; }
.alert-time { color: rgba(255,255,255,0.3); font-size: 0.68rem; white-space: nowrap; }

.ask-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(23,165,137,0.1);
    border: 1px solid rgba(23,165,137,0.25);
    border-radius: 8px;
    padding: 10px 14px;
}
.ask-icon { color: var(--accent-light); font-size: 0.85rem; }
.ask-text { color: rgba(255,255,255,0.6); font-size: 0.72rem; }

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    z-index: 1;
}
.scroll-arrow {
    width: 20px; height: 20px;
    border-right: 2px solid rgba(255,255,255,0.3);
    border-bottom: 2px solid rgba(255,255,255,0.3);
    transform: rotate(45deg);
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }

/* ── Section headers ── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(26, 82, 118, 0.1);
    color: var(--primary-light);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.section-tag.light {
    background: rgba(255,255,255,0.1);
    color: var(--accent-light);
}
.section-header h2 { margin-bottom: 16px; color: var(--text); }
.section-header p { color: var(--text-medium); font-size: 1.05rem; }

/* ── AI Ticker ── */
.ai-ticker {
    background: var(--bg-dark);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid rgba(23,165,137,0.2);
    border-bottom: 1px solid rgba(23,165,137,0.2);
}
.ticker-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    width: max-content;
}
.ticker-track span {
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── AI Section ── */
.ai-section { background: var(--bg-darker); overflow: hidden; }
.ai-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.ai-text .section-tag { background: rgba(23,165,137,0.15); color: var(--accent-light); }
.ai-text h2 { color: var(--white); margin-bottom: 16px; }
.ai-text > p { color: rgba(255,255,255,0.6); margin-bottom: 36px; line-height: 1.75; }

.ai-features { display: flex; flex-direction: column; gap: 24px; }
.ai-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.ai-feature-icon {
    font-size: 1.3rem;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(23,165,137,0.12);
    border: 1px solid rgba(23,165,137,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ai-feature h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.ai-feature p { color: rgba(255,255,255,0.5); font-size: 0.86rem; line-height: 1.6; }

/* AI Demo Card */
.ai-demo-card {
    background: #0a1520;
    border-radius: 16px;
    border: 1px solid rgba(23,165,137,0.2);
    box-shadow: 0 0 60px rgba(23,165,137,0.08), 0 30px 80px rgba(0,0,0,0.5);
    overflow: hidden;
}
.ai-demo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #0f1e2d;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ai-demo-dots { display: flex; gap: 6px; }
.ai-demo-dots span { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.ai-demo-dots span:nth-child(2) { background: #febc2e; }
.ai-demo-dots span:nth-child(3) { background: #28c840; }
.ai-demo-title { color: var(--accent-light); font-size: 0.82rem; font-weight: 600; flex: 1; }
.ai-demo-badge {
    padding: 3px 10px;
    background: rgba(40,200,64,0.15);
    border: 1px solid rgba(40,200,64,0.3);
    border-radius: 100px;
    color: #28c840;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}
.ai-demo-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }

.ai-query-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(23,165,137,0.08);
    border: 1px solid rgba(23,165,137,0.3);
    border-radius: 10px;
    padding: 12px 16px;
}
.ai-query-icon { color: var(--accent-light); font-size: 1rem; flex-shrink: 0; }
.ai-query-text { color: rgba(255,255,255,0.8); font-size: 0.85rem; }

.ai-response {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 14px 16px;
}
.ai-response-label { color: var(--accent-light); font-size: 0.78rem; font-weight: 700; margin-bottom: 8px; }
.ai-response-text { color: rgba(255,255,255,0.65); font-size: 0.82rem; line-height: 1.65; }
.ai-response-text strong { color: var(--white); }
.red-text { color: #ff6b6b !important; }

.ai-table { border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; overflow: hidden; }
.ai-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 8px 14px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ai-table-header span { color: rgba(255,255,255,0.35); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; }
.ai-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 9px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition);
}
.ai-table-row:last-child { border-bottom: none; }
.ai-table-row span { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.highlight-row { background: rgba(255,107,107,0.06); }
.status-warn { color: #ff6b6b !important; font-weight: 600; }
.status-med { color: #febc2e !important; font-weight: 600; }
.status-ok { color: #28c840 !important; font-weight: 600; }

.ai-actions-row { display: flex; gap: 10px; }
.ai-action-btn {
    flex: 1;
    padding: 9px;
    background: rgba(23,165,137,0.1);
    border: 1px solid rgba(23,165,137,0.25);
    border-radius: 8px;
    color: var(--accent-light);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}
.ai-action-btn:hover { background: rgba(23,165,137,0.2); }

.ai-typing { display: flex; align-items: center; gap: 4px; }
.ai-typing-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: typingBounce 1.2s ease-in-out infinite;
}
.ai-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-4px); opacity: 1; }
}

@media (max-width: 1024px) {
    .ai-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ── About ── */
.about-section { background: var(--white); }
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-text .section-tag { margin-bottom: 16px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
}
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px 22px;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: default;
}
.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    background: var(--white);
}
.about-icon { font-size: 1.8rem; margin-bottom: 12px; }
.about-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.about-card p { color: var(--text-medium); font-size: 0.88rem; line-height: 1.6; }

@media (max-width: 1024px) {
    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-text { text-align: center; }
    .about-text .btn { margin-left: auto; margin-right: auto; display: inline-flex; }
}
@media (max-width: 480px) {
    .about-cards { grid-template-columns: 1fr; }
}

/* ── Problem ── */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.problem-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: default;
}
.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.problem-icon { font-size: 2rem; margin-bottom: 16px; }
.problem-card h3 { margin-bottom: 10px; color: var(--text); }
.problem-card p { color: var(--text-medium); font-size: 0.9rem; line-height: 1.6; }

/* ── Platform ── */
.dark-section {
    background: var(--bg-dark);
}
.platform-tabs { margin-top: 20px; }
.tab-nav {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.tab-btn:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.06); }
.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(26, 82, 118, 0.4);
}
.tab-panels { position: relative; }
.tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    animation: fadeIn 0.4s ease;
}
.tab-panel.active { display: grid; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.tab-visual {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.pill-group { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
    padding: 6px 14px;
    background: rgba(23,165,137,0.15);
    border: 1px solid rgba(23,165,137,0.3);
    border-radius: 100px;
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 500;
}
.flow-diagram {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.flow-box {
    padding: 12px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}
.flow-highlight {
    background: var(--primary);
    border-color: var(--primary-light);
    color: var(--white);
}
.flow-arrow { color: rgba(255,255,255,0.3); font-size: 1.2rem; }

.tab-info { color: var(--white); }
.tab-info h3 { font-size: 1.4rem; margin-bottom: 16px; color: var(--white); }
.tab-info p { color: rgba(255,255,255,0.65); margin-bottom: 24px; line-height: 1.7; }
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}
.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-light);
}

/* ── How it works ── */
.steps-container {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}
.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
}
.step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(26,82,118,0.3);
    flex-shrink: 0;
}
.step-body h3 { margin-bottom: 12px; color: var(--text); }
.step-body p { color: var(--text-medium); font-size: 0.92rem; }
.step-connector {
    flex: 0 0 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    margin-top: 32px;
    opacity: 0.4;
}

/* ── Industries ── */
.industries-section { background: var(--white); }
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.industry-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: default;
}
.industry-card:hover {
    border-color: var(--primary-light);
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.industry-icon { font-size: 2.4rem; margin-bottom: 16px; }
.industry-card h3 { margin-bottom: 10px; color: var(--text); }
.industry-card p { color: var(--text-medium); font-size: 0.88rem; }

/* ── Compliance ── */
.compliance-section { background: var(--bg-dark); }
.compliance-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.compliance-text h2 { margin-bottom: 16px; }
.compliance-text p { color: rgba(255,255,255,0.65); margin-bottom: 32px; line-height: 1.7; }
.compliance-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px; }
.compliance-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.compliance-badge-wrap { display: flex; justify-content: center; }
.compliance-badge { position: relative; }
.badge-ring {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px solid rgba(23,165,137,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 20s linear infinite;
    box-shadow: 0 0 60px rgba(23,165,137,0.1), inset 0 0 60px rgba(23,165,137,0.05);
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.badge-inner {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(23,165,137,0.1);
    border: 1px solid rgba(23,165,137,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    animation: spin 20s linear infinite reverse;
}
.badge-icon { font-size: 2rem; }
.badge-label { color: var(--accent-light); font-weight: 700; font-size: 1rem; }
.badge-sub { color: rgba(255,255,255,0.5); font-size: 0.75rem; }

/* ── Team ── */
.team-section { background: var(--bg); }

.team-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 32px 40px;
    margin-bottom: 56px;
    box-shadow: var(--shadow-sm);
}
.team-stat { text-align: center; flex: 1; }
.team-stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}
.team-stat-label {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.team-stat-divider {
    width: 1px;
    height: 56px;
    background: var(--border);
    flex-shrink: 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.expertise-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
    cursor: default;
}
.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    background: var(--white);
}
.expertise-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(26,82,118,0.08), rgba(23,165,137,0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.expertise-body h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.expertise-body p { font-size: 0.86rem; color: var(--text-medium); line-height: 1.6; margin-bottom: 14px; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.expertise-tags span {
    padding: 3px 10px;
    background: rgba(26,82,118,0.07);
    color: var(--primary-light);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .expertise-grid { grid-template-columns: 1fr; }
    .team-stats { flex-wrap: wrap; gap: 24px; padding: 24px; }
    .team-stat-divider { display: none; }
    .team-stat { flex: 0 0 40%; }
}

/* ── Contact ── */
.contact-section { background: var(--white); }
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: start;
}
.contact-text h2 { margin-bottom: 16px; color: var(--text); }
.contact-text h2 em { color: var(--primary-light); }
.contact-text p { color: var(--text-medium); margin-bottom: 28px; font-size: 1.05rem; }
.contact-perks { display: flex; flex-direction: column; gap: 10px; }
.perk-item { color: var(--text-medium); font-size: 0.92rem; display: flex; align-items: center; gap: 8px; }
.perk-item::before { content: '✓'; color: var(--accent); font-weight: 700; }

.contact-form-wrap { position: relative; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(36,113,163,0.1);
}
.form-group input.error,
.form-group select.error { border-color: #e74c3c; }
.field-error { font-size: 0.78rem; color: #e74c3c; min-height: 16px; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }

.btn-loader {
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.form-success {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.form-success h3 { margin-bottom: 12px; font-size: 1.3rem; }
.form-success p { color: var(--text-medium); }

/* ── Footer ── */
.footer { background: var(--bg-darker); color: rgba(255,255,255,0.6); }
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding: 64px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: var(--white); font-size: 0.88rem; margin-bottom: 4px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom { padding: 24px 0; text-align: center; font-size: 0.82rem; }

/* ── Scroll animations ── */
.animate-fade {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-fade.in-view {
    opacity: 1;
    transform: translateY(0);
}
.animate-fade:nth-child(1) { transition-delay: 0.05s; }
.animate-fade:nth-child(2) { transition-delay: 0.15s; }
.animate-fade:nth-child(3) { transition-delay: 0.25s; }
.animate-fade:nth-child(4) { transition-delay: 0.35s; }
.animate-fade:nth-child(5) { transition-delay: 0.45s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; padding-top: 120px; }
    .hero-visual { display: none; }
    .hero-content { text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .tab-panel.active { grid-template-columns: 1fr; }
    .tab-visual { display: none; }
    .compliance-inner { grid-template-columns: 1fr; gap: 48px; }
    .compliance-badge-wrap { justify-content: flex-start; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .steps-container { flex-direction: column; gap: 0; }
    .step { flex-direction: row; text-align: left; padding: 0 0 40px 0; }
    .step-num { margin-bottom: 0; margin-right: 20px; }
    .step-connector { width: 2px; height: 40px; align-self: flex-start; margin-top: 0; margin-left: 31px; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .nav-menu {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--bg-darker);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }
    .nav-menu.open { display: flex; }
    .nav-link { font-size: 1.2rem; }
    .nav-cta { font-size: 1rem; padding: 14px 32px; }
    .hamburger { display: flex; z-index: 1001; }
    .tab-nav { gap: 2px; }
    .tab-btn { font-size: 0.8rem; padding: 10px 12px; }
    .footer-top { flex-direction: column; gap: 32px; }
    .footer-links { flex-wrap: wrap; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .problem-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .team-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; }
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; }
}
