/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Coastal Filipino Palette */
    --ocean: #0077b6;
    --ocean-deep: #005f8d;
    --ocean-light: #00b4d8;
    --sky: #90e0ef;
    --sand: #fef3c7;
    --sand-dark: #fde68a;
    --coral: #f97316;
    --coral-light: #fb923c;
    --sunset: #e11d48;
    --palm: #16a34a;
    --pearl: #ffffff;
    --shell: #fff7ed;

    --primary: #0077b6;
    --primary-dark: #005f8d;
    --primary-light: #00b4d8;
    --accent: #f97316;
    --accent-light: #fb923c;
    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #e11d48;

    --bg: #f0fdff;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f9ff;
    --bg-section-alt: #fff7ed;
    --bg-section-ocean: #0077b6;

    --text: #1e293b;
    --text-muted: #64748b;
    --text-heading: #0c1425;
    --text-on-dark: #f0fdfa;
    --text-on-dark-muted: #bae6fd;

    --border: #e0f2fe;
    --border-warm: #fed7aa;

    --gradient: linear-gradient(135deg, #0077b6, #00b4d8);
    --gradient-text: linear-gradient(135deg, #0077b6, #f97316);
    --gradient-sunset: linear-gradient(135deg, #f97316, #e11d48);
    --gradient-ocean: linear-gradient(135deg, #0077b6, #90e0ef);
    --gradient-warm: linear-gradient(135deg, #f97316, #fbbf24);

    --shadow: 0 4px 24px rgba(0, 119, 182, 0.1);
    --shadow-lg: 0 12px 48px rgba(0, 119, 182, 0.15);
    --shadow-warm: 0 4px 24px rgba(249, 115, 22, 0.15);

    --radius: 14px;
    --radius-lg: 22px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }

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

/* === Language Toggle === */
.lang-toggle {
    display: flex; gap: 0; border: 2px solid var(--ocean-light); border-radius: 8px; overflow: hidden;
}
.lang-btn {
    padding: 6px 14px; border: none; background: transparent; color: var(--text-muted);
    font-size: 0.8rem; font-weight: 700; cursor: pointer; font-family: inherit;
    transition: all 0.2s;
}
.lang-btn.active {
    background: var(--gradient-sunset); color: #fff;
}
.lang-btn:hover:not(.active) { background: rgba(0,119,182,0.08); }

/* === Buttons === */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; border-radius: 12px; font-weight: 700;
    font-size: 0.95rem; transition: all 0.3s; cursor: pointer;
    border: none; font-family: inherit;
}
.btn-primary { background: var(--gradient-sunset); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4); }
.btn-outline { border: 2px solid var(--ocean); color: var(--ocean); background: transparent; }
.btn-outline:hover { background: var(--ocean); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }
.btn-nav { padding: 10px 24px; background: var(--gradient-sunset); color: #fff; border-radius: 10px; }
.btn-nav:hover { box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4); }

/* === Navbar === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: all 0.3s;
    background: rgba(240, 253, 255, 0.85); backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled { padding: 10px 0; border-bottom-color: var(--border); box-shadow: 0 2px 20px rgba(0,119,182,0.08); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.4rem; font-weight: 800; color: var(--ocean); display: flex; align-items: center; gap: 8px; }
.logo-icon { width: 28px; height: 28px; display: inline-block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text-muted); font-weight: 600; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--ocean); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s; border-radius: 2px; }

/* === Hero — Tropical Philippine landscape === */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 100px; overflow: hidden;
    background: linear-gradient(180deg, #b2ebf2 0%, #e0f7fa 25%, #f0fdff 50%, #fff7ed 85%, #ffe0b2 100%);
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 15% 85%, rgba(0,180,216,0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 15%, rgba(249,115,22,0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 95%, rgba(144,224,239,0.25) 0%, transparent 35%);
}
/* Island mountains + palm trees + ocean waves at bottom of hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0; height: 180px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180'%3E%3Cdefs%3E%3ClinearGradient id='sky' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%230077b6' stop-opacity='0.06'/%3E%3Cstop offset='1' stop-color='%230077b6' stop-opacity='0.15'/%3E%3C/linearGradient%3E%3C/defs%3E%3C!-- Distant volcano --%3E%3Cpath fill='%230077b6' fill-opacity='0.08' d='M100,180 L220,80 L260,50 L280,40 L300,50 L340,80 L460,180Z'/%3E%3Cpath fill='%230077b6' fill-opacity='0.06' d='M800,180 L880,100 L920,60 L940,45 L960,60 L1000,100 L1080,180Z'/%3E%3C!-- Island hills --%3E%3Cpath fill='%2316a34a' fill-opacity='0.1' d='M350,180 Q420,110 500,130 Q560,110 620,140 Q680,120 740,180Z'/%3E%3Cpath fill='%2316a34a' fill-opacity='0.08' d='M1050,180 Q1100,130 1160,145 Q1200,125 1260,150 Q1320,140 1380,180Z'/%3E%3C!-- Palm tree left --%3E%3Cpath fill='%2316a34a' fill-opacity='0.15' d='M160,140 Q155,125 140,118 Q150,115 158,105 Q152,100 145,95 Q155,95 162,88 Q158,82 155,78 Q163,80 168,75 L165,140Z' /%3E%3Crect x='161' y='140' width='4' height='40' fill='%238B6914' fill-opacity='0.12'/%3E%3C!-- Palm tree right --%3E%3Cpath fill='%2316a34a' fill-opacity='0.12' d='M1280,135 Q1275,120 1260,113 Q1270,110 1278,100 Q1272,95 1265,90 Q1275,90 1282,83 L1278,135Z' /%3E%3Crect x='1277' y='135' width='3' height='45' fill='%238B6914' fill-opacity='0.1'/%3E%3C!-- Ocean waves --%3E%3Cpath fill='%2300b4d8' fill-opacity='0.12' d='M0,155 Q180,140 360,155 Q540,170 720,155 Q900,140 1080,155 Q1260,170 1440,155 L1440,180 L0,180Z'/%3E%3Cpath fill='%230077b6' fill-opacity='0.08' d='M0,165 Q240,150 480,165 Q720,180 960,165 Q1200,150 1440,165 L1440,180 L0,180Z'/%3E%3C!-- Beach sand --%3E%3Cpath fill='%23fef3c7' d='M0,172 Q360,168 720,172 Q1080,176 1440,172 L1440,180 L0,180Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    z-index: 1;
}
.hero-content { position: relative; text-align: center; max-width: 850px; margin: 0 auto; z-index: 1; }
.hero-badge {
    display: inline-block; padding: 10px 24px;
    border: 2px solid var(--ocean-light); border-radius: 50px;
    font-size: 0.85rem; font-weight: 700; color: var(--ocean);
    margin-bottom: 28px; background: rgba(255,255,255,0.7);
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); font-weight: 800; line-height: 1.15; color: var(--text-heading); margin-bottom: 24px; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); max-width: 660px; margin: 0 auto 40px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 40px;
    background: var(--bg-card); border: 2px solid var(--border);
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.stat { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--ocean); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* === Sections === */
.section { padding: 100px 0; position: relative; }
.section-dark { background: var(--bg-section-alt); }

/* Nature-themed section dividers */
.section-dark::before {
    content: '';
    position: absolute; top: -1px; left: 0; right: 0; height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23f0fdff' d='M0,0 L1440,0 L1440,20 Q1200,60 960,30 Q720,0 480,30 Q240,60 0,20 Z'/%3E%3C/svg%3E") no-repeat top center;
    background-size: cover; z-index: 1;
}
.section-dark::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23f0fdff' d='M0,60 L1440,60 L1440,40 Q1200,0 960,30 Q720,60 480,30 Q240,0 0,40 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover; z-index: 1;
}

/* Island & mountain silhouette on language section */
#language { overflow: hidden; }
#language .section-header::before {
    content: '';
    display: block; width: 100%; height: 80px; margin-bottom: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 80'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%230077b6' stop-opacity='0.15'/%3E%3Cstop offset='1' stop-color='%23f97316' stop-opacity='0.1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g)' d='M0,80 L60,60 L120,50 L160,20 L200,50 L250,45 L300,55 L340,15 L380,45 L420,40 L480,50 L520,25 L560,45 L600,55 L650,35 L700,50 L750,60 L800,80 Z'/%3E%3Cpath fill='%2316a34a' fill-opacity='0.08' d='M100,80 L120,55 C125,50 130,48 135,55 L140,65 L145,55 C148,50 152,48 155,55 L160,65 L170,80 Z M400,80 L420,50 C428,42 435,40 442,50 L450,60 L455,50 C460,42 465,40 470,50 L478,65 L490,80 Z M650,80 L665,60 C670,52 675,50 680,58 L685,65 L695,80 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* Volcano silhouette behind industries */
#industries { overflow: hidden; }
#industries::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%230077b6' fill-opacity='0.04' d='M0,120 L200,120 L350,40 L400,25 L450,40 L600,120 L1440,120 Z'/%3E%3Cpath fill='%2316a34a' fill-opacity='0.04' d='M800,120 L900,80 L950,50 L980,35 L1010,50 L1060,80 L1160,120 Z'/%3E%3Cpath fill='%23f97316' fill-opacity='0.03' d='M960,38 Q975,20 990,38'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover; pointer-events: none;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-tag { display: inline-block; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--coral); margin-bottom: 16px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--text-heading); margin-bottom: 16px; line-height: 1.2; }
.section-desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; }

/* === Pain Section === */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-bottom: 48px; }
.pain-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 36px; transition: all 0.3s;
    border-left: 5px solid var(--sunset);
    box-shadow: var(--shadow);
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pain-number { font-size: 2.2rem; font-weight: 800; color: var(--sunset); margin-bottom: 8px; }
.pain-card h3 { font-size: 1.1rem; color: var(--text-heading); margin-bottom: 10px; }
.pain-card p { color: var(--text-muted); font-size: 0.95rem; }
.pain-cta { text-align: center; }
.pain-statement { font-size: 1.3rem; color: var(--text-heading); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* === Language / Filipino Section — Ocean-themed === */
.language-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.language-main { display: flex; flex-direction: column; gap: 24px; }
.language-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow);
}
.language-card.highlight-card { border: 3px solid var(--ocean); background: linear-gradient(135deg, #f0fdff, #e0f7fa); }
.language-card h3 { font-size: 1.3rem; color: var(--text-heading); margin-bottom: 16px; line-height: 1.4; }
.language-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.language-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.lang-badge {
    display: inline-block; padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
    background: linear-gradient(135deg, rgba(0,119,182,0.1), rgba(0,180,216,0.1));
    border: 2px solid var(--ocean-light); color: var(--ocean);
}
.lang-badge-beta {
    background: rgba(255, 255, 255, 0.08); border: 2px dashed rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.85); font-style: italic;
}
.language-features { display: flex; flex-direction: column; gap: 20px; }
.lang-feature-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px; transition: all 0.3s;
    display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow);
}
.lang-feature-card:hover { border-color: var(--ocean); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.lang-feature-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.lang-feature-card h4 { font-size: 1rem; color: var(--text-heading); margin-bottom: 6px; }
.lang-feature-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* === Projects Grid === */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; }
.project-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px; transition: all 0.3s;
    position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--ocean); }
