/* =============================================================
   INNOVATIVE AI SOLUTIONS — style.css v1.1
   Typography: Poppins (headings) + Inter (body)
   Refined SaaS-quality UI
   ============================================================= */

/* --- CSS VARIABLES --- */
:root {
    --primary:      #1E40AF;
    --primary-dark: #1530A0;
    --secondary:    #7C3AED;
    --accent:       #10B981;
    --accent-alt:   #F59E0B;
    --dark:         #111827;
    --gray-700:     #374151;
    --gray-500:     #6B7280;
    --gray-200:     #E5E7EB;
    --body-bg:      #F8FAFC;
    --card-bg:      #FFFFFF;
    --hero-grad:    linear-gradient(135deg, #1E40AF 0%, #7C3AED 100%);
    --font-head:    'Poppins', sans-serif;
    --font-body:    'Inter', sans-serif;
    --radius:       12px;
    --radius-lg:    20px;
    --shadow-sm:    0 2px 12px rgba(17,24,39,0.07);
    --shadow:       0 4px 24px rgba(30,64,175,0.10);
    --shadow-lg:    0 12px 48px rgba(30,64,175,0.16);
    --transition:   all 0.25s ease;
}

/* --- BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--body-bg);
    color: var(--dark);
    line-height: 1.75;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary); }
img { max-width: 100%; height: auto; display: block; }

section { padding: 96px 0; }

/* --- NAVBAR --- */
#mainNavbar {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 14px 0;
    transition: var(--transition);
    z-index: 1050;
}
#mainNavbar.scrolled {
    padding: 10px 0;
    background: rgba(10,14,26,0.99);
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.brand-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.brand-main {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}
.brand-sub {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.4px;
    font-family: var(--font-body);
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75) !important;
    padding: 6px 13px !important;
    transition: color .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #fff !important; }

.dropdown-menu-dark {
    background: #141c2e;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 270px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.dropdown-menu-dark .dropdown-item {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    border-radius: 8px;
    padding: 8px 12px;
    transition: all .15s;
}
.dropdown-menu-dark .dropdown-item:hover { background: rgba(124,58,237,0.18); color: #fff; }
.dropdown-menu-dark .dropdown-item.hero-link { color: #a5b4fc; font-weight: 600; }
.dropdown-menu-dark .dropdown-header {
    color: rgba(255,255,255,0.28);
    font-size: 0.68rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 12px 2px;
    font-family: var(--font-body);
    font-weight: 600;
}
.dropdown-divider { border-color: rgba(255,255,255,0.07); margin: 4px 0; }

.btn-nav-cta {
    background: var(--hero-grad);
    color: #fff !important;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    border: none;
    white-space: nowrap;
    transition: var(--transition);
}
.btn-nav-cta:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,58,237,0.35); color: #fff !important; }

/* --- HERO --- */
.hero-section {
    background: var(--hero-grad);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 130px 0 90px;
}

/* Dot grid texture */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Wave bottom */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 70px;
    background: var(--body-bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: #e0e7ff;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.hero-headline {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-headline .highlight {
    color: #a5f3fc;
}

/* .hero-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,0.78);
    max-width: 540px;
    margin-bottom: 16px;
    line-height: 1.75;
} */

.hero-sub{
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.95);
    max-width: 720px;
    margin-top: 18px;
    margin-bottom: 18px;
    font-weight: 400;
}

.hero-brand-line {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    margin-bottom: 36px;
    letter-spacing: 0.3px;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 28px rgba(16,185,129,0.38);
    text-decoration: none;
}
.btn-primary-cta:hover { background: #0ea572; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(16,185,129,0.48); }

.btn-ghost-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.10);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.22);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-ghost-cta:hover { background: rgba(255,255,255,0.20); color: #fff; transform: translateY(-2px); }

.hero-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-val {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
}
.hero-stat-lbl {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
    display: block;
}

/* Hero float card */
.hero-float-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    animation: floatY 5s ease-in-out infinite;
}
.hero-metric-big {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-metric-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}
.hero-metric-row { display: flex; gap: 24px; }
.hero-metric-mini-val {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    display: block;
}
.hero-metric-mini-lbl {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    display: block;
    margin-top: 2px;
}

/* --- SECTION COMMONS --- */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 10px;
    display: block;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3.2vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}
.section-title span { color: var(--primary); }
.section-sub {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

/* --- PROBLEM SECTION --- */
.problem-section {
    background: #0d1117;
    padding: 96px 0;
}
.problem-eyebrow { color: rgba(165,243,252,0.65) !important; }
.problem-h2 {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}
.problem-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.80);
    font-weight: 500;
    transition: var(--transition);
}
.problem-row:hover { background: rgba(124,58,237,0.10); border-color: rgba(124,58,237,0.25); }
.problem-row .px { font-size: 1.25rem; }

