/* ============================================================
   GIGGLEADS STUDIO LLC — Brand Stylesheet
   Professional light theme for cloud startup credibility
   ============================================================ */

/* ---------- ROOT VARIABLES ---------- */
:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a5f;
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -2px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.07), 0 4px 6px -4px rgba(0,0,0,0.07);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.06);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--slate-700);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; }
input, select, textarea { font: inherit; }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    color: var(--slate-900);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; }
p { color: var(--slate-600); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-600);
}

/* ---------- LAYOUT ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }
.section { padding: 96px 0; }
@media (min-width: 768px) { .section { padding: 120px 0; } }
.section-alt { background: var(--slate-50); }
.section-blue { background: var(--blue-800); color: var(--white); }

/* ---------- NAVIGATION ---------- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--slate-200);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
@media (min-width: 768px) { .nav-inner { height: 72px; } }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 34px; width: auto; }
@media (min-width: 768px) { .nav-logo img { height: 40px; } }
.nav-links { display: none; align-items: center; gap: 2px; }
@media (min-width: 1080px) { .nav-links { display: flex; } }
.nav-links a {
    padding: 8px 14px; font-size: 0.8125rem; font-weight: 500;
    color: var(--slate-600); border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--slate-900); background: var(--slate-100); }
.nav-cta-group { display: none; align-items: center; gap: 16px; }
@media (min-width: 1080px) { .nav-cta-group { display: flex; } }
.nav-phone { font-size: 0.8125rem; color: var(--slate-500); font-weight: 500; }
.nav-phone:hover { color: var(--blue-600); }
.nav-tablet-cta { display: none !important; }
@media (min-width: 640px) and (max-width: 1079px) {
    .nav-tablet-cta { display: inline-flex !important; }
}
body.mob-open .nav-tablet-cta { display: none !important; }
.nav-right { display: flex; align-items: center; gap: 8px; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; font-size: 0.9375rem; font-weight: 600;
    border-radius: 10px; transition: all 0.2s ease; cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: var(--blue-600); color: var(--white);
    box-shadow: 0 1px 3px rgba(37,99,235,0.3);
}
.btn-primary:hover {
    background: var(--blue-700);
    box-shadow: 0 4px 12px rgba(37,99,235,0.35);
    transform: translateY(-1px);
}
.btn-outline {
    background: var(--white); color: var(--slate-700);
    border: 1.5px solid var(--slate-200);
}
.btn-outline:hover { border-color: var(--slate-300); background: var(--slate-50); }
.btn-white {
    background: var(--white); color: var(--blue-800);
    box-shadow: var(--shadow-md);
}
.btn-white:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--blue-600); padding: 8px 0; }
.btn-ghost:hover { color: var(--blue-800); }
.btn-sm { padding: 8px 18px; font-size: 0.8125rem; border-radius: 8px; }
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 12px; }

/* ---------- MOBILE MENU ---------- */
.mob-btn {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 8px;
    flex-shrink: 0;
}
@media (min-width: 1080px) { .mob-btn { display: none; } }
.mob-btn:hover { background: var(--slate-100); }
.mob-btn svg { width: 24px; height: 24px; color: var(--slate-700); }
.mob-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 150;
    background: var(--white);
    display: flex; flex-direction: column;
    padding: 0;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mob-menu.open { opacity: 1; pointer-events: auto; }
.mob-menu-body {
    flex: 1;
    display: flex; flex-direction: column;
    padding: 24px 24px 40px;
    margin-top: 64px;
}
@media (min-width: 640px) {
    .mob-menu-body { padding: 24px 48px 48px; }
}
@media (min-width: 768px) {
    .mob-menu-body { margin-top: 72px; }
}
.mob-menu-body a.mob-link {
    display: block; padding: 16px 0; font-size: 1.125rem; font-weight: 600;
    color: var(--slate-800); border-bottom: 1px solid var(--slate-100);
    transition: color 0.2s;
    text-decoration: none;
}
.mob-menu-body a.mob-link:hover { color: var(--blue-600); }
@media (min-width: 640px) {
    .mob-menu-body a.mob-link { font-size: 1.25rem; padding: 20px 0; }
}
.mob-menu-cta {
    margin-top: auto;
    padding-top: 24px; display: flex; flex-direction: column; gap: 12px;
}
.mob-menu-phone {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 0.9375rem; font-weight: 600; color: var(--slate-500);
    padding: 12px 0; text-decoration: none;
}
.mob-menu-phone:hover { color: var(--blue-600); }
.mob-menu-phone svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- HERO ---------- */
.hero {
    padding-top: 140px; padding-bottom: 80px;
    background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
    position: relative; overflow: hidden;
}
.hero-grid {
    display: grid; gap: 48px; align-items: center;
}
@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
    .hero { padding-top: 160px; padding-bottom: 100px; }
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 100px;
    background: var(--emerald-50); border: 1px solid var(--emerald-100);
    font-size: 0.8125rem; font-weight: 600; color: var(--emerald-700);
    margin-bottom: 20px;
}
.hero-badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--emerald-500);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.6;transform:scale(1.3);} }
.hero h1 { margin-bottom: 20px; }
.hero-desc { font-size: 1.125rem; color: var(--slate-500); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 40px; }
.hero-stat-num { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 2rem; font-weight: 800; color: var(--slate-900); }
.hero-stat-num span { color: var(--blue-600); }
.hero-stat-label { font-size: 0.8125rem; color: var(--slate-400); margin-top: 2px; }