.project-card.featured { border: 2px solid var(--coral); }
.project-badge {
    position: absolute; top: 16px; right: 16px; padding: 5px 16px;
    background: var(--gradient-sunset); border-radius: 50px; font-size: 0.75rem;
    font-weight: 800; color: #fff;
}
.project-icon { font-size: 2.4rem; margin-bottom: 12px; }
.project-tag {
    display: inline-block; padding: 4px 14px;
    background: rgba(0,119,182,0.08); border: 2px solid rgba(0,119,182,0.2);
    border-radius: 50px; font-size: 0.75rem; font-weight: 700;
    color: var(--ocean); margin-bottom: 16px;
}
.project-card h3 { font-size: 1.25rem; color: var(--text-heading); margin-bottom: 10px; }
.project-card > p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.project-how {
    background: linear-gradient(135deg, #f0fdff, #f0f9ff); border: 1px solid var(--border);
    border-radius: 12px; padding: 20px; margin-bottom: 20px;
}
.project-how h4 { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--ocean); margin-bottom: 12px; }
.project-how ol { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.project-how li { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.project-outcome { padding-top: 16px; border-top: 2px solid var(--border); }
.project-outcome span { font-size: 0.88rem; font-weight: 700; color: var(--palm); }

/* === Demo / Try AI Section === */
.demo-gate-card {
    max-width: 600px; margin: 0 auto; text-align: center;
    background: var(--bg-card); border: 2px solid var(--ocean-light); border-radius: var(--radius-lg);
    padding: 48px 40px; box-shadow: var(--shadow-lg);
}
.demo-gate-card h3 { font-size: 1.4rem; color: var(--text-heading); margin-bottom: 12px; }
.demo-gate-card p { color: var(--text-muted); margin-bottom: 24px; }
.demo-gate-fields { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.demo-gate-fields input {
    flex: 1; min-width: 160px; padding: 14px 18px; background: #f8fafc; border: 2px solid var(--border);
    border-radius: 10px; font-size: 0.95rem; font-family: inherit; outline: none;
    transition: border-color 0.2s; color: var(--text);
}
.demo-gate-fields input:focus { border-color: var(--ocean); }
.demo-gate-fields input::placeholder { color: var(--text-muted); }

.hidden { display: none !important; }

.demo-unlocked-banner {
    text-align: center; padding: 16px 24px; background: linear-gradient(135deg, #dcfce7, #d1fae5);
    border: 2px solid #86efac; border-radius: 12px; margin-bottom: 40px;
    font-size: 0.95rem; color: #166534; font-weight: 600;
}
.demo-unlocked-banner span { font-size: 1.1rem; }

.demo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.demo-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 36px; position: relative; box-shadow: var(--shadow);
}
.demo-card-icon { font-size: 2.2rem; margin-bottom: 8px; }
.demo-card-badge {
    position: absolute; top: 16px; right: 16px; padding: 4px 14px;
    background: var(--gradient); border-radius: 50px; font-size: 0.7rem;
    font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1px;
}
.demo-card h3 { font-size: 1.2rem; color: var(--text-heading); margin-bottom: 10px; }
.demo-card > p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 20px; }
.demo-sample {
    background: #f0f9ff; border: 1px solid var(--border); border-radius: 10px;
    padding: 16px 20px; margin-bottom: 20px;
}
.demo-sample h4 { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--ocean); margin-bottom: 10px; }
.demo-sample ul { padding-left: 18px; list-style: disc; }
.demo-sample li { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; font-style: italic; }
.demo-note { font-size: 0.8rem; color: var(--text-muted); font-style: italic; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--border); }