.we-fix-text {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    background: var(--hero-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

/* --- TRUST BAR --- */
.trust-bar {
    background: #fff;
    padding: 44px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.trust-num {
    font-family: var(--font-head);
    font-size: 2.1rem;
    font-weight: 800;
    background: var(--hero-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}
.trust-lbl {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 4px;
    display: block;
}
.trust-divider {
    width: 1px;
    background: var(--gray-200);
    height: 48px;
    margin: auto;
}

/* --- SERVICES STRIP --- */
.services-strip { background: var(--body-bg); padding: 80px 0; }

.svc-icon-card {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: block;
    text-decoration: none;
    color: var(--dark);
}
.svc-icon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    color: var(--dark);
}
.svc-icon-wrap {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(30,64,175,0.08), rgba(124,58,237,0.08));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}
.svc-icon-card:hover .svc-icon-wrap { background: var(--hero-grad); color: #fff; }
.svc-icon-card h6 {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

/* --- HERO SERVICES --- */
.hero-svcs-section { background: #fff; }

.hsvc-card {
    background: var(--body-bg);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.hsvc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--hero-grad);
    opacity: 0;
    transition: opacity .3s;
}
.hsvc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.hsvc-card:hover::before { opacity: 1; }
.hsvc-card.featured {
    background: var(--hero-grad);
    border-color: transparent;
    color: #fff;
}
.hsvc-card.featured::before { opacity: 1; background: rgba(255,255,255,0.15); }
.hsvc-badge {
    display: inline-block;
    font-size: 0.70rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(245,158,11,0.12);
    color: var(--accent-alt);
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}
.hsvc-card.featured .hsvc-badge { background: rgba(255,255,255,0.15); color: #fde68a; }
.hsvc-card h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.hsvc-promise {
    font-size: 0.88rem;
    color: var(--secondary);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
}
.hsvc-card.featured .hsvc-promise { color: #a5f3fc; }
.hsvc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}
.hsvc-list li {
    font-size: 0.87rem;
    color: var(--gray-700);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.hsvc-list li::before { content: '✔'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.hsvc-card.featured .hsvc-list li { color: rgba(255,255,255,0.85); }
.hsvc-card.featured .hsvc-list li::before { color: #6ee7b7; }
.hsvc-price {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}
.hsvc-card.featured .hsvc-price { color: #fff; }
.hsvc-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-500);
    display: block;
    margin-top: 2px;
}
.hsvc-card.featured .hsvc-price small { color: rgba(255,255,255,0.6); }
.btn-svc {
    display: block;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.87rem;
    padding: 11px 24px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    color: var(--primary);
    transition: var(--transition);
    margin-top: 20px;
}
.btn-svc:hover { background: var(--primary); color: #fff; }
.hsvc-card.featured .btn-svc { border-color: rgba(255,255,255,0.6); color: #fff; }
.hsvc-card.featured .btn-svc:hover { background: #fff; color: var(--primary); }

/* Bundle Banner */
.bundle-banner {
    background: linear-gradient(135deg, rgba(30,64,175,0.06), rgba(124,58,237,0.06));
    border: 2px dashed rgba(124,58,237,0.28);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
}
.bundle-badge {
    background: var(--accent-alt);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 8px;
    font-family: var(--font-body);
}
.bundle-banner h4 {
    font-family: var(--font-head);
    font-weight: 800;
    margin: 0 0 4px;
    font-size: 1.3rem;
}
.bundle-banner p {
    margin: 0;
    color: var(--gray-500);
    font-size: 0.9rem;
}
.bundle-price {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-align: right;
    flex-shrink: 0;
}

/* --- INDUSTRIES --- */
.industries-section { background: var(--body-bg); }

.ind-card {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    transition: var(--transition);
}
.ind-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.ind-emoji { font-size: 2rem; margin-bottom: 14px; display: block; line-height: 1; }
.ind-card h5 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.ind-pain { font-size: 0.83rem; color: #EF4444; font-weight: 500; margin-bottom: 6px; }
.ind-solution { font-size: 0.83rem; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
.ind-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.ind-link:hover { color: var(--secondary); gap: 10px; }

/* --- WHY CHOOSE US --- */
.why-section { background: #fff; }

.why-card {
    background: var(--body-bg);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.why-icon-wrap {
    width: 68px; height: 68px;
    background: var(--hero-grad);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.7rem;
    color: #fff;
}
.why-card h5 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--gray-500); margin: 0; line-height: 1.65; }

/* --- HOW IT WORKS --- */
.how-section { background: var(--body-bg); }

.step-card { text-align: center; padding: 16px 12px; position: relative; }
.step-num {
    width: 58px; height: 58px;
    background: var(--hero-grad);
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(30,64,175,0.28);
}
.step-icon { font-size: 1.75rem; color: var(--primary); margin-bottom: 12px; }
.step-card h5 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.87rem; color: var(--gray-500); line-height: 1.65; }
.step-connector {
    position: absolute; right: -16px; top: 28px;
    font-size: 1.2rem; color: var(--gray-200);
}

/* --- AI DEMO --- */
.ai-demo-section { background: #0d1117; padding: 96px 0; }

.ai-chat-shell {
    max-width: 680px;
    margin: 0 auto;
    background: #141c2e;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.ai-chat-topbar {
    background: var(--hero-grad);
    padding: 15px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ai-live-dot {
    width: 9px; height: 9px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.6s infinite;
    flex-shrink: 0;
}
.ai-chat-topbar span {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
}
.ai-msg-area {
    padding: 22px;
    max-height: 330px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ai-msg-area::-webkit-scrollbar { width: 4px; }
.ai-msg-area::-webkit-scrollbar-track { background: transparent; }
.ai-msg-area::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.ai-bubble {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 82%;
    white-space: pre-line;
}
.ai-bubble.bot {
    background: rgba(124,58,237,0.18);
    border: 1px solid rgba(124,58,237,0.25);
    color: rgba(255,255,255,0.88);
    align-self: flex-start;
}
.ai-bubble.user {
    background: rgba(30,64,175,0.28);
    border: 1px solid rgba(30,64,175,0.35);
    color: rgba(255,255,255,0.88);
    align-self: flex-end;
}
.ai-bubble.typing-ind { opacity: 0.55; font-style: italic; }

.ai-quick-row {
    padding: 0 22px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.quick-chip {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    color: rgba(255,255,255,0.65);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.76rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.quick-chip:hover { background: rgba(124,58,237,0.2); border-color: rgba(124,58,237,0.35); color: #fff; }

.ai-input-row {
    padding: 14px 22px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    gap: 10px;
}
.ai-input-row input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    border-radius: 50px;
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 0.87rem;
    outline: none;
    transition: border .2s;
}
.ai-input-row input:focus { border-color: rgba(124,58,237,0.45); }
.ai-input-row input::placeholder { color: rgba(255,255,255,0.3); }
.ai-send-btn {
    background: var(--hero-grad);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.ai-send-btn:hover { opacity: 0.85; }

/* --- TESTIMONIALS --- */
.testimonials-section { background: #fff; }

.testi-card {
    background: var(--body-bg);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testi-card::after {
    content: '\201C';
    position: absolute;
    top: 12px; right: 22px;
    font-size: 4.5rem;
    color: rgba(30,64,175,0.07);
    font-family: Georgia, serif;
    line-height: 1;
}
.testi-stars { color: #F59E0B; font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: 0.93rem; color: var(--dark); line-height: 1.75; margin-bottom: 20px; }
.testi-name { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; }
.testi-role { font-size: 0.78rem; color: var(--gray-500); margin-top: 2px; }

/* --- AUDIT TOOL --- */
.audit-section { background: var(--body-bg); }

.audit-shell {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-sm);
    max-width: 720px;
    margin: 0 auto;
}
.audit-shell h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.audit-shell > p { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 28px; }

.form-label-sm { font-size: 0.82rem; font-weight: 600; font-family: var(--font-body); margin-bottom: 6px; display: block; }
.form-ctrl {
    width: 100%;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 11px 15px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dark);
    background: #fff;
    transition: border .2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.form-ctrl:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,64,175,0.09); }

.btn-run-audit {
    width: 100%;
    background: var(--hero-grad);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.97rem;
    padding: 14px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-run-audit:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.audit-output { margin-top: 28px; padding-top: 24px; border-top: 1.5px solid var(--gray-200); display: none; }
.audit-issue-row {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0; border-bottom: 1px solid var(--gray-200);
    color: #EF4444; font-size: 0.88rem; font-weight: 500;
}
.audit-gate {
    background: var(--body-bg);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 16px;
    display: none;
}
.audit-gate p { font-size: 0.88rem; font-weight: 600; margin-bottom: 12px; }
.gate-row { display: flex; gap: 8px; flex-wrap: wrap; }
.gate-row input { flex: 1; min-width: 160px; }
.btn-unlock {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 11px 22px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-unlock:hover { background: var(--primary-dark); }
.audit-reco {
    background: linear-gradient(135deg, rgba(30,64,175,0.05), rgba(124,58,237,0.05));
    border: 1.5px solid rgba(30,64,175,0.14);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 16px;
    display: none;
}

/* --- PORTFOLIO STRIP --- */
.portfolio-strip { background: var(--body-bg); }

.port-thumb {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.port-thumb:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.port-img {
    background: var(--hero-grad);
    height: 170px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 2.8rem;
}
.port-body { padding: 20px; }
.port-industry {
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--secondary); margin-bottom: 5px;
    font-family: var(--font-body);
}
.port-body h6 { font-family: var(--font-head); font-weight: 700; margin-bottom: 3px; font-size: 0.95rem; }
.port-body p { font-size: 0.80rem; color: var(--gray-500); margin: 0; }

/* --- CTA STRIP --- */
.cta-strip { background: var(--hero-grad); padding: 96px 0; }
.cta-strip h2 {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.cta-strip p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 36px; }

/* --- FOOTER --- */
.site-footer { background: #0a0e1a; color: rgba(255,255,255,0.65); }
.footer-top { padding: 72px 0 52px; }
.footer-brand-main { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: #fff; display: block; }
.footer-brand-sub { font-size: 0.65rem; color: rgba(255,255,255,0.38); letter-spacing: 0.4px; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 12px 0 10px; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.72; }

.footer-contact-row {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.83rem; color: rgba(255,255,255,0.55);
    margin-bottom: 9px; transition: color .2s;
}
.footer-contact-row:hover { color: #fff; }
.footer-contact-row i { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-row a { color: inherit; }

.footer-col-h {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
}
.footer-ul { list-style: none; padding: 0; margin: 0; }
.footer-ul li { margin-bottom: 8px; }
.footer-ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-ul a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    font-size: 0.80rem;
    color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* --- FAQ --- */
.faq-section { background: var(--body-bg); }
.faq-item {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border .2s;
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    gap: 12px;
    user-select: none;
}
.faq-question i { font-size: 1.05rem; color: var(--gray-500); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
    padding: 0 24px;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 18px; }

/* --- WHATSAPP FLOAT --- */
.wa-float {
    position: fixed;
    bottom: 28px; right: 24px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    display: flex; align-items: center;
    padding: 0 0 0 0;
    width: 54px; height: 54px;
    justify-content: center;
    font-size: 1.55rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.38);
    z-index: 9998;
    transition: width .3s ease, padding .3s ease;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
}
.wa-float-label {
    max-width: 0;
    overflow: hidden;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    transition: max-width .3s ease, margin .3s;
    display: inline-block;
}
.wa-float:hover { width: auto; padding: 0 20px; gap: 8px; color: #fff; }
.wa-float:hover .wa-float-label { max-width: 150px; margin-left: 8px; }

/* --- ANIMATIONS --- */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.82); }
}

/* --- UTILITIES --- */
.text-grad {
    background: var(--hero-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fw-800 { font-weight: 800; }
.btn-outline-primary-custom {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.87rem;
    padding: 11px 28px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    color: var(--primary);
    transition: var(--transition);
}
.btn-outline-primary-custom:hover { background: var(--primary); color: #fff; }

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    section { padding: 72px 0; }
    .hero-section { min-height: auto; padding: 110px 0 72px; }
    .hero-stats-row { gap: 24px; }
    .bundle-banner { padding: 24px 28px; }
    .step-connector { display: none; }
    .audit-shell { padding: 32px 24px; }
}

@media (max-width: 767px) {
    section { padding: 56px 0; }
    .hero-headline { font-size: 2rem; }
    .hero-sub { font-size: 0.93rem; }
    .btn-primary-cta, .btn-ghost-cta { padding: 12px 22px; font-size: 0.9rem; }
    .hero-stats-row { gap: 18px; margin-top: 36px; }
    .hero-stat-val { font-size: 1.6rem; }
    .hsvc-card { padding: 28px 22px; }
    .bundle-banner { flex-direction: column; text-align: center; }
    .bundle-price { text-align: center; }
    .audit-shell { padding: 24px 18px; }
    .cta-strip { padding: 72px 0; }
    .footer-top { padding: 52px 0 36px; }
}

/* =============================================================
   PHASE 1.2 ADDITIONS
   Larger text · Less purple · Founder · Portfolio · SEO
   ============================================================= */

/* --- BODY SIZE FIX --- */
body { font-size: 17px; }

/* --- HERO TRUST STRIP --- */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
}
.hero-trust-strip span {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-trust-strip span i { color: #10B981; font-size: 0.85rem; }

/* --- LEGACY SECTION (Web/Mobile/Software — white bg) --- */
.legacy-section { background: #fff; }

.legacy-card {
  background: var(--body-bg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
}
.legacy-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

.legacy-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(30,64,175,0.08), rgba(124,58,237,0.08));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: var(--transition);
}
.legacy-card:hover .legacy-icon { background: var(--hero-grad); color: #fff; }

.legacy-card h5 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.legacy-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}
.legacy-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.legacy-link:hover { color: var(--secondary); gap: 10px; }

/* --- AI SERVICES SECTION (navy bg) --- */
.ai-services-section {
  background: #0d1117;
}
.ai-services-section .section-eyebrow { color: rgba(165,243,252,0.65); }
.ai-services-section .section-title { color: #fff; }
.ai-services-section .section-title span { color: #a5f3fc; }
.ai-services-section .section-sub { color: rgba(255,255,255,0.55); }

.ai-svc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
}
.ai-svc-card:hover {
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-5px);
}
.ai-svc-icon {
  width: 52px; height: 52px;
  background: var(--hero-grad);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 18px;
}
.ai-svc-card h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.ai-svc-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 14px;
}
.ai-svc-price {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #10B981;
  margin-bottom: 12px;
}
.ai-svc-card .legacy-link { color: rgba(165,243,252,0.85); }
.ai-svc-card .legacy-link:hover { color: #fff; }

/* Bundle banner in dark section */
.ai-services-section .bundle-banner {
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(124,58,237,0.4);
}
.ai-services-section .bundle-banner h4 { color: #fff; }
.ai-services-section .bundle-banner p { color: rgba(255,255,255,0.55); }

/* --- INDUSTRIES (body-bg) already defined, add 8-col grid support --- */
.ind-card p { font-size: 0.88rem; }

/* --- FOUNDER SECTION --- */
.founder-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #faf5ff 100%);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.founder-photo-wrap {
  display: flex;
  justify-content: center;
}
.founder-photo-placeholder {
  width: 220px; height: 220px;
  background: var(--hero-grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.5);
  box-shadow: 0 16px 48px rgba(30,64,175,0.25);
}
/* When real photo is added: */
.founder-photo {
  width: 220px; height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(30,64,175,0.25);
  border: 4px solid #fff;
}

.founder-designation {
  font-size: 0.95rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 24px;
}

.founder-creds { margin-bottom: 20px; }
.founder-cred-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-700);
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.5;
}
.founder-cred-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.founder-cred-item em { color: var(--primary); font-style: normal; font-weight: 600; }

.founder-quote {
  background: #fff;
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1rem;
  color: var(--dark);
  font-style: italic;
  line-height: 1.65;
  margin: 20px 0 24px;
  box-shadow: var(--shadow-sm);
}

.btn-ghost-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 700;
  border: 2px solid var(--primary);
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
}
.btn-ghost-outline:hover { background: var(--primary); color: #fff; }

/* --- PORTFOLIO / REAL PROJECTS --- */
.portfolio-strip { background: #fff; }

.project-card {
  background: var(--body-bg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

.project-industry-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.project-card h5 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--dark);
}
.project-block { margin-bottom: 12px; }
.project-block p {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin: 4px 0 0;
}
.project-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 10px;
  border-radius: 50px;
  font-family: var(--font-body);
}
.project-label.problem  { background: rgba(239,68,68,0.1);  color: #DC2626; }
.project-label.solution { background: rgba(30,64,175,0.1);  color: var(--primary); }
.project-label.result   { background: rgba(16,185,129,0.1); color: #059669; }

/* --- CARD TEXT SIZE FIXES --- */
.hsvc-list li    { font-size: 0.92rem; }
.testi-card p    { font-size: 0.97rem; }
.why-card p      { font-size: 0.93rem; }
.step-card p     { font-size: 0.92rem; }
.ind-card h5     { font-size: 1.08rem; }
.ind-pain, .ind-solution { font-size: 0.88rem; }
.faq-question    { font-size: 1rem; }
.faq-answer      { font-size: 0.93rem; }
.audit-shell > p { font-size: 0.93rem; }
.bundle-banner p { font-size: 0.95rem; }

/* --- SECTION ALTERNATION (reduce purple overload) ---
   Hero: gradient (kept)
   S2 Trust: white
   S3 Legacy: white
   S4 AI Services: navy (dark — not purple gradient)
   S5 Industries: body-bg (light grey)
   S6 Founder: soft blue-purple tint
   S7 Why: white
   S8 How: body-bg
   S9 AI Demo: navy dark
   S10 Portfolio: white
   S11 Testimonials: body-bg
   S12 Audit: white
   S13 FAQ: body-bg
   S14 CTA: gradient (kept)
*/
.testimonials-section { background: var(--body-bg); }
.audit-section        { background: #fff; }
.faq-section          { background: var(--body-bg); }

/* --- RESPONSIVE ADDITIONS --- */
@media (max-width: 767px) {
  body { font-size: 16px; }
  .hero-trust-strip { gap: 8px 16px; }
  .hero-trust-strip span { font-size: 0.82rem; }
  .founder-photo-placeholder { width: 160px; height: 160px; font-size: 3.5rem; }
  .project-card { padding: 22px 18px; }
  .ai-svc-card { padding: 24px 20px; }
  .legacy-card { padding: 24px 20px; }
  .ind-card { padding: 22px 18px; }
}

/* =============================================================
   PHASE 1.3 ADDITIONS
   Global positioning · Trust logos · Badge pills · Sticky CTA
   ============================================================= */

/* --- TRUSTED BY STRIP --- */
.trusted-by-section {
  background: #fff;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}
.trusted-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.trusted-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.trusted-logo-pill {
  background: var(--body-bg);
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: var(--transition);
  white-space: nowrap;
}
.trusted-logo-pill:hover { border-color: var(--primary); color: var(--primary); }

/* --- AI SERVICE BADGE PILLS --- */
.ai-svc-badge {
  display: inline-block;
  background: rgba(16,185,129,0.15);
  color: #10B981;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- FOUNDER PHOTO BADGE --- */
.founder-photo-wrap { position: relative; display: inline-block; }
.founder-photo-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  font-family: var(--font-body);
  box-shadow: 0 4px 12px rgba(16,185,129,0.35);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* --- TRUST BAR TEXT SIZE FIX --- */
.trust-num { font-size: 2.4rem; }
.trust-lbl { font-size: 0.88rem; font-weight: 600; margin-top: 5px; }

/* --- HERO SUB SIZE FIX --- */
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
}

/* --- STICKY WHATSAPP CTA (mobile) --- */
.sticky-wa-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #25D366;
  padding: 14px 20px;
  z-index: 9997;
  text-align: center;
}
.sticky-wa-bar a {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .sticky-wa-bar { display: block; }
  .wa-float { bottom: 80px; } /* push float above sticky bar */
  body { padding-bottom: 60px; }
}

/* --- SEO FOOTER BLOCK --- */
.seo-footer-block {
  background: #f0f4ff;
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
}
.seo-footer-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-500);
  margin: 0;
  font-family: var(--font-body);
}
.seo-footer-link {
  font-size: 0.83rem;
  color: var(--gray-700);
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
  display: block;
}
.seo-footer-link:hover { color: var(--primary); }

/* --- LEGACY CARD SIZE IMPROVEMENT --- */
.legacy-card { padding: 36px 30px; }
.legacy-icon { width: 64px; height: 64px; font-size: 1.6rem; border-radius: 16px; }
.legacy-card h5 { font-size: 1.1rem; }
.legacy-card p  { font-size: 0.94rem; }

/* --- PROJECT CARD --- */
.project-card h5 { font-size: 1.08rem; }
.project-block p  { font-size: 0.91rem; }

/* --- NAVBAR GLOBAL UPDATE --- */
.brand-sub { font-size: 0.67rem; letter-spacing: 0.3px; }

/* =============================================================
   PHASE 1.3 FINAL FIXES
   Logo · AOS safety · Font fallback · Section visibility
   ============================================================= */

/* --- NAVBAR LOGO --- */
.navbar-logo {
  height: 104px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  /* Logo has orange/blue on transparent — add subtle bg for dark navbar */
  /* background: rgba(255,255,255,0.92);
  border-radius: 6px; */
  padding: 4px 10px;
}

/* --- FORCE ALL SECTIONS VISIBLE (AOS safety net) --- */
/* These ensure content shows even if CDN JS fails */
.hero-section,
.trust-bar,
.trusted-by-section,
.legacy-section,
.ai-services-section,
.industries-section,
.founder-section,
.why-section,
.how-section,
.ai-demo-section,
.portfolio-strip,
.testimonials-section,
.audit-section,
.faq-section,
.cta-strip,
.seo-footer-block,
.site-footer {
  opacity: 1 !important;
  visibility: visible !important;
  padding-top: 70px;
  padding-bottom: 55px;
}

/* Ensure text inside dark sections is always readable */
.ai-services-section .ai-svc-card h5,
.ai-services-section .ai-svc-card p,
.ai-demo-section .ai-bubble,
.ai-demo-section h2 {
  opacity: 1 !important;
}

/* --- FONT FALLBACK for when Google Fonts CDN is offline --- */
/* System fonts look clean and professional as fallback */
@font-face {
  font-family: 'Poppins';
  src: local('Arial Black'), local('Helvetica Neue'), local('sans-serif');
  font-weight: 800;
  font-display: swap;
}

/* --- HERO CONTENT ALWAYS VISIBLE --- */
.hero-section * { opacity: 1 !important; }
.hero-headline, .hero-sub, .hero-brand-line,
.hero-trust-strip, .hero-eyebrow,
.btn-primary-cta, .btn-ghost-cta,
.hero-stats-row { opacity: 1 !important; transform: none !important; }

/* --- BOOTSTRAP FALLBACK: basic grid if Bootstrap CDN fails --- */
/* Ensures layout doesn't collapse completely */
@media (min-width: 768px) {
  .row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; padding: 0 12px; }
  .col-md-4 { flex: 0 0 33.33%; max-width: 33.33%; padding: 0 12px; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; padding: 0 12px; }
}

/* --- TRUST BAR always readable --- */
.trust-bar { opacity: 1; }
.trust-num, .trust-lbl { opacity: 1 !important; }

/* --- NAVBAR always visible --- */
#mainNavbar { opacity: 1 !important; }

/* Final typography polish */
.faq-answer       { font-size: 0.96rem; line-height: 1.78; }
.faq-question     { font-size: 1.02rem; }
.testi-card p     { font-size: 1rem;    line-height: 1.8;  }
.project-block p  { font-size: 0.94rem; line-height: 1.72; }
.footer-ul a      { font-size: 0.9rem;  }
.footer-desc      { font-size: 0.9rem;  line-height: 1.75; }
.founder-section  { padding: 100px 0; }

/* Founder spacing */
.founder-creds    { margin-bottom: 24px; }
.founder-cred-item{ font-size: 0.98rem; padding: 9px 0; }
/* =============================================================
   PHASE 2 — SERVICE PAGES
   Page hero · Solution rows · Include cards · Compare cards
   Price cards · Use case cards · Missed call flow
   ============================================================= */

/* --- PAGE HERO (service pages) --- */

/* --- SOLUTION ROWS --- */
.solution-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}
.solution-row:last-child { border-bottom: none; }
.solution-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(30,64,175,0.08), rgba(124,58,237,0.08));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.solution-row strong {
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  color: var(--dark);
}
.solution-row p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.65;
}

/* --- INCLUDE CARDS --- */
.include-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  height: 100%;
  transition: var(--transition);
  text-align: center;
}
.include-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.include-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(30,64,175,0.08), rgba(124,58,237,0.08));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0 auto 14px;
  transition: var(--transition);
}
.include-card:hover .include-icon { background: var(--hero-grad); color: #fff; }
.include-card h6 {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.include-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.68;
  margin: 0;
}

/* --- COMPARE CARDS (before/after) --- */
.compare-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
}
.before-card {
  background: #fff5f5;
  border: 1.5px solid #fecaca;
}
.after-card {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
}
.compare-label {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.before-label { color: #DC2626; }
.after-label  { color: #16A34A; }
.compare-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}
.compare-row:last-child { border-bottom: none; }
.before-card .compare-row i { color: #EF4444; }
.after-card  .compare-row i { color: #16A34A; }

/* --- PRICE CARDS --- */
.price-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.price-card-featured {
  background: var(--hero-grad);
  border-color: transparent;
  color: #fff;
}
.price-tier {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.price-card-featured .price-tier { color: rgba(255,255,255,0.6); }
.price-amt {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.price-card-featured .price-amt { color: #fff; }
.price-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 20px;
  line-height: 1.5;
}
.price-card-featured .price-desc { color: rgba(255,255,255,0.65); }
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.price-list li {
  font-size: 0.9rem;
  color: var(--gray-700);
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-list li::before { content: '✔'; color: var(--accent); font-weight: 700; flex-shrink: 0; font-size: 0.8rem; }
.price-card-featured .price-list li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.12); }
.price-card-featured .price-list li::before { color: #6ee7b7; }

.btn-svc-featured {
  display: block;
  text-align: center;
  background: #fff;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 24px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-svc-featured:hover { background: #f0f4ff; color: var(--primary); }

/* --- USE CASE CARDS --- */
.usecase-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
}
.usecase-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.usecase-emoji { font-size: 2rem; margin-bottom: 12px; display: block; line-height: 1; }
.usecase-card h5 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.usecase-card p  { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; margin: 0; }

/* --- MISSED CALL FLOW --- */
.missed-call-flow { margin-top: 8px; }
.mcf-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  margin-bottom: 4px;
}
.mcf-step-green { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.25); }
.mcf-num {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.mcf-num-green { background: rgba(16,185,129,0.2); color: #10B981; }
.mcf-step strong { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.9); display: block; }
.mcf-step small  { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.mcf-arrow { text-align: center; color: rgba(255,255,255,0.2); font-size: 0.8rem; padding: 2px 0; }

/* --- PROBLEM ROWS (service pages use dark bg version) --- */
.page-hero-section + section .problem-row {
  background: #fff8f8;
  border-color: #fecaca;
}

/* --- MOBILE SERVICE PAGES --- */
@media (max-width: 767px) {
  .price-card { padding: 28px 20px; }
  .price-amt  { font-size: 2rem; }
  .compare-card { padding: 24px 20px; margin-bottom: 12px; }
  .include-card { padding: 22px 16px; }
  .solution-row { flex-direction: column; gap: 12px; }
  .mcf-step { padding: 10px 12px; }
}

/* =============================================================
   PHASE 2 CORRECTIONS
   Active nav · Cross-link cards · Capabilities portfolio
   ============================================================= */

/* --- ACTIVE NAV STATE --- */
.nav-link.active-nav {
  color: #ffffff !important;
  background: rgba(124,58,237,.18);
  border-radius: 999px;
  padding: 6px 16px !important;
  font-weight: 600;
}

/* --- CROSS-LINK CARDS --- */
.crosslink-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--body-bg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  text-decoration: none;
  color: var(--dark);
  transition: var(--transition);
  height: 100%;
}
.crosslink-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  color: var(--dark);
}
.crosslink-icon {
  width: 52px; height: 52px;
  background: var(--hero-grad);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}
.crosslink-card strong {
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.crosslink-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}
.crosslink-arrow {
  color: var(--gray-200);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-left: auto;
  transition: var(--transition);
}
.crosslink-card:hover .crosslink-arrow { color: var(--primary); transform: translateX(4px); }

/* --- USECASE CARD (capabilities/portfolio section) --- */
.usecase-card h5 { font-size: 1.05rem; }
.usecase-card p  { font-size: 0.9rem; line-height: 1.72; }

/* --- MOBILE --- */
@media (max-width: 767px) {
  .crosslink-card { flex-direction: column; text-align: center; }
  .crosslink-arrow { display: none; }
}

/* =============================================================
   PHASE 2 FINAL CORRECTIONS — Mobile hero padding
   ============================================================= */
@media (max-width: 768px) {
  .hero-section,
    .hero-headline {
    line-height: 1.15;
  }
  .hero-stats-row {
    gap: 20px;
  }
}

/* =============================================================
   PHASE 3 — Pricing · About · Contact
   ============================================================= */

/* --- CONTACT OPTIONS --- */
.contact-options { display: flex; flex-direction: column; gap: 12px; }

.contact-option-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  text-decoration: none;
  color: rgba(255,255,255,0.88);
  transition: var(--transition);
  font-size: 0.9rem;
}
.contact-option-card:hover { background: rgba(255,255,255,0.15); color: #fff; transform: translateX(4px); }
.contact-option-card strong { display: block; font-weight: 700; font-size: 0.92rem; color: #fff; margin-bottom: 2px; }
.contact-option-card span  { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

.contact-option-wa { border-color: rgba(37,211,102,0.4); }
.contact-option-wa:hover { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.6); }

.contact-option-icon {
  width: 44px; height: 44px;
  background: #25D366;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.contact-option-icon-blue   { background: var(--primary); }
.contact-option-icon-purple { background: var(--secondary); }

/* --- CONTACT FORM CARD --- */
.contact-form-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(12px);
}
.contact-form-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.contact-form-card > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.contact-form-card .form-ctrl {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: #fff;
  border-radius: var(--radius);
}
.contact-form-card .form-ctrl::placeholder { color: rgba(255,255,255,0.3); }
.contact-form-card .form-ctrl:focus { border-color: rgba(124,58,237,0.5); background: rgba(255,255,255,0.1); box-shadow: none; }
.contact-form-card .form-ctrl option { color: var(--dark); background: #fff; }
.contact-form-card .form-label-sm { color: rgba(255,255,255,0.7); }
.contact-form-card textarea.form-ctrl { resize: vertical; min-height: 110px; }

.form-success-msg {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.9rem;
  color: #6ee7b7;
  margin-bottom: 20px;
  line-height: 1.6;
}
.form-success-msg i { margin-right: 8px; font-size: 1rem; }
.form-error-msg {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: #fca5a5;
  margin-bottom: 20px;
}

/* --- CONTACT INFO ROWS --- */
.contact-info-rows { margin-top: 28px; display: flex; flex-direction: column; gap: 0; }

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row i {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, rgba(30,64,175,0.08), rgba(124,58,237,0.08));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-row strong { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; display: block; margin-bottom: 3px; }
.contact-info-row span  { font-size: 0.87rem; color: var(--gray-500); line-height: 1.6; }
.contact-info-row a     { font-size: 0.87rem; color: var(--primary); font-weight: 500; }
.contact-info-row a:hover { color: var(--secondary); }

/* --- MOBILE PHASE 3 --- */
@media (max-width: 767px) {
  .contact-form-card { padding: 24px 18px; }
  .contact-option-card { padding: 13px 15px; gap: 12px; }
}

/* =============================================================
   PHASE 3 CORRECTIONS
   Pricing disclaimer · Bundle rec · Contact why-strip
   Small text bump · About story
   ============================================================= */

/* --- PRICING DISCLAIMER --- */
.pricing-disclaimer {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.pricing-disclaimer i { color: rgba(255,255,255,0.4); }

/* --- BUNDLE RECOMMENDATION --- */
.bundle-recommendation {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,158,11,0.1);
  border: 1.5px solid rgba(245,158,11,0.25);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--dark);
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- CONTACT WHY STRIP --- */
.contact-why-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 20px;
}
.contact-why-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.contact-why-item i { color: #10B981; font-size: 0.82rem; }
.contact-why-item .fa-clock { color: #F59E0B; }

/* --- GLOBAL SMALL TEXT BUMP --- */
/* Cards, labels, FAQ — push from 0.82-0.85rem up to 0.9rem */
.include-card p,
.legacy-card p,
.why-card p,
.usecase-card p,
.testi-card p,
.step-card p,
.project-block p   { font-size: 0.93rem; }

.footer-ul a       { font-size: 0.9rem; }
.footer-desc       { font-size: 0.9rem; }
.footer-contact-row{ font-size: 0.87rem; }

.faq-answer        { font-size: 0.95rem; }
.faq-question      { font-size: 1rem; }

.ind-pain,
.ind-solution      { font-size: 0.9rem; }

.price-list li     { font-size: 0.92rem; }
.price-desc        { font-size: 0.9rem; }

.hsvc-list li      { font-size: 0.93rem; }
.section-sub       { font-size: 1.02rem; }

.trusted-logo-pill { font-size: 0.87rem; }
.section-eyebrow   { font-size: 0.75rem; }

/* --- MOBILE CONTACT WHY STRIP --- */
@media (max-width: 767px) {
  .contact-why-strip { gap: 8px 14px; }
  .contact-why-item  { font-size: 0.82rem; }
  .bundle-recommendation { font-size: 0.82rem; padding: 8px 14px; }
}

/* =============================================================
   PHASE 4 — Industries Page
   ============================================================= */

/* --- INDUSTRY NAV PILLS --- */
.industry-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}
.ind-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font-body);
}
.ind-pill:hover { background: rgba(255,255,255,0.22); color: #fff; transform: translateY(-2px); }

/* --- INDUSTRY SECTION EYEBROW EMOJI --- */
.ind-section-eyebrow {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

/* --- INDUSTRY PROBLEMS --- */
.ind-problems { margin: 24px 0 0; }
.ind-problems-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.ind-problem-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.92rem;
  color: var(--gray-700);
  font-weight: 500;
}
.ind-problem-row:last-child { border-bottom: none; }
.ind-problem-row i { color: #EF4444; font-size: 0.82rem; margin-top: 3px; flex-shrink: 0; }

/* --- INDUSTRY SOLUTIONS GRID --- */
.ind-solutions-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.ind-solution-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--body-bg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--transition);
}
.ind-solution-card:hover { border-color: var(--primary); background: #fff; transform: translateX(4px); }
.ind-solution-icon {
  width: 42px; height: 42px;
  background: var(--hero-grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.ind-solution-card strong {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  color: var(--dark);
}
.ind-solution-card p {
  font-size: 0.87rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.65;
}

/* --- INDUSTRY SERVICES STRIP --- */
.ind-services-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(30,64,175,0.05), rgba(124,58,237,0.05));
  border: 1.5px solid rgba(30,64,175,0.12);
  border-radius: var(--radius);
}
.ind-services-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  font-family: var(--font-body);
  white-space: nowrap;
}
.ind-service-tag {
  background: var(--primary);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font-body);
}
.ind-service-tag:hover { background: var(--secondary); color: #fff; }

/* --- MOBILE INDUSTRIES --- */
@media (max-width: 767px) {
  .industry-nav-pills { gap: 8px; }
  .ind-pill { font-size: 0.78rem; padding: 5px 13px; }
  .ind-section-eyebrow { font-size: 2.2rem; }
  .ind-solution-card { padding: 14px 16px; }
  .ind-services-strip { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* =============================================================
   PORTFOLIO PAGE
   ============================================================= */

/* --- FILTER PILLS --- */
.port-filter {
  background: none;
  cursor: pointer;
  transition: var(--transition);
}
.port-filter.active-filter {
  background: #fff !important;
  color: var(--primary) !important;
  border-color: #fff !important;
  font-weight: 700;
}

/* --- PORTFOLIO CARDS --- */
.port-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.port-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

.port-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.port-emoji { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.port-industry-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-body);
}
.port-country {
  font-size: 0.75rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
}
.port-country i { font-size: 0.65rem; }

.port-card h5 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--dark);
}
.port-block { margin-bottom: 10px; }
.port-block p {
  font-size: 0.87rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin: 4px 0 0;
}
.port-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 10px;
  border-radius: 50px;
  font-family: var(--font-body);
}
.port-label.challenge { background: rgba(239,68,68,0.09);  color: #DC2626; }
.port-label.solution  { background: rgba(30,64,175,0.09);  color: var(--primary); }
.port-label.result    { background: rgba(16,185,129,0.09); color: #059669; }

.port-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}
.port-svc-tag {
  background: var(--body-bg);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  font-family: var(--font-body);
}

/* --- HIDE/SHOW FILTER --- */
.port-item { transition: opacity .25s, transform .25s; }
.port-item.hidden { display: none; }

/* --- CAPABILITY CARDS --- */
.cap-card {
  background: var(--body-bg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
}
.cap-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.cap-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  transition: var(--transition);
}
.cap-count {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1;
}
.cap-card h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cap-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; margin: 0; }

/* --- MOBILE --- */
@media (max-width: 767px) {
  .port-card { padding: 20px 18px; }
  .cap-card  { padding: 24px 20px; }
}

/* =============================================================
   PORTFOLIO + INDUSTRIES HERO PILL SPACING
   ============================================================= */
.industry-nav-pills { margin-top: 24px; }

/* Dot grid texture — same as homepage */

/* Wave bottom — uniform on all inner pages */

/* Eyebrow badge — always visible */
.page-hero-section .hero-eyebrow {
  margin-bottom: 20px;
}

/* Responsive — mobile navbar is shorter */
@media (max-width: 991px) {
  }
@media (max-width: 767px) {
  }

@media (max-width: 991px) {
  
}
@media (max-width: 767px) {
  
}


/* =============================================================
   PAGE HERO SECTION — ALL INNER PAGES
   ============================================================= */
.page-hero-section {
  background: var(--hero-grad);
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
  min-height: auto;
}
.page-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.page-hero-section::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--body-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
  display: block;
}
@media (max-width: 991px) {
  .page-hero-section { padding: 150px 0 80px; }
}
@media (max-width: 767px) {
  .page-hero-section { padding: 135px 0 70px; }
}