/* ---------- HERO PRODUCT MOCKUP ---------- */
.hero-mockup {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.02);
    overflow: hidden;
}
.mockup-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.r { background: #f87171; }
.mockup-dot.y { background: #fbbf24; }
.mockup-dot.g { background: #34d399; }
.mockup-url {
    flex: 1; margin-left: 8px; padding: 4px 12px;
    background: var(--white); border-radius: 6px; border: 1px solid var(--slate-200);
    font-size: 0.6875rem; color: var(--slate-400); font-family: monospace;
}
.mockup-body { padding: 20px; }
.mockup-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}
.mockup-title { font-size: 0.875rem; font-weight: 700; color: var(--slate-800); }
.mockup-live {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.6875rem; font-weight: 600; color: var(--emerald-600);
}
.mockup-live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald-500); animation: pulse 2s infinite; }
.mockup-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.metric-card {
    padding: 14px; border-radius: 10px; background: var(--slate-50);
    border: 1px solid var(--slate-100);
}
.metric-label { font-size: 0.625rem; font-weight: 600; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.05em; }
.metric-val { font-size: 1.25rem; font-weight: 800; color: var(--slate-900); margin-top: 4px; font-family: 'Plus Jakarta Sans',sans-serif; }
.metric-change { font-size: 0.625rem; font-weight: 600; color: var(--emerald-600); margin-top: 2px; }
.metric-change.down { color: #ef4444; }
.mockup-chart {
    height: 100px; background: var(--slate-50); border-radius: 10px;
    border: 1px solid var(--slate-100);
    display: flex; align-items: flex-end; padding: 12px; gap: 4px;
    overflow: hidden;
}
.chart-bar {
    flex: 1; border-radius: 4px 4px 0 0;
    background: var(--blue-500); opacity: 0.7;
    transition: opacity 0.2s;
}
.chart-bar:hover { opacity: 1; }
.mockup-row {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0; border-bottom: 1px solid var(--slate-100);
    font-size: 0.75rem;
}
.mockup-row:last-child { border-bottom: none; }
.row-icon {
    width: 28px; height: 28px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
}
.row-icon.blue { background: var(--blue-100); color: var(--blue-600); }
.row-icon.green { background: var(--emerald-100); color: var(--emerald-600); }
.row-icon.purple { background: #ede9fe; color: #7c3aed; }
.row-name { flex: 1; font-weight: 600; color: var(--slate-700); }
.row-status {
    padding: 2px 8px; border-radius: 100px;
    font-size: 0.625rem; font-weight: 600;
}
.row-status.active { background: var(--emerald-100); color: var(--emerald-700); }
.row-status.running { background: var(--blue-100); color: var(--blue-700); }

/* ---------- TRUST LOGOS ---------- */
.trust-bar { padding: 40px 0; border-bottom: 1px solid var(--slate-100); }
.trust-label { text-align: center; font-size: 0.75rem; font-weight: 600; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
.trust-logos {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 32px;
}
@media (min-width: 768px) { .trust-logos { gap: 48px; } }
.trust-logos svg { height: 28px; width: auto; color: var(--slate-400); opacity: 0.6; }

/* ---------- WHAT WE BUILD (Product Showcase) ---------- */
.product-grid {
    display: grid; gap: 64px;
}
.product-item {
    display: grid; gap: 48px; align-items: center;
}
@media (min-width: 768px) {
    .product-item { grid-template-columns: 1fr 1fr; gap: 64px; }
    .product-item.reverse .product-text { order: 2; }
    .product-item.reverse .product-visual { order: 1; }
}
.product-num {
    font-family: 'Plus Jakarta Sans',sans-serif; font-size: 0.75rem;
    font-weight: 800; color: var(--blue-600); margin-bottom: 8px;
}
.product-text h3 {
    font-size: 1.5rem; margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans',sans-serif;
}
.product-text p { line-height: 1.7; margin-bottom: 20px; }
.product-features { display: flex; flex-direction: column; gap: 10px; }
.product-feature {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.875rem; color: var(--slate-600);
}
.product-feature svg { flex-shrink: 0; margin-top: 2px; color: var(--emerald-500); }

/* Product visual mockups */
.product-visual {
    background: var(--white); border-radius: 16px;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.pv-header {
    padding: 12px 16px;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
    font-size: 0.75rem; font-weight: 600; color: var(--slate-500);
    display: flex; align-items: center; gap: 8px;
}
.pv-header svg { width: 16px; height: 16px; color: var(--blue-500); }
.pv-body { padding: 20px; }

/* Chat mockup */
.chat-messages { display: flex; flex-direction: column; gap: 12px; }
.chat-msg {
    max-width: 80%; padding: 10px 14px; border-radius: 12px;
    font-size: 0.8125rem; line-height: 1.5;
}
.chat-msg.user {
    align-self: flex-end;
    background: var(--blue-600); color: var(--white);
    border-bottom-right-radius: 4px;
}
.chat-msg.bot {
    align-self: flex-start;
    background: var(--slate-100); color: var(--slate-700);
    border-bottom-left-radius: 4px;
}
.chat-msg .bot-label {
    font-size: 0.625rem; font-weight: 700; color: var(--blue-600);
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px;
}
.chat-input-mock {
    margin-top: 16px; padding: 10px 14px; border-radius: 10px;
    border: 1px solid var(--slate-200); background: var(--slate-50);
    font-size: 0.75rem; color: var(--slate-400);
    display: flex; align-items: center; justify-content: space-between;
}

/* Social pipeline mockup */
.pipeline-steps { display: flex; flex-direction: column; gap: 8px; }
.pipeline-step {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; border-radius: 10px;
    background: var(--slate-50); border: 1px solid var(--slate-100);
    font-size: 0.8125rem;
}
.pipeline-step .step-num {
    width: 24px; height: 24px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6875rem; font-weight: 700; color: var(--white);
    background: var(--blue-600); flex-shrink: 0;
}
.pipeline-step .step-text { flex: 1; font-weight: 500; color: var(--slate-700); }
.pipeline-step .step-status {
    font-size: 0.625rem; font-weight: 600;
    padding: 2px 8px; border-radius: 100px;
}
.pipeline-step .step-status.done { background: var(--emerald-100); color: var(--emerald-700); }
.pipeline-step .step-status.active { background: var(--blue-100); color: var(--blue-700); }
.pipeline-platforms {
    display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap;
}
.plat-chip {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 10px; border-radius: 8px;
    background: var(--white); border: 1px solid var(--slate-200);
    font-size: 0.6875rem; font-weight: 600; color: var(--slate-600);
}

/* Ad ops mockup */
.adops-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.adops-card {
    padding: 14px; border-radius: 10px;
    background: var(--slate-50); border: 1px solid var(--slate-100);
}
.adops-label { font-size: 0.625rem; font-weight: 600; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.05em; }
.adops-val { font-size: 1.125rem; font-weight: 800; color: var(--slate-900); margin-top: 4px; font-family: 'Plus Jakarta Sans',sans-serif; }
.adops-sub { font-size: 0.625rem; color: var(--emerald-600); font-weight: 600; margin-top: 2px; }
.adops-sub.neg { color: #ef4444; }
.adops-bar-chart {
    grid-column: 1 / -1; padding: 14px; border-radius: 10px;
    background: var(--slate-50); border: 1px solid var(--slate-100);
}
.adops-bar-chart .bar-title { font-size: 0.6875rem; font-weight: 600; color: var(--slate-500); margin-bottom: 12px; }
.bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.bar-label { font-size: 0.625rem; color: var(--slate-500); width: 64px; text-align: right; }
.bar-track { flex: 1; height: 8px; background: var(--slate-200); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; }
.bar-fill.b1 { width: 82%; background: var(--blue-500); }
.bar-fill.b2 { width: 65%; background: var(--blue-400); }
.bar-fill.b3 { width: 48%; background: var(--blue-300); }

/* ---------- AWS ARCHITECTURE SECTION ---------- */
.arch-diagram {
    background: var(--white); border-radius: 16px; border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg); overflow: hidden; margin-top: 48px;
}
.arch-top {
    padding: 16px 24px;
    background: var(--slate-800); color: var(--white);
    display: flex; align-items: center; gap: 12px;
    font-size: 0.8125rem; font-weight: 600;
}
.arch-top svg { width: 20px; height: 20px; }
.arch-body { padding: 32px; }
.arch-layers {
    display: grid; gap: 16px;
}
@media (min-width: 768px) {
    .arch-layers { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.arch-layer-title {
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 12px;
    display: flex; align-items: center; gap: 6px;
}
.arch-layer-title .ld { width: 8px; height: 8px; border-radius: 50%; }
.arch-layer-title .ld.orange { background: #f97316; }
.arch-layer-title .ld.green { background: var(--emerald-500); }
.arch-layer-title .ld.purple { background: #8b5cf6; }
.arch-layer-title .ld.blue { background: var(--blue-500); }
.arch-service {
    padding: 14px; border-radius: 10px; border: 1px solid var(--slate-200);
    margin-bottom: 8px; transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
}
.arch-service:hover { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.arch-service svg { width: 28px; height: 28px; margin-bottom: 8px; }
.arch-svc-name { font-size: 0.8125rem; font-weight: 700; color: var(--slate-800); }
.arch-svc-desc { font-size: 0.6875rem; color: var(--slate-500); margin-top: 2px; }
.arch-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 6px; }
.arch-tag {
    padding: 1px 6px; border-radius: 4px; font-size: 0.5625rem; font-weight: 600;
    background: var(--blue-50); color: var(--blue-700);
}

/* Service detail cards below diagram */
.aws-details { display: grid; gap: 16px; margin-top: 32px; }
@media (min-width: 768px) { .aws-details { grid-template-columns: repeat(2, 1fr); } }
.aws-detail-card {
    padding: 24px; border-radius: 12px;
    background: var(--slate-50); border: 1px solid var(--slate-100);
}
.aws-detail-card h4 {
    display: flex; align-items: center; gap: 10px;
    font-size: 1rem; margin-bottom: 8px;
}
.aws-detail-card h4 svg { width: 24px; height: 24px; }
.aws-detail-card p { font-size: 0.875rem; line-height: 1.7; }

/* ---------- SERVICES GRID ---------- */
.svc-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
.svc-card {
    padding: 32px; border-radius: 16px; background: var(--white);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}
.svc-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-200);
    transform: translateY(-4px);
}
.svc-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-icon.blue { background: var(--blue-100); color: var(--blue-600); }
.svc-icon.emerald { background: var(--emerald-100); color: var(--emerald-600); }
.svc-icon.purple { background: #ede9fe; color: #7c3aed; }
.svc-icon.orange { background: #fff7ed; color: #ea580c; }
.svc-card h3 { margin-bottom: 12px; }
.svc-card p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 16px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag {
    padding: 4px 10px; border-radius: 6px; font-size: 0.6875rem; font-weight: 600;
    background: var(--slate-100); color: var(--slate-600);
}

/* ---------- PRICING ---------- */
.pricing-grid { display: grid; gap: 20px; max-width: 1000px; margin: 48px auto 0; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
    padding: 32px; border-radius: 16px; background: var(--white);
    border: 1px solid var(--slate-200);
    display: flex; flex-direction: column;
    position: relative; transition: box-shadow 0.3s, transform 0.3s;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-card.popular {
    border: 2px solid var(--blue-500);
    box-shadow: var(--shadow-xl);
}
.popular-badge {
    position: absolute; top: -1px; right: -1px;
    padding: 6px 16px; background: var(--blue-600); color: var(--white);
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 0 14px 0 12px;
}
.price-name { font-size: 1.125rem; font-weight: 700; color: var(--slate-900); }
.price-desc { font-size: 0.8125rem; color: var(--slate-500); margin: 4px 0 20px; }
.price-amount { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--slate-900); }
.price-period { font-size: 0.875rem; font-weight: 500; color: var(--slate-400); }
.price-features { margin: 24px 0; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.price-feat {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.8125rem; color: var(--slate-600);
}
.price-feat svg { flex-shrink: 0; margin-top: 2px; }

/* ---------- ABOUT ---------- */
.about-grid { display: grid; gap: 64px; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 3fr 2fr; } }
.about-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px; }
.about-info-item {
    padding: 16px; border-radius: 10px;
    border: 1px solid var(--slate-200);
    background: var(--white);
}
.about-info-item .label { font-size: 0.6875rem; font-weight: 600; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.05em; }
.about-info-item .value { font-size: 0.9375rem; font-weight: 700; color: var(--slate-800); margin-top: 4px; }
.mission-card {
    padding: 32px; border-radius: 16px;
    background: var(--blue-50); border: 1px solid var(--blue-100);
}
.mission-card h3 { margin-bottom: 12px; }
.mission-card p { margin-bottom: 20px; }
.mission-list { display: flex; flex-direction: column; gap: 12px; }
.mission-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.875rem; color: var(--slate-600);
}
.mission-item svg { flex-shrink: 0; margin-top: 2px; color: var(--blue-600); }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; gap: 64px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-info-item { display: flex; align-items: center; gap: 14px; }
.contact-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: var(--blue-50); border: 1px solid var(--blue-100);
    flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--blue-600); }
.contact-label { font-size: 0.6875rem; font-weight: 600; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-val { font-weight: 600; color: var(--slate-800); font-size: 0.9375rem; }
.contact-val a:hover { color: var(--blue-600); }
.contact-form-card {
    padding: 32px; border-radius: 16px;
    background: var(--white); border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--slate-700); margin-bottom: 6px; }
.form-input {
    width: 100%; padding: 10px 14px; border-radius: 10px;
    border: 1.5px solid var(--slate-200); background: var(--white);
    color: var(--slate-800); font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
    outline: none; border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-input::placeholder { color: var(--slate-400); }
textarea.form-input { resize: none; }
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    text-align: center; padding: 80px 24px;
    background: var(--blue-800);
    color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 32px; font-size: 1.0625rem; }
.cta-banner .btn-white { font-size: 1rem; padding: 14px 32px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--slate-50); border-top: 1px solid var(--slate-200); padding: 64px 0 32px; }
.footer-grid { display: grid; gap: 40px; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.8125rem; color: var(--slate-500); line-height: 1.6; margin-bottom: 12px; }
.footer-status {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem; font-weight: 600; color: var(--emerald-600);
}
.footer-status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald-500); animation: pulse 2s infinite; }
.footer h4 { font-size: 0.875rem; color: var(--slate-800); margin-bottom: 16px; }
.footer li { margin-bottom: 8px; }
.footer li a, .footer li button {
    font-size: 0.8125rem; color: var(--slate-500); transition: color 0.2s;
    text-align: left;
}
.footer li a:hover, .footer li button:hover { color: var(--blue-600); }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 0.8125rem; color: var(--slate-500); margin-bottom: 10px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; width: 14px; height: 14px; color: var(--blue-500); }
.footer-bottom {
    padding-top: 24px; border-top: 1px solid var(--slate-200);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 16px;
}
.footer-bottom p { font-size: 0.75rem; color: var(--slate-400); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a, .footer-bottom-links button {
    font-size: 0.75rem; color: var(--slate-400); transition: color 0.2s;
}
.footer-bottom-links a:hover, .footer-bottom-links button:hover { color: var(--blue-600); }

/* ---------- MODALS ---------- */
.modal-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(15,23,42,0.5); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-panel {
    background: var(--white); border-radius: 16px;
    max-width: 640px; width: 100%; max-height: 85vh;
    overflow: hidden; box-shadow: var(--shadow-xl);
    transform: translateY(12px); transition: transform 0.3s cubic-bezier(.16,1,.3,1);
}
.modal-overlay.open .modal-panel { transform: translateY(0); }
.modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid var(--slate-200);
}
.modal-header h2 { font-size: 1.125rem; }
.modal-close {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--slate-400); transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--slate-100); color: var(--slate-800); }
.modal-close svg { width: 20px; height: 20px; }
.modal-body {
    padding: 24px; overflow-y: auto; max-height: calc(85vh - 72px);
    font-size: 0.875rem; line-height: 1.7; color: var(--slate-600);
}
.modal-body h3 { font-size: 0.9375rem; margin: 20px 0 8px; color: var(--slate-800); }
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { margin-bottom: 12px; }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1); }
.reveal.v { opacity: 1; transform: translateY(0); }

/* ---------- SUCCESS MESSAGE ---------- */
.form-success {
    display: none; text-align: center; padding: 40px;
}
.form-success.show { display: block; }
.form-success svg { width: 48px; height: 48px; margin: 0 auto 16px; color: var(--emerald-500); }
.form-success h3 { margin-bottom: 8px; }

/* ---------- SECTION HEADERS ---------- */
.section-header { max-width: 600px; margin-bottom: 48px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header .text-label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.0625rem; line-height: 1.7; }

/* Check icon reusable */
.check-icon { width: 18px; height: 18px; }