/* Chat Widget */
.demo-chat-widget {
    border: 2px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 4px;
}
.demo-chat-messages {
    height: 220px; overflow-y: auto; padding: 16px; background: #f8fafc;
    display: flex; flex-direction: column; gap: 10px;
}
.chat-msg {
    max-width: 85%; padding: 10px 16px; border-radius: 12px;
    font-size: 0.88rem; line-height: 1.5;
}
.chat-msg.bot {
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff); color: var(--text);
    border-bottom-left-radius: 4px; align-self: flex-start;
    border: 1px solid #bae6fd;
}
.chat-msg.user {
    background: var(--gradient-sunset); color: #fff;
    border-bottom-right-radius: 4px; align-self: flex-end;
}
.demo-chat-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--border); background: #fff; }
.demo-chat-input input {
    flex: 1; padding: 10px 16px; border: 2px solid var(--border); border-radius: 8px;
    font-size: 0.9rem; outline: none; font-family: inherit; color: var(--text);
}
.demo-chat-input input:focus { border-color: var(--ocean); }
.demo-chat-input .btn { padding: 10px 20px; font-size: 0.85rem; }

/* Upload Areas */
.demo-upload-box {
    border: 2px dashed var(--ocean-light); border-radius: 12px; padding: 32px;
    text-align: center; cursor: pointer; transition: all 0.2s;
    background: #f8fafc;
}
.demo-upload-box:hover { border-color: var(--ocean); background: #f0f9ff; }
.upload-icon { font-size: 2.5rem; margin-bottom: 8px; }
.demo-upload-box p { font-size: 0.92rem; color: var(--text); font-weight: 600; margin-bottom: 4px; }
.demo-upload-box span { font-size: 0.8rem; color: var(--text-muted); }

.demo-result {
    margin-top: 20px; padding: 20px; background: #f0fdf4; border: 1px solid #bbf7d0;
    border-radius: 12px;
}
.demo-result h4 { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--palm); margin-bottom: 16px; }
.result-item { margin-bottom: 14px; }
.result-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: var(--ocean); display: block; margin-bottom: 4px; }
.result-value { font-size: 0.9rem; color: var(--text); }
.result-badge {
    display: inline-block; padding: 4px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
}
.result-table { font-size: 0.88rem; }
.result-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #d1fae5; }
.result-row:last-child { border-bottom: none; }
.result-key { font-weight: 700; color: var(--ocean); }
.result-val { color: var(--text); text-align: right; }

/* Content Generator */
.demo-generator { }
.demo-gen-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.demo-gen-fields input, .demo-gen-fields select {
    width: 100%; padding: 14px 18px; background: #f8fafc; border: 2px solid var(--border);
    border-radius: 10px; font-size: 0.95rem; font-family: inherit; outline: none;
    color: var(--text); transition: border-color 0.2s; appearance: none;
}
.demo-gen-fields input:focus, .demo-gen-fields select:focus { border-color: var(--ocean); }
.demo-gen-fields input::placeholder { color: var(--text-muted); }
.gen-posts { display: flex; flex-direction: column; gap: 12px; }
.gen-post {
    padding: 16px; background: #fff; border: 1px solid #e0f2fe; border-radius: 10px;
    font-size: 0.9rem; color: var(--text); line-height: 1.6; position: relative;
}
.gen-post-num {
    position: absolute; top: 8px; right: 12px; font-size: 0.7rem; font-weight: 800;
    color: var(--ocean-light);
}

@media (max-width: 968px) {
    .demo-grid { grid-template-columns: 1fr; }
    .demo-gate-fields { flex-direction: column; }
}

/* === Solution Cards (industry-led, problem-first) === */
.solution-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.solution-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px; transition: all 0.3s;
    display: flex; flex-direction: column; gap: 14px;
    box-shadow: var(--shadow); position: relative;
}
.solution-card:hover { border-color: var(--coral); transform: translateY(-6px); box-shadow: var(--shadow-warm); }
.solution-card-featured { border: 2px solid var(--coral); }
.industry-badge {
    position: absolute; top: -12px; right: 20px;
    background: var(--coral); color: #fff;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.5px;
    padding: 4px 12px; border-radius: 999px; text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}
.solution-card .industry-icon { font-size: 2.4rem; line-height: 1; margin-bottom: 4px; }
.solution-card h3 {
    font-size: 1.25rem; color: var(--text-heading); margin: 0;
    line-height: 1.3;
}
.industry-pain {
    color: var(--text); font-size: 0.95rem; line-height: 1.55;
    background: linear-gradient(135deg, #fff1e6, #ffe4d6);
    padding: 12px 14px; border-radius: 10px;
    border-left: 3px solid var(--coral); margin: 0;
}
.industry-pain strong { color: #b91c1c; display: block; margin-bottom: 4px; font-size: 0.92rem; }
.industry-bundle {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 6px;
}
.industry-bundle li {
    color: var(--text); font-size: 0.9rem; padding-left: 22px;
    position: relative; line-height: 1.5;
}
.industry-bundle li::before {
    content: '✓'; position: absolute; left: 0; top: 0;
    color: #16a34a; font-weight: 800; font-size: 0.95rem;
}
.industry-outcome {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #86efac; border-radius: 10px;
    padding: 12px 14px; display: flex; align-items: baseline; gap: 8px;
    flex-wrap: wrap; margin-top: auto;
}
.outcome-metric {
    font-size: 1.4rem; font-weight: 800; color: #166534;
    line-height: 1;
}
.outcome-label {
    font-size: 0.85rem; color: #166534; line-height: 1.3;
}
.industry-other-text {
    color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; margin: 0;
}
.solution-card-other { background: linear-gradient(135deg, #f8fafc, #eff6ff); }
.solution-card-other .industry-icon { color: var(--ocean); }
.industry-cta {
    margin-top: 8px; width: 100%; padding: 12px 16px;
    font-size: 0.95rem; font-weight: 700;
    border: none; cursor: pointer;
}

/* === Job Seekers section (separate audience) === */
.section-jobseeker { padding: 60px 0; background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%); }
.jobseeker-card {
    display: flex; align-items: center; gap: 40px;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 40px;
    box-shadow: var(--shadow);
    max-width: 920px; margin: 0 auto;
}
.jobseeker-content { flex: 1; }
.jobseeker-content .section-tag { margin-bottom: 12px; }
.jobseeker-content h2 { font-size: 1.8rem; margin-bottom: 12px; line-height: 1.25; }
.jobseeker-content p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.jobseeker-visual { font-size: 5rem; flex-shrink: 0; line-height: 1; }
@media (max-width: 720px) {
    .jobseeker-card { flex-direction: column-reverse; text-align: center; padding: 28px 20px; }
    .jobseeker-visual { font-size: 3.6rem; }
    .jobseeker-content h2 { font-size: 1.5rem; }
}

/* === ROI Calculator === */
.roi-calculator { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.roi-inputs, .roi-results {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow);
}
.roi-inputs h3, .roi-results h3 { font-size: 1.2rem; color: var(--text-heading); margin-bottom: 28px; }
.roi-field { margin-bottom: 28px; }
.roi-field label { display: block; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; font-weight: 600; }
.roi-field input[type="range"] {
    width: calc(100% - 100px); -webkit-appearance: none; height: 8px;
    background: linear-gradient(90deg, var(--sky), var(--ocean-light)); border-radius: 4px;
    outline: none; vertical-align: middle;
}
.roi-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
    background: var(--coral); cursor: pointer; border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(249,115,22,0.3);
}
.roi-field input[type="range"]::-moz-range-thumb {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--coral); cursor: pointer; border: 3px solid #fff;
}
.roi-value {
    display: inline-block; width: 90px; text-align: right; font-weight: 800;
    color: var(--ocean); font-size: 0.95rem; vertical-align: middle; margin-left: 8px;
}
.roi-result-card { display: flex; flex-direction: column; gap: 20px; }
.roi-result-item { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.roi-result-item.total { border-bottom: none; padding-top: 8px; border-top: 3px solid var(--coral); }
.roi-label { color: var(--text-muted); font-size: 0.95rem; }
.roi-number { font-size: 1.4rem; font-weight: 800; color: var(--text-heading); }
.roi-number.highlight { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 1.6rem; }

/* === Process Timeline === */
.process-timeline { max-width: 700px; margin: 0 auto; position: relative; }
.process-timeline::before { content: ''; position: absolute; left: 36px; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--ocean-light), var(--coral)); border-radius: 2px; }
.process-step { display: flex; gap: 32px; margin-bottom: 48px; position: relative; }
.process-step:last-child { margin-bottom: 0; }
.step-number {
    flex-shrink: 0; width: 72px; height: 72px; display: flex; align-items: center;
    justify-content: center; background: var(--bg-card); border: 3px solid var(--ocean);
    border-radius: 50%; font-size: 1.2rem; font-weight: 800; color: var(--ocean);
    position: relative; z-index: 1; box-shadow: var(--shadow);
}
.step-content h3 { font-size: 1.2rem; color: var(--text-heading); margin-bottom: 8px; padding-top: 4px; }
.step-content p { color: var(--text-muted); font-size: 0.95rem; }

/* === Pricing Grid === */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px; text-align: center;
    transition: all 0.3s; position: relative; box-shadow: var(--shadow);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.popular { border: 3px solid var(--coral); transform: scale(1.03); }
.pricing-card.popular:hover { transform: scale(1.05); }
.pricing-popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    padding: 6px 22px; background: var(--gradient-sunset); border-radius: 50px;
    font-size: 0.8rem; font-weight: 800; color: #fff; white-space: nowrap;
}
.pricing-card h3 { font-size: 1.2rem; color: var(--text-heading); margin-bottom: 16px; }
.pricing-price { font-size: 2.2rem; font-weight: 800; color: var(--ocean); margin-bottom: 12px; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.pricing-features { text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { color: var(--text-muted); font-size: 0.9rem; padding-left: 24px; position: relative; }
.pricing-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--palm); font-weight: 700; }
.pricing-footnote { text-align: center; margin-top: 36px; }
.pricing-footnote p { color: var(--text-muted); font-size: 0.95rem; }
.pricing-footnote a { color: var(--ocean); font-weight: 600; text-decoration: underline; }
.pricing-footnote a:hover { color: var(--ocean-dark); }

/* === Benefits Grid === */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.benefit-card {
    padding: 36px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); transition: all 0.3s; box-shadow: var(--shadow);
    border-top: 4px solid var(--ocean-light);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-top-color: var(--coral); }
.benefit-card h3 { font-size: 1.1rem; color: var(--text-heading); margin-bottom: 10px; }
.benefit-card p { color: var(--text-muted); font-size: 0.95rem; }

/* === CTA / Contact Section — Sunset beach === */
.section-cta {
    padding: 100px 0; position: relative; overflow: hidden;
    background: linear-gradient(180deg, #fff7ed 0%, #fef3c7 30%, #ffe0b2 60%, #ffccbc 100%);
}
.section-cta::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%230077b6' fill-opacity='0.06' d='M0,50 Q360,30 720,50 Q1080,70 1440,50 L1440,100 L0,100Z'/%3E%3Cpath fill='%2300b4d8' fill-opacity='0.08' d='M0,65 Q240,50 480,65 Q720,80 960,65 Q1200,50 1440,65 L1440,100 L0,100Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover; pointer-events: none;
}
.cta-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; color: var(--text-heading); margin-bottom: 20px; line-height: 1.2; }
.cta-content p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 24px; line-height: 1.8; }
.cta-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cta-list li { color: var(--text); font-size: 0.95rem; font-weight: 600; }

/* === Contact Form === */
.cta-form-wrapper {
    background: var(--bg-card); border: 2px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg);
}
.contact-form h3 { font-size: 1.3rem; color: var(--text-heading); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px; background: #f8fafc; border: 2px solid var(--border);
    border-radius: 12px; color: var(--text); font-size: 0.95rem; font-family: inherit;
    transition: border-color 0.2s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-card); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--ocean); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--text-muted); margin-top: 12px; }

/* === Footer — Deep ocean === */
.footer {
    padding: 60px 0 30px; border-top: none;
    background: linear-gradient(180deg, #005f8d, #003d5c);
    color: var(--text-on-dark);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer .logo { color: #fff; }
.footer .logo-icon { color: var(--coral); -webkit-text-fill-color: var(--coral); background: none; }
.footer-brand p { color: var(--text-on-dark-muted); font-size: 0.9rem; margin-top: 12px; max-width: 280px; }
.footer-links h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-links li { color: var(--text-on-dark-muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--coral-light); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-on-dark-muted); }

/* === Responsive === */
@media (max-width: 968px) {
    .cta-wrapper, .roi-calculator, .language-grid { grid-template-columns: 1fr; gap: 40px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-4px); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 28px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
        background: var(--bg); flex-direction: column; align-items: center;
        justify-content: center; gap: 28px; z-index: 999;
    }
    .nav-links.active { display: flex; }
    .mobile-toggle { display: flex; }
    .lang-toggle { order: -1; }
    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .section { padding: 64px 0; }
    .hero { padding: 100px 0 60px; }
    .projects-grid, .benefits-grid, .solution-grid { grid-template-columns: 1fr; }
    .process-timeline::before { left: 28px; }
    .step-number { width: 56px; height: 56px; font-size: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
