﻿/* ============================================
   Hosting4Webs - Premium Design System
   Brand colors derived from the Hosting4Webs logo:
   Deep Navy #001C50 Â· Bright Blue #005AE7 Â· Green #71CC05
   ============================================ */

/* === Brand Palette (single source of truth) === */
:root {
    /* Primary brand */
    --brand-blue: #005AE7;
    --brand-blue-bright: #1E7CFF;
    --brand-blue-dark: #0046C4;
    --brand-navy: #001C50;
    --brand-navy-deep: #001231;
    --brand-green: #71CC05;
    --brand-green-dark: #54A300;
    --brand-green-soft: #EAFBD3;

    /* Design tokens (used across the whole CSS) */
    --primary: var(--brand-blue);
    --primary-dark: var(--brand-blue-dark);
    --secondary: var(--brand-navy);
    --accent: var(--brand-blue-bright);
    --cta: var(--brand-green);
    --cta-dark: var(--brand-green-dark);
    --success: var(--brand-green);
    --dark: var(--brand-navy);
    --dark-deep: var(--brand-navy-deep);
    --light: #F4F8FF;
    --light-alt: #EAF1FF;
    --white: #FFFFFF;
    --border: #E2E8F0;

    /* Text */
    --text-primary: #101C38;
    --text-secondary: #5A6B85;
    --heading-color: #0F1B33;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #005AE7 0%, #1E7CFF 100%);
    --gradient-dark: linear-gradient(135deg, #001C50 0%, #0046C4 100%);
    --gradient-cta: linear-gradient(135deg, #71CC05 0%, #54A300 100%);
    --gradient-green: linear-gradient(135deg, #71CC05, #54A300);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 28, 80, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 28, 80, 0.09);
    --shadow-lg: 0 8px 32px rgba(0, 28, 80, 0.13);
    --shadow-xl: 0 16px 48px rgba(0, 28, 80, 0.18);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Motion & type */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
--font-heading: 'Poppins', sans-serif;
--font-body: 'Inter', sans-serif;
/* Typography system (single source of truth) */
--fs-h1: clamp(32px, 3.6vw, 44px);
--fs-h2: clamp(24px, 2.8vw, 34px);
--fs-h3: clamp(18px, 1.6vw, 20px);
--fs-body: 16px;
--fs-small: 13px;
--lh-h1: 1.15;
--lh-h2: 1.28;
--lh-h3: 1.4;
--fw-h1: 700;
--fw-h2: 700;
--fw-h3: 600;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; overflow-x: clip; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* === Scroll Progress === */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px;
    background: var(--gradient-primary); z-index: 10001;
    width: 0; transition: width 0.1s linear;
}

/* === Container === */
.container { width: 100%; max-width: 100%; margin: 0 auto; padding: 0 50px; }

/* === Buttons === */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-sm);
    font-family: var(--font-heading); font-weight: 600; font-size: 15px;
    transition: var(--transition); cursor: pointer; border: 2px solid transparent;
    white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius-md); }
.btn-full { width: 100%; justify-content: center; }
.btn-primary {
    background: var(--gradient-primary); color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 90, 231, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 90, 231, 0.4);
}
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-outline-dark { border-color: var(--dark); color: var(--dark); background: transparent; }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
.btn-cta {
    background: var(--gradient-cta); color: var(--white);
    box-shadow: 0 4px 16px rgba(113, 204, 5, 0.35);
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(113, 204, 5, 0.45);
}
.btn-glass {
    background: rgba(255, 255, 255, 0.15); color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #20BD5A; transform: translateY(-2px); }

/* === Section Defaults === */
.section { padding: 100px 0; }
.section:nth-child(even) { background: var(--light); }
.section-header { text-align: center; max-width: 820px; margin: 0 auto 60px; }
.section-tag {
    display: inline-block; padding: 6px 16px; border-radius: 50px;
    background: rgba(0, 90, 231, 0.08); color: var(--primary);
    font-size: 14px; font-weight: 600; margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading); font-size: var(--fs-h2);
    font-weight: var(--fw-h2); line-height: var(--lh-h2); margin-bottom: 16px; color: var(--text-primary);
    letter-spacing: -0.5px; text-wrap: balance;
}
.section-subtitle { font-size: 17px; color: var(--text-secondary); line-height: 1.7; text-wrap: balance; }
.gradient-text { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark); color: rgba(255, 255, 255, 0.8);
    font-size: 13px; padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-left a { display: flex; align-items: center; gap: 6px; color: rgba(255, 255, 255, 0.8); }
.top-bar-left a:hover { color: var(--accent); }
.top-bar-left a i { font-size: 12px; }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.7); font-size: 12px;
}
.top-bar-right a:hover { background: var(--primary); color: var(--white); }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: transparent;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 20px;
}
.logo {
    display: flex; align-items: center; flex-shrink: 0;
    line-height: 1;
}
.logo-img {
    height: 42px; width: auto; display: block;
    transition: var(--transition);
}
.logo:hover .logo-img { opacity: 0.9; }
.logo-img-mobile { height: 38px; }
.logo-img-footer { height: 44px; }

/* === Nav List === */
.nav { position: relative; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-item::after {
    content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 16px;
}
.nav-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 11px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 600; color: var(--text-secondary);
    white-space: nowrap; transition: var(--transition); letter-spacing: 0.2px;
    cursor: pointer;
}
.nav-link:hover, .nav-link.active,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link { color: var(--primary); background: rgba(0, 90, 231, 0.07); }
.nav-link > i { font-size: 13px; }
.nav-caret { font-size: 10px !important; transition: var(--transition); }
.nav-item:hover > .nav-link .nav-caret,
.nav-item:focus-within > .nav-link .nav-caret { transform: rotate(180deg); }
.nav-client-area .nav-link { color: var(--dark); font-weight: 600; }
.nav-client-area .nav-link:hover { color: var(--primary); }

/* Dropdown Menu */
.dropdown-menu {
    position: absolute; top: calc(100% + 10px); left: 0; min-width: 230px;
    background: var(--white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl); border: 1px solid var(--border);
    padding: 10px; opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: var(--transition); z-index: 1002;
}
.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu::before {
    content: ''; position: absolute; top: -6px; left: 24px; width: 12px; height: 12px;
    background: var(--white); border-left: 1px solid var(--border); border-top: 1px solid var(--border);
    transform: rotate(45deg);
}
.dropdown-menu li { position: relative; }
.dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: var(--radius-sm);
    font-size: 14px; color: var(--text-secondary); font-weight: 500;
    transition: var(--transition);
}
.dropdown-menu a:hover { background: rgba(0, 90, 231, 0.06); color: var(--primary); }
.dropdown-menu a i { width: 18px; text-align: center; color: var(--primary); font-size: 14px; flex-shrink: 0; }

/* Mega Menu */
.mega-menu {
    position: absolute; top: calc(100% + 10px); left: 0;
    transform: translateY(12px);
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl); border: 1px solid var(--border);
    padding: 24px; opacity: 0; visibility: hidden;
    transition: var(--transition); z-index: 1002;
}
.nav-item:hover > .mega-menu,
.nav-item:focus-within > .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu::before {
    content: ''; position: absolute; top: -6px; left: 28px; width: 12px; height: 12px;
    background: var(--white); border-left: 1px solid var(--border); border-top: 1px solid var(--border);
    transform: rotate(45deg);
}
.mega-grid { display: grid; gap: 20px; }
.mega-grid.cols-2 { grid-template-columns: 1fr 1fr; min-width: 660px; }
.mega-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; min-width: 860px; }
.mega-col h4 {
    font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 0.8px; padding: 0 12px 8px; margin-bottom: 4px;
    border-bottom: 1px solid var(--border);
}
.mega-col h4 a { transition: var(--transition); }
.mega-col h4 a:hover { color: var(--primary); }
.mega-link {
    display: flex; align-items: center; gap: 11px;
    padding: 8px 12px; border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mega-link:hover { background: rgba(0, 90, 231, 0.07); }
.mega-link-icon {
    width: 34px; height: 34px; border-radius: var(--radius-sm); flex-shrink: 0;
    background: rgba(0, 90, 231, 0.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 14px;
    transition: var(--transition);
}
.mega-link:hover .mega-link-icon { background: var(--gradient-primary); color: var(--white); }
.mega-link-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--heading-color); transition: var(--transition); }
.mega-link-text span { display: block; font-size: 11px; color: var(--text-secondary); line-height: 1.3; }
.mega-link:hover .mega-link-text strong { color: var(--primary); }

@media (max-width: 1340px) {
    .mega-grid.cols-3 { min-width: min(680px, calc(100vw - 420px)); }
}

/* Header Actions */
.header-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.header-actions .btn { padding: 10px 22px; font-size: 14px; }

/* Currency Switcher */
.currency-switcher { position: relative; flex-shrink: 0; }
.currency-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 14px; border-radius: 50px; cursor: pointer;
    font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
    color: var(--dark); background: var(--white);
    border: 1px solid var(--border); transition: var(--transition);
    line-height: 1;
}
.currency-btn:hover { border-color: var(--primary); color: var(--primary); }
.currency-btn .currency-symbol { color: var(--primary); font-weight: 700; font-size: 14px; }
.currency-caret { font-size: 10px; transition: var(--transition); }
.currency-switcher.open .currency-caret { transform: rotate(180deg); }
.currency-menu {
    position: absolute; top: calc(100% + 10px); right: 0; min-width: 210px;
    background: var(--white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl); border: 1px solid var(--border);
    padding: 6px; margin: 0; list-style: none;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition); z-index: 1002;
}
.currency-switcher.open .currency-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.currency-menu li { padding: 0; }
.currency-option {
    display: flex; align-items: center; gap: 10px; width: 100%;
    padding: 9px 12px; border-radius: var(--radius-sm); cursor: pointer;
    font-family: var(--font-body); font-size: 14px; color: var(--text-secondary);
    background: none; border: 0; text-align: left; transition: var(--transition);
}
.currency-option:hover { background: rgba(0, 90, 231, 0.06); color: var(--primary); }
.currency-option .currency-symbol { width: 22px; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.currency-label { display: flex; flex-direction: column; flex: 1; line-height: 1.25; }
.currency-label b { font-size: 13.5px; color: var(--dark); font-weight: 600; }
.currency-label small { font-size: 11px; color: var(--text-secondary); }
.currency-check { margin-left: auto; color: var(--primary); font-size: 12px; }
.currency-option.active { background: rgba(0, 90, 231, 0.08); }
.currency-option.active b { color: var(--primary); }
.currency-switcher-mobile { width: 100%; }
.currency-switcher-mobile .currency-btn { width: 100%; justify-content: space-between; padding: 12px 16px; font-size: 14px; }
.currency-switcher-mobile .currency-menu { left: 0; right: 0; min-width: 0; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); transition: var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav-overlay {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5);
    z-index: 10000; opacity: 0; visibility: hidden; transition: var(--transition);
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav {
    position: fixed; top: 0; right: -360px; width: 340px; max-width: 92vw; height: 100vh;
    background: var(--white); z-index: 10001; transition: var(--transition-slow);
    display: flex; flex-direction: column; box-shadow: var(--shadow-xl);
}
.mobile-nav.active { right: 0; }
.mobile-nav-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.mobile-nav-close { font-size: 24px; color: var(--text-secondary); padding: 4px; }
.mobile-nav-links { flex: 1; padding: 16px 24px; overflow-y: auto; }
.mobile-nav-links::-webkit-scrollbar { width: 4px; }
.mobile-nav-links::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.mobile-menu { display: flex; flex-direction: column; }
.mobile-link-row {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    border-radius: var(--radius-sm); transition: var(--transition);
}
.mobile-link-row:hover { background: rgba(0, 90, 231, 0.06); }
.mobile-link {
    flex: 1; display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; font-weight: 600; color: var(--dark); font-size: 15px;
}
.mobile-link i { color: var(--primary); font-size: 14px; width: 18px; text-align: center; }
.mobile-sub-toggle {
    width: 40px; height: 40px; margin-right: 6px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); font-size: 12px; transition: var(--transition);
}
.mobile-sub-toggle:hover { color: var(--primary); background: rgba(0, 90, 231, 0.08); }
.mobile-sub-toggle.active { transform: rotate(180deg); color: var(--primary); }
.mobile-submenu {
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.mobile-submenu li { padding: 0 12px; }
.mobile-subheading { margin-top: 6px; border-top: 1px dashed var(--border); }
.mobile-subheading:first-child { border-top: none; }
.mobile-subheading a {
    display: block; padding: 12px 16px 6px; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-secondary);
}
.mobile-sublink {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; border-radius: var(--radius-sm);
    font-size: 14px; color: var(--text-secondary); font-weight: 500;
    transition: var(--transition);
}
.mobile-sublink i { width: 18px; text-align: center; color: var(--primary); font-size: 13px; }
.mobile-sublink:hover { background: rgba(0, 90, 231, 0.06); color: var(--primary); }
.mobile-nav-actions { padding: 16px 24px; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--border); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative; padding: 70px 0 50px; overflow: hidden;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}
.hero-bg-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-pattern {
    position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
    background-image: radial-gradient(rgba(0, 90, 231, 0.09) 1px, transparent 1px);
    background-size: 26px 26px;
}
.hero-pattern::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--white) 100%);
}
.orb {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4;
}
.orb-1 { width: 500px; height: 500px; background: rgba(0, 90, 231, 0.2); top: -100px; right: -100px; animation: floatOrb 8s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: rgba(30, 124, 255, 0.15); bottom: -50px; left: -100px; animation: floatOrb 10s ease-in-out infinite reverse; }
.orb-3 { width: 300px; height: 300px; background: rgba(113, 204, 5, 0.1); top: 50%; left: 40%; animation: floatOrb 12s ease-in-out infinite; }
@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    min-height: 470px; position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; border-radius: 50px;
    background: rgba(0, 90, 231, 0.08); color: var(--primary);
    font-size: 14px; font-weight: 600; margin-bottom: 24px;
}
.hero-badge i { font-size: 14px; }
.hero-title {
    font-family: var(--font-heading); font-size: clamp(32px, 5vw, 52px);
    font-weight: 700; line-height: 1.15; margin-bottom: 20px; color: var(--dark);
    letter-spacing: -0.5px; text-wrap: balance;
}
.hero-subtitle { font-size: 18px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; max-width: 540px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }

/* Hero trust badges */
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-badges span {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px; border-radius: 50px;
    background: var(--white); border: 1px solid var(--border);
    font-size: 13px; font-weight: 600; color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}
.hero-badges span i { color: var(--primary); font-size: 12px; }
.hero-trust { display: flex; align-items: center; gap: 16px; }
.trust-avatars { display: flex; }
.avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 13px;
    border: 2px solid var(--white); margin-left: -8px;
    position: relative; overflow: hidden;
}
.avatar:first-child { margin-left: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.trust-text { font-size: 14px; color: var(--text-secondary); }
.trust-stars { color: #F59E0B; font-size: 14px; margin-bottom: 2px; }
.trust-stars i { margin-right: 1px; }

/* Hero Visual - Dashboard Mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.dashboard-mockup {
    width: 100%; max-width: 520px; border-radius: var(--radius-lg);
    background: var(--white); box-shadow: var(--shadow-xl);
    border: 1px solid var(--border); overflow: hidden;
    animation: floatDashboard 6s ease-in-out infinite;
}
@keyframes floatDashboard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.mockup-header {
    display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    background: var(--light); border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-url {
    flex: 1; text-align: center; font-size: 12px; color: var(--text-secondary);
    background: var(--white); padding: 4px 12px; border-radius: 6px;
}
.mockup-status {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 600; color: var(--brand-green-dark);
    background: rgba(113, 204, 5, 0.12); padding: 4px 10px; border-radius: 50px;
    white-space: nowrap;
}
.mockup-status i { font-size: 8px; }
.mockup-body { display: flex; min-height: 280px; }
.mockup-sidebar {
    width: 52px; background: var(--dark); padding: 16px 8px;
    display: flex; flex-direction: column; gap: 8px;
}
.sidebar-item {
    width: 36px; height: 36px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, 0.5); font-size: 14px; transition: var(--transition);
}
.sidebar-item.active, .sidebar-item:hover { background: var(--primary); color: var(--white); }
.mockup-content { flex: 1; padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mockup-stat-card {
    background: var(--light); border-radius: var(--radius-sm); padding: 16px;
    display: flex; align-items: center; gap: 12px;
}
.stat-icon {
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    background: rgba(0, 90, 231, 0.1); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.stat-icon.accent { background: rgba(30, 124, 255, 0.1); color: var(--accent); }
.stat-value { font-family: var(--font-heading); font-weight: 700; font-size: 18px; display: block; color: var(--dark); }
.stat-label { font-size: 12px; color: var(--text-secondary); }
.mockup-chart {
    grid-column: 1 / -1; background: var(--light); border-radius: var(--radius-sm);
    padding: 16px; display: flex; align-items: flex-end; gap: 8px; height: 100px;
}
.chart-bar {
    flex: 1; background: var(--gradient-primary); border-radius: 4px 4px 0 0;
    min-height: 20px; transition: var(--transition);
}
.chart-bar:hover { opacity: 0.8; }

/* Floating Cards */
.floating-card {
    position: absolute; padding: 12px 20px; border-radius: var(--radius-md);
    background: var(--white); box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 600; color: var(--dark);
    animation: floatCard 4s ease-in-out infinite;
}
.floating-card i { font-size: 18px; }
.float-1 { top: 10%; left: -20px; animation-delay: 0s; }
.float-1 i { color: var(--primary); }
.float-2 { bottom: 20%; right: -10px; animation-delay: 1s; }
.float-2 i { color: var(--accent); }
.float-3 { top: 55%; left: -30px; animation-delay: 2s; }
.float-3 i { color: var(--cta); }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hero Stats */
.hero-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    margin-top: 48px; padding: 32px 12px; border-radius: var(--radius-xl);
    background: var(--white); box-shadow: var(--shadow-lg);
    border: 1px solid var(--border); position: relative; z-index: 1;
}
.stat-item { display: flex; align-items: center; gap: 16px; padding: 8px 20px; }
.stat-icon {
    width: 52px; height: 52px; border-radius: var(--radius-md); flex-shrink: 0;
    background: rgba(0, 90, 231, 0.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 22px;
    transition: var(--transition);
}
.stat-item:hover .stat-icon { background: var(--gradient-primary); color: var(--white); }
.stat-num { display: flex; align-items: baseline; gap: 2px; }
.stat-number {
    font-family: var(--font-heading); font-size: clamp(24px, 3vw, 34px);
    font-weight: 700; background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    letter-spacing: -0.5px;
}
.stat-suffix {
    font-family: var(--font-heading); font-size: clamp(24px, 3vw, 34px);
    font-weight: 700; background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    letter-spacing: -0.5px;
}
.stat-text { display: block; font-size: 13.5px; color: var(--text-secondary); margin-top: 2px; }
@media (min-width: 992px) {
    .stat-item + .stat-item { border-left: 1px solid var(--border); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px;
    border: 1px solid var(--border); transition: var(--transition);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-primary); transform: scaleX(0); transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    background: rgba(0, 90, 231, 0.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 20px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gradient-primary); color: var(--white); }
.service-card h3 {
    font-family: var(--font-heading); font-size: 18px; font-weight: 700;
    margin-bottom: 10px; color: var(--dark);
}
.service-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary); font-weight: 600; font-size: 14px;
}
.service-link i { font-size: 12px; transition: var(--transition); }
.service-link:hover { gap: 10px; }
.service-card:hover .service-link { color: var(--primary); }

/* ============================================
   HOSTING SECTION
   ============================================ */
.hosting-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hosting-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 30px 26px;
    border: 1px solid var(--border); transition: var(--transition);
    position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.hosting-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-primary); transform: scaleX(0); transition: var(--transition);
}
.hosting-card:hover {
    transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent;
}
.hosting-card:hover::before { transform: scaleX(1); }
.hosting-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.hosting-icon {
    width: 52px; height: 52px; border-radius: var(--radius-md); flex-shrink: 0;
    background: rgba(0, 90, 231, 0.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 22px;
    transition: var(--transition);
}
.hosting-card:hover .hosting-icon { background: var(--gradient-primary); color: var(--white); }
.hosting-head h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark); }
.hosting-tag { font-size: 12px; color: var(--text-secondary); font-weight: 500; }
.hosting-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 18px; }
.hosting-features {
    margin-bottom: 22px; display: flex; flex-direction: column; gap: 10px;
}
.hosting-features li {
    display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary);
}
.hosting-features li i { color: var(--cta); font-size: 13px; width: 16px; text-align: center; flex-shrink: 0; }
.hosting-card .service-link { margin-top: auto; }
.hosting-note { text-align: center; margin-top: 40px; font-size: 15px; color: var(--text-secondary); }
.hosting-note a { color: var(--primary); font-weight: 600; }
.hosting-note a:hover { text-decoration: underline; }

/* Section CTA */
.section-cta { text-align: center; margin-top: 48px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px 20px;
    text-align: center; border: 1px solid var(--border); transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent;
}
.why-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--gradient-primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0, 90, 231, 0.25);
    transition: var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(5deg); }
.why-card h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   DEVELOPMENT PROCESS - TIMELINE
   ============================================ */
.timeline {
    position: relative; max-width: 900px; margin: 0 auto;
    padding: 20px 0;
}
.timeline-line {
    position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;
    background: var(--gradient-primary); transform: translateX(-50%);
    border-radius: 3px;
}
.timeline-item {
    position: relative; width: 50%; padding: 0 40px 60px;
}
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; }
.timeline-content {
    background: var(--white); border-radius: var(--radius-lg); padding: 28px;
    box-shadow: var(--shadow-md); border: 1px solid var(--border);
    position: relative; transition: var(--transition);
}
.timeline-content:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.timeline-number {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-primary); color: var(--white);
    font-family: var(--font-heading); font-weight: 700; font-size: 14px;
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 90, 231, 0.3);
}
.timeline-icon {
    width: 48px; height: 48px; border-radius: var(--radius-md);
    background: rgba(0, 90, 231, 0.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 16px;
}
.timeline-item.left .timeline-icon { margin-left: auto; }
.timeline-content h3 {
    font-family: var(--font-heading); font-size: 18px; font-weight: 700;
    margin-bottom: 8px; color: var(--dark);
}
.timeline-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-filters {
    display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 14px;
    color: var(--text-secondary); background: var(--white);
    border: 1px solid var(--border); transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--gradient-primary); color: var(--white); border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 90, 231, 0.3);
}
.portfolio-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.portfolio-card {
    border-radius: var(--radius-lg); overflow: hidden; background: var(--white);
    border: 1px solid var(--border); transition: var(--transition);
}
.portfolio-card.hidden { display: none; }
.portfolio-card.in { animation: portfolioCardIn 0.4s ease both; }
@keyframes portfolioCardIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.portfolio-image {
    height: 220px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 8px;
    background: linear-gradient(135deg, #005AE7, #1E7CFF);
}
.portfolio-image .img-icon {
    font-size: 42px; color: rgba(255, 255, 255, 0.5);
}
.portfolio-image .img-label {
    font-size: 12px; color: rgba(255, 255, 255, 0.6);
    font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
}
.portfolio-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
    position: absolute; inset: 0;
}
.portfolio-card:hover .portfolio-image img { transform: scale(1.05); }
.portfolio-overlay {
    position: absolute; inset: 0; background: rgba(0, 28, 80, 0.7);
    display: flex; align-items: center; justify-content: center; gap: 16px;
    opacity: 0; transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--white); color: var(--dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; transition: var(--transition);
    transform: translateY(20px); opacity: 0;
}
.portfolio-card:hover .portfolio-btn { transform: translateY(0); opacity: 1; }
.portfolio-card:hover .portfolio-btn:nth-child(2) { transition-delay: 0.1s; }
.portfolio-btn:hover { background: var(--primary); color: var(--white); }
.portfolio-info { padding: 24px; }
.portfolio-category {
    display: inline-block; padding: 4px 12px; border-radius: 50px;
    background: rgba(0, 90, 231, 0.08); color: var(--primary);
    font-size: 12px; font-weight: 600; margin-bottom: 10px;
}
.portfolio-info h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.portfolio-info p { font-size: 14px; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.6; }
.portfolio-tech { display: flex; gap: 8px; flex-wrap: wrap; }
.portfolio-tech span {
    padding: 4px 10px; border-radius: 4px; background: var(--light);
    font-size: 12px; color: var(--text-secondary); font-weight: 500;
}

/* ============================================
   TECHNOLOGIES SECTION
   ============================================ */
.technologies { background: var(--dark) !important; color: var(--white); }
.technologies .section-tag { background: rgba(30, 124, 255, 0.15); color: var(--accent); }
.technologies .section-title { color: var(--white); }
.technologies .section-subtitle { color: rgba(255, 255, 255, 0.6); }
.tech-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
}
.tech-item {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 24px 16px; border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}
.tech-item:hover {
    background: rgba(255, 255, 255, 0.1); transform: translateY(-4px);
    border-color: var(--accent);
}
.tech-item i, .tech-item .tech-text { font-size: 32px; }
.tech-text {
    font-family: var(--font-heading); font-weight: 700; font-size: 24px;
    background: var(--gradient-primary); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.tech-item span:last-child { font-size: 13px; color: rgba(255, 255, 255, 0.6); font-weight: 500; }
.tech-item:nth-child(1) i { color: #777BB4; }
.tech-item:nth-child(2) i { color: #FF2D20; }
.tech-item:nth-child(3) i { color: #61DAFB; }
.tech-item:nth-child(5) i { color: #68A063; }
.tech-item:nth-child(8) i { color: #21759B; }
.tech-item:nth-child(12) i { color: #E34F26; }
.tech-item:nth-child(13) i { color: #1572B6; }
.tech-item:nth-child(14) i { color: #F7DF1E; }
.tech-item:nth-child(17) i { color: #FF9900; }
.tech-item:nth-child(18) i { color: #4285F4; }

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.industry-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px 20px;
    text-align: center; border: 1px solid var(--border); transition: var(--transition);
    position: relative; overflow: hidden;
}
.industry-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-primary); opacity: 0; transition: var(--transition);
}
.industry-card:hover {
    transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent;
}
.industry-card:hover::before { opacity: 1; }
.industry-icon {
    width: 72px; height: 72px; border-radius: var(--radius-lg);
    background: var(--gradient-primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0, 90, 231, 0.25);
    transition: var(--transition);
}
.industry-card:hover .industry-icon { transform: scale(1.1); }
.industry-card h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.industry-card p { font-size: 13px; color: var(--text-secondary); }

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pricing-card {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--border); padding: 36px 28px;
    transition: var(--transition); position: relative;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}
.pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-primary); color: var(--white);
    padding: 6px 20px; border-radius: 50px; font-size: 13px; font-weight: 600;
    white-space: nowrap;
}
.pricing-header { text-align: center; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-header h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
.pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.currency { font-size: 20px; font-weight: 700; color: var(--primary); }
.price { font-family: var(--font-heading); font-size: 44px; font-weight: 700; color: var(--dark); }
.period { font-size: 14px; color: var(--text-secondary); margin-left: 4px; }
.price-compare { font-size: 13px; color: var(--text-secondary); margin-left: 4px; font-weight: 500; }
.pricing-badge-save { background: var(--cta); }
.pricing-features { margin-bottom: 28px; }
.pricing-features li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { font-size: 14px; width: 20px; text-align: center; }
.pricing-features li .fa-check { color: var(--success); }
.pricing-features li .fa-xmark { color: var(--text-secondary); opacity: 0.4; }
.pricing-features li.disabled { opacity: 0.5; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
    display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
    min-width: 100%; padding: 0 60px;
}
.testimonial-inner {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.testimonial-rating { color: #F59E0B; font-size: 18px; margin-bottom: 20px; }
.testimonial-rating i { margin-right: 2px; }
.testimonial-text { font-size: 18px; line-height: 1.8; color: var(--text-primary); margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.author-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 18px; flex-shrink: 0;
    position: relative; overflow: hidden;
}
.author-avatar img {
    width: 100%; height: 100%; object-fit: cover;
}
.author-info h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--dark); }
.author-info span { font-size: 14px; color: var(--text-secondary); }
.testimonial-google { margin-left: auto; color: var(--text-secondary); font-size: 13px; display: flex; align-items: center; gap: 6px; }
.testimonial-google i { color: #4285F4; }
.testimonial-nav {
    display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px;
}
.testimonial-prev, .testimonial-next {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--white); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--dark); font-size: 16px; transition: var(--transition);
}
.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--primary); color: var(--white); border-color: var(--primary);
}
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
    width: 10px; height: 10px; border-radius: 50%; background: var(--border);
    cursor: pointer; transition: var(--transition);
}
.testimonial-dot.active { background: var(--primary); width: 28px; border-radius: 5px; }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.faq-item { margin-bottom: 12px; }
.faq-question {
    width: 100%; padding: 18px 20px; border-radius: var(--radius-md);
    background: var(--white); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    font-size: 15px; font-weight: 600; color: var(--dark);
    text-align: left; transition: var(--transition); cursor: pointer;
}
.faq-question:hover { border-color: var(--primary); }
.faq-question i { font-size: 14px; color: var(--primary); transition: var(--transition); flex-shrink: 0; margin-left: 12px; }
.faq-item.active .faq-question { border-color: var(--primary); background: rgba(0, 90, 231, 0.04); }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 16px 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--dark) !important; position: relative; overflow: hidden; padding: 100px 0;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
    position: absolute; border-radius: 50%; filter: blur(100px);
}
.cta-orb-1 { width: 400px; height: 400px; background: rgba(0, 90, 231, 0.2); top: -100px; right: 10%; }
.cta-orb-2 { width: 300px; height: 300px; background: rgba(30, 124, 255, 0.15); bottom: -80px; left: 15%; }
.cta-content {
    text-align: center; position: relative; z-index: 1;
    max-width: 700px; margin: 0 auto;
}
.cta-content h2 { font-family: var(--font-heading); font-size: var(--fs-h2); font-weight: var(--fw-h2); color: var(--white); margin-bottom: 16px; line-height: var(--lh-h2); }
.cta-content h2 .gradient-text {
    background: linear-gradient(135deg, #1E7CFF, #005AE7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-content p { font-size: 18px; color: rgba(255, 255, 255, 0.7); margin-bottom: 36px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn { min-width: 220px; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }
.contact-form-wrapper {
    background: var(--white); border-radius: var(--radius-xl); padding: 40px;
    box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 14px; font-weight: 600; color: var(--dark);
    margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); font-size: 15px; color: var(--dark);
    background: var(--light); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 90, 231, 0.1);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-card {
    background: var(--white); border-radius: var(--radius-xl); padding: 32px;
    box-shadow: var(--shadow-md); border: 1px solid var(--border); margin-bottom: 24px;
}
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
    width: 48px; height: 48px; border-radius: var(--radius-md);
    background: rgba(0, 90, 231, 0.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.contact-item h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.contact-item p, .contact-item a { font-size: 14px; color: var(--text-secondary); }
.contact-item a:hover { color: var(--primary); }
.map-placeholder {
    background: var(--light); border-radius: var(--radius-xl); padding: 60px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; color: var(--text-secondary); border: 2px dashed var(--border);
    position: relative; overflow: hidden; min-height: 200px;
}
.map-placeholder i { font-size: 40px; color: var(--primary); position: relative; z-index: 2; }
.map-placeholder span { font-size: 14px; font-weight: 500; position: relative; z-index: 2; }
.map-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0, 90, 231, 0.03), rgba(30, 124, 255, 0.03));
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark); color: rgba(255, 255, 255, 0.7); padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer-logo { font-size: 22px; margin-bottom: 16px; display: inline-flex; }
.footer-about p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.6);
    display: flex; align-items: center; justify-content: center; font-size: 15px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.footer-col ul a:hover { color: var(--accent); }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
    flex: 1; padding: 12px 16px; border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.05);
    color: var(--white); font-size: 14px; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form button {
    padding: 12px 18px; border-radius: var(--radius-sm);
    background: var(--gradient-primary); color: var(--white); font-size: 14px;
}
.newsletter-form button:hover { opacity: 0.9; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; font-size: 14px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.5); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-tooltip {
    position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
    background: var(--dark); color: var(--white);
    padding: 8px 14px; border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 500; white-space: nowrap;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}
.back-to-top {
    position: fixed; bottom: 24px; right: 100px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--white); color: var(--primary);
    border: 1px solid var(--border); display: flex;
    align-items: center; justify-content: center;
    font-size: 16px; z-index: 999; opacity: 0; visibility: hidden;
    transform: translateY(20px); transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Mobile CTA Bar */
.mobile-cta-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--border);
    padding: 8px 16px; z-index: 998;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}
.mobile-cta-bar {
    display: none; grid-template-columns: 1fr 1fr 1.2fr; gap: 8px;
}
.mobile-cta-btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 10px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 13px; text-align: center;
}
.mobile-cta-btn:first-child { background: var(--light); color: var(--dark); }
.mobile-cta-whatsapp { background: #25D366; color: var(--white) !important; }
.mobile-cta-quote { background: var(--gradient-cta); color: var(--white) !important; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1400px) {
    .header-inner { gap: 12px; }
    .nav-link { padding: 9px 8px; font-size: 13.5px; }
    .logo { font-size: 20px; }
    .header-actions .btn { padding: 9px 16px; font-size: 13px; }
}

@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
    .tech-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero-title { font-size: clamp(32px, 4.2vw, 46px); }
    .hero-subtitle { font-size: 16px; }
}

@media (max-width: 991px) {
    .container { padding: 0 30px; }
    .nav { display: none; }
    .header-actions { display: none; }
    .hamburger { display: flex; }
    .mobile-cta-bar { display: grid; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-badges { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { display: none; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hosting-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline-line { left: 24px; }
    .timeline-item { width: 100%; left: 0 !important; padding-left: 60px; padding-right: 0; text-align: left !important; }
    .timeline-item.left .timeline-icon { margin-left: 0; }
    .timeline-number { left: 24px; transform: translateX(-50%); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: repeat(4, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .top-bar-left { gap: 16px; }
    .top-bar-left a:nth-child(3) { display: none; }
}

@media (max-width: 767px) {
    .container { padding: 0 20px; }
    .section { padding: 70px 0; }
    .section-header { margin-bottom: 40px; }
    .top-bar { display: none; }
    .hero { padding: 36px 0 28px; }
    .hero-title { font-size: 30px; }
    .hero-subtitle { font-size: 16px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
.hero-stats { grid-template-columns: repeat(2, 1fr); padding: 24px 16px; gap: 20px 12px; margin-top: 36px; }
    .stat-item { flex-direction: column; text-align: center; gap: 8px; padding: 6px 4px; }
    .stat-icon { width: 40px; height: 40px; font-size: 16px; }
    .stat-number { font-size: 26px; }
    .stat-suffix { font-size: 26px; }
    .stat-text { font-size: 12.5px; line-height: 1.35; }
    .services-grid { grid-template-columns: 1fr; }
    .hosting-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .tech-item { padding: 16px 10px; }
    .tech-item i, .tech-item .tech-text { font-size: 24px; }
    .industries-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .testimonial-card { padding: 0 20px; }
    .testimonial-inner { padding: 24px; }
    .testimonial-text { font-size: 16px; }
    .faq-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 24px; }
    .blog-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 26px; }
    .cta-content p { font-size: 16px; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .cta-buttons .btn { width: 100%; max-width: 280px; justify-content: center; min-width: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .whatsapp-float { bottom: 80px; }
    .back-to-top { bottom: 80px; right: 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 30px; }
.hero-title { font-size: 26px; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .stat-icon { width: 36px; height: 36px; font-size: 15px; }
    .stat-number { font-size: 24px; }
    .stat-suffix { font-size: 24px; }
    .industries-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
}
/* ============================================
   HOSTING INNER PAGES (Phase 4)
   ============================================ */
.hp-hero { position: relative; padding: 56px 0 64px; overflow: hidden; }
.hp-hero-light { background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%); }
.hp-hero-dark { background: linear-gradient(135deg, #001231 0%, #001C50 55%, #00307A 100%); color: #fff; }
.hp-hero-pattern {
    position: absolute; inset: 0; pointer-events: none; opacity: .5;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
}
.hp-hero-dark .hp-hero-pattern { opacity: .6; }
.hp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hp-grid-center { grid-template-columns: 1fr; text-align: center; }
.hp-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; flex-wrap: wrap; }
.hp-hero-dark .hp-breadcrumb { color: rgba(255, 255, 255, .55); }
.hp-breadcrumb a:hover { color: var(--primary); }
.hp-hero-dark .hp-breadcrumb a:hover { color: #fff; }
.hp-breadcrumb i { font-size: 10px; color: #B8C4D8; }
.hp-hero-dark .hp-breadcrumb i { color: rgba(255, 255, 255, .35); }
.hp-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 50px;
    background: rgba(0, 90, 231, 0.08); color: var(--primary);
    font-size: 14px; font-weight: 600; margin-bottom: 20px;
}
.hp-hero-dark .hp-badge { background: rgba(30, 124, 255, 0.16); color: var(--accent); }
.hp-title {
    font-family: var(--font-heading); font-size: var(--fs-h1);
    font-weight: var(--fw-h1); line-height: var(--lh-h1); letter-spacing: -.5px;
    color: var(--dark); margin-bottom: 16px; text-wrap: balance;
}
.hp-hero-dark .hp-title { color: #fff; }
.hp-subtitle { font-size: 17px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 24px; max-width: 540px; }
.hp-hero-dark .hp-subtitle { color: rgba(255, 255, 255, .72); }
.hp-grid-center .hp-subtitle { margin-left: auto; margin-right: auto; }
.hp-bullets { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hp-bullets li {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px; border-radius: 50px;
    background: var(--white); border: 1px solid var(--border);
    font-size: 13.5px; font-weight: 600; color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}
.hp-hero-dark .hp-bullets li { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .85); }
.hp-bullets li i { color: var(--cta); }
.hp-hero-dark .hp-bullets li i { color: #A9E34B; }
.hp-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hp-hero-dark .hp-buttons .btn-outline-dark { border-color: #fff; color: #fff; }
.hp-hero-dark .hp-buttons .btn-outline-dark:hover { background: #fff; color: var(--dark); }
.hp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; max-width: 540px; }
.hp-hero-dark .hp-stats, .hp-grid-center .hp-stats { margin-left: auto; margin-right: auto; }
.hp-stat {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 14px 18px;
    display: flex; flex-direction: column; gap: 2px; box-shadow: var(--shadow-sm);
}
.hp-hero-dark .hp-stat { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .12); }
.hp-stat b { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--dark); }
.hp-hero-dark .hp-stat b { color: #fff; }
.hp-stat span { font-size: 12.5px; color: var(--text-secondary); }
.hp-hero-dark .hp-stat span { color: rgba(255, 255, 255, .6); }
.hp-visual { position: relative; display: flex; justify-content: center; }

/* Hero mockups */
.hp-mockup .mockup-body { min-height: 300px; }
.hp-site-preview {
    width: 100%; max-width: 500px; border-radius: var(--radius-lg);
    background: var(--white); box-shadow: var(--shadow-xl); border: 1px solid var(--border);
    overflow: hidden; animation: floatDashboard 6s ease-in-out infinite;
}
.hp-site-bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; background: var(--light); border-bottom: 1px solid var(--border); }
.hp-site-bar span { width: 10px; height: 10px; border-radius: 50%; background: #D3DCEA; }
.hp-site-bar b { flex: 1; text-align: center; font-size: 12px; color: var(--text-secondary); font-weight: 500; }
.hp-site-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.hp-site-logo { width: 60px; height: 16px; border-radius: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.hp-site-nav { display: flex; gap: 10px; }
.hp-site-nav span { width: 42px; height: 8px; border-radius: 4px; background: #E4EAF5; }
.hp-site-hero { background: linear-gradient(135deg, #EAF1FF, #F4F8FF); border-radius: var(--radius-md); padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.hp-site-hero .line { height: 10px; border-radius: 5px; background: #D6E1F5; }
.hp-site-hero .l1 { width: 70%; }
.hp-site-hero .l2 { width: 45%; }
.hp-site-hero .btn-line { width: 90px; height: 24px; border-radius: 6px; background: var(--gradient-cta); }
.hp-site-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hp-site-cards span { height: 46px; border-radius: var(--radius-sm); background: #F0F4FB; border: 1px solid var(--border); }
.hp-site-badge {
    position: absolute; top: 14px; right: -8px;
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--white); color: var(--dark);
    padding: 10px 16px; border-radius: 50px; box-shadow: var(--shadow-lg);
    font-size: 13px; font-weight: 600;
}
.hp-site-badge i { color: var(--cta); }
.hp-terminal {
    width: 100%; max-width: 520px; border-radius: var(--radius-lg); overflow: hidden;
    background: #0B1020; border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: var(--shadow-xl); animation: floatDashboard 6s ease-in-out infinite;
}
.hp-terminal-head { display: flex; gap: 6px; padding: 12px 16px; background: rgba(255, 255, 255, .05); }
.hp-terminal-head span { width: 10px; height: 10px; border-radius: 50%; }
.hp-terminal-body { padding: 20px; font-family: 'Courier New', monospace; font-size: 13px; line-height: 2; color: #7EE787; }
.hp-terminal-body .t-prompt { color: #58A6FF; }
.hp-terminal-body .t-ok { color: #71CC05; }
.hp-terminal-body .t-cursor { animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hp-rack { width: 100%; max-width: 520px; display: flex; flex-direction: column; gap: 10px; }
.hp-rack-head {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-md); padding: 14px 18px; color: #fff;
}
.hp-rack-head i { color: var(--accent); font-size: 18px; }
.hp-rack-head b { flex: 1; font-size: 13px; letter-spacing: 1px; font-family: var(--font-heading); }
.hp-rack-status { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #A9E34B; }
.hp-rack-status i { font-size: 8px; }
.hp-rack-row {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-md); padding: 14px 18px; color: #fff;
}
.hp-rack-row i { font-size: 18px; color: #1E7CFF; width: 24px; text-align: center; }
.hp-rack-row b { font-size: 14px; font-weight: 600; }
.hp-rack-row span { margin-left: auto; font-size: 12.5px; color: rgba(255, 255, 255, .6); text-align: right; }
.hp-compare-card {
    width: 100%; max-width: 500px; background: var(--white);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl); overflow: hidden;
}
.hp-compare-head { padding: 16px 20px; background: var(--dark); color: #fff; display: flex; justify-content: space-between; align-items: center; }
.hp-compare-head b { font-family: var(--font-heading); font-size: 15px; }
.hp-compare-head span { font-size: 12px; color: rgba(255, 255, 255, .6); }
.hp-compare-mini { width: 100%; border-collapse: collapse; }
.hp-compare-mini td { padding: 13px 20px; font-size: 14px; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.hp-compare-mini td b { color: var(--dark); }
.hp-compare-mini td:last-child { text-align: right; color: var(--cta); width: 36px; }
.hp-compare-mini tr:last-child td { border-bottom: none; }
.hp-compare-foot { padding: 12px 20px; background: var(--light); font-size: 12.5px; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.hp-compare-foot i { color: var(--primary); }

/* Domain search */
.hp-search {
    position: relative; z-index: 1;
    display: flex; gap: 12px; max-width: 640px; margin: 28px auto 0;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 14px; box-shadow: var(--shadow-lg);
}
.hp-search input { flex: 1; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 18px; font-size: 15px; outline: none; }
.hp-search input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 90, 231, .1); }
.hp-search .btn { flex-shrink: 0; }
.hp-search-note { text-align: center; margin-top: 14px; font-size: 13px; color: var(--text-secondary); position: relative; z-index: 1; }
.hp-search-note i { color: var(--primary); }

/* Categories */
.hp-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hp-cat-card {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 26px; transition: var(--transition);
}
.hp-cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.hp-cat-card .service-icon { margin-bottom: 0; }
.hp-cat-card h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.hp-cat-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 8px; }
.hp-cat-card .service-link { font-size: 13px; }

/* Comparison table */
.hp-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-md); background: var(--white); }
.hp-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.hp-table th, .hp-table td { padding: 16px 20px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
.hp-table thead th { background: var(--light); font-family: var(--font-heading); font-weight: 700; color: var(--dark); }
.hp-table thead th.hp-buy { background: var(--dark); color: #fff; }
.hp-table tbody tr:hover { background: var(--light); }
.hp-table td i.fa-check { color: var(--cta); }
.hp-table td i.fa-xmark { color: #CBD5E1; }
.hp-table td i.fa-minus { color: var(--accent); }
.hp-table-note { text-align: center; margin-top: 16px; font-size: 13px; color: var(--text-secondary); }

/* Benefits */
.hp-benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hp-benefit-points { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.hp-benefit-point { display: flex; gap: 14px; }
.hp-benefit-icon {
    width: 46px; height: 46px; border-radius: var(--radius-sm); flex-shrink: 0;
    background: rgba(0, 90, 231, .08); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.hp-benefit-point b { display: block; font-family: var(--font-heading); font-size: 15px; color: var(--dark); margin-bottom: 2px; }
.hp-benefit-point p { font-size: 14px; color: var(--text-secondary); }
.hp-benefit-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-lg);
}
.hp-benefit-card-title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--dark); margin: 4px 0 18px; }
.hp-benefit-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.hp-benefit-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.hp-benefit-list li i { color: var(--cta); font-size: 13px; }

/* Plans (reuses .pricing-*) */
.pricing-tagline { font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; }
.pricing-renew { font-size: 12.5px; color: var(--text-secondary); margin-top: 8px; }
.pricing-note { text-align: center; margin-top: 24px; font-size: 13px; color: var(--text-secondary); }
.pricing-cols-4 { grid-template-columns: repeat(4, 1fr); }
.pricing-cols-4 .pricing-card { padding: 28px 20px; }

/* Features */
.hp-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hp-feature-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 24px;
    transition: var(--transition); position: relative; overflow: hidden;
}
.hp-feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-primary); transform: scaleX(0); transition: var(--transition);
}
.hp-feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.hp-feature-card:hover::before { transform: scaleX(1); }
.hp-feature-card .service-icon { margin-bottom: 16px; }
.hp-feature-card h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.hp-feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Specs */
.hp-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hp-spec {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 24px 18px; text-align: center; transition: var(--transition);
}
.hp-spec:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.hp-spec i { font-size: 24px; color: var(--primary); margin-bottom: 10px; }
.hp-spec b { display: block; font-family: var(--font-heading); font-size: 16px; color: var(--dark); margin-bottom: 2px; }
.hp-spec span { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* Trust */
.hp-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hp-trust-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 24px; transition: var(--transition); }
.hp-trust-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.hp-trust-icon {
    width: 52px; height: 52px; border-radius: var(--radius-md); margin-bottom: 16px;
    background: rgba(0, 90, 231, .08); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.hp-trust-item h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.hp-trust-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* TLD grid */
.tld-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tld-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 18px; display: flex; justify-content: space-between; align-items: center; gap: 10px; transition: var(--transition);
}
.tld-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tld-card b { font-family: var(--font-heading); font-size: 16px; color: var(--dark); }
.tld-card span { font-size: 13px; color: var(--text-secondary); }
.tld-card span b { color: var(--primary); font-size: 13px; }
.tld-card .btn { padding: 8px 16px; font-size: 13px; }

/* FAQ tweaks */
.hp-faq { grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; }
.hp-faq .faq-item.active .faq-answer { max-height: 600px; }
.hp-faq-more { text-align: center; margin-top: 28px; font-size: 14px; color: var(--text-secondary); }
.hp-faq-more a { color: var(--primary); font-weight: 600; }

/* CTA band */
.hp-cta {
    background: linear-gradient(135deg, #001231 0%, #001C50 55%, #00307A 100%);
    border-radius: var(--radius-xl); padding: 56px 48px;
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
    color: #fff; position: relative; overflow: hidden;
}
.hp-cta::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
}
.hp-cta h2 { font-family: var(--font-heading); font-size: clamp(24px, 3vw, 34px); font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.hp-cta p { color: rgba(255, 255, 255, .7); max-width: 560px; position: relative; z-index: 1; }
.hp-cta .btn { flex-shrink: 0; position: relative; z-index: 1; }

/* Dedicated configurator */
.hp-config { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.hp-config-step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; }
.hp-config-step h3 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; margin-bottom: 14px; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.hp-config-step h3 i { color: var(--primary); }
.hp-config-opts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.hp-config-opt {
    text-align: left; border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 12px 14px; transition: var(--transition); cursor: pointer;
}
.hp-config-opt:hover { border-color: var(--primary); }
.hp-config-opt b { display: block; font-size: 13.5px; color: var(--dark); }
.hp-config-opt span { font-size: 12px; color: var(--text-secondary); }
.hp-config-opt.selected { border-color: var(--primary); background: rgba(0, 90, 231, .06); box-shadow: 0 0 0 1px var(--primary); }
.hp-config-summary {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md);
    position: sticky; top: 100px;
}
.hp-config-summary h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark); margin: 4px 0 16px; }
.hp-config-meta { font-size: 13.5px; color: var(--text-secondary); margin: 10px 0 18px; }
.hp-config-note { font-size: 12px; color: var(--text-secondary); margin-top: 12px; text-align: center; }

/* Hosting responsive */
@media (max-width: 1400px) {
    .pricing-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1199px) {
    .pricing-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    .hp-grid, .hp-benefit-grid, .hp-config { grid-template-columns: 1fr; gap: 40px; }
    .hp-hero-dark .hp-grid { text-align: center; }
    .hp-hero-dark .hp-bullets, .hp-hero-dark .hp-buttons, .hp-hero-dark .hp-stats { justify-content: center; margin-left: auto; margin-right: auto; }
    .hp-visual { display: none; }
    .hp-specs { grid-template-columns: repeat(2, 1fr); }
    .hp-features-grid, .hp-cat-grid, .hp-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .tld-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-config-summary { position: static; }
}
@media (max-width: 767px) {
    .hp-hero { padding: 40px 0 48px; }
    .hp-title { font-size: 28px; }
    .hp-subtitle { font-size: 16px; }
    .hp-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
    .hp-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .hp-stat { padding: 12px 10px; }
    .hp-stat b { font-size: 16px; }
    .hp-features-grid, .hp-cat-grid, .hp-trust-grid { grid-template-columns: 1fr; }
    .hp-specs { grid-template-columns: 1fr 1fr; gap: 12px; }
    .hp-cta { flex-direction: column; text-align: center; padding: 40px 24px; }
    .hp-cta .btn { width: 100%; max-width: 300px; justify-content: center; }
    .hp-config-opts { grid-template-columns: 1fr; }
    .pricing-cols-4 { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .tld-grid { grid-template-columns: 1fr; }
    .hp-search { flex-direction: column; }
    .hp-search .btn { width: 100%; justify-content: center; }
    .hp-table { min-width: 640px; }
}
@media (max-width: 480px) {
    .hp-stats { grid-template-columns: 1fr 1fr; }
}

/* 404 page */
.error-404 { padding: 90px 0 100px; text-align: center; }
.error-404-box { max-width: 620px; margin: 0 auto; }
.error-404-code {
    font-family: var(--font-heading); font-size: clamp(90px, 18vw, 160px);
    font-weight: 700; line-height: 1; letter-spacing: -4px;
    background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.error-404-title { font-family: var(--font-heading); font-size: clamp(24px, 4vw, 34px); font-weight: 700; color: var(--dark); margin: 8px 0 12px; }
.error-404-text { color: var(--text-secondary); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.error-404-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 480px) {
    .error-404-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}
/* ============================================
   DEVELOPMENT INNER PAGES (Phase 5)
   ============================================ */
.section-muted { background: var(--light); }
.section-dark-tech { background: linear-gradient(135deg, #001231 0%, #001C50 55%, #00307A 100%); }
.section-tag-light { color: var(--accent); background: rgba(30,124,255,.15); }
.section-title-light { color: #fff; }
.section-subtitle-light { color: rgba(255,255,255,.72); }

/* Hero */
.dv-hero { position: relative; padding: 56px 0 64px; overflow: hidden; }
.dv-hero-light { background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%); }
.dv-hero-dark { background: linear-gradient(135deg, #001231 0%, #001C50 55%, #00307A 100%); color: #fff; }
.dv-hero-pattern {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 26px 26px;
}
.dv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.dv-grid-center { grid-template-columns: 1fr; text-align: center; }
.dv-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; flex-wrap: wrap; }
.dv-hero-dark .dv-breadcrumb { color: rgba(255,255,255,.55); }
.dv-breadcrumb a:hover { color: var(--primary); }
.dv-hero-dark .dv-breadcrumb a:hover { color: #fff; }
.dv-breadcrumb i { font-size: 10px; color: #B8C4D8; }
.dv-hero-dark .dv-breadcrumb i { color: rgba(255,255,255,.35); }
.dv-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 50px;
    background: rgba(0,90,231,.08); color: var(--primary);
    font-size: 14px; font-weight: 600; margin-bottom: 20px;
}
.dv-hero-dark .dv-badge { background: rgba(30,124,255,.16); color: var(--accent); }
.dv-title {
    font-family: var(--font-heading); font-size: var(--fs-h1);
    font-weight: var(--fw-h1); line-height: var(--lh-h1); letter-spacing: -.5px;
    color: var(--dark); margin-bottom: 16px; text-wrap: balance;
}
.dv-hero-dark .dv-title { color: #fff; }
.dv-subtitle { font-size: 17px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 24px; max-width: 540px; }
.dv-hero-dark .dv-subtitle { color: rgba(255,255,255,.72); }
.dv-bullets { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.dv-bullets li {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px; border-radius: 50px;
    background: var(--white); border: 1px solid var(--border);
    font-size: 13.5px; font-weight: 600; color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}
.dv-hero-dark .dv-bullets li { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.85); }
.dv-bullets li i { color: var(--cta); }
.dv-hero-dark .dv-bullets li i { color: #A9E34B; }
.dv-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.dv-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; max-width: 540px; }
.dv-stat {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 14px 18px;
    display: flex; flex-direction: column; gap: 2px; box-shadow: var(--shadow-sm);
}
.dv-hero-dark .dv-stat { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.dv-stat b { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--dark); }
.dv-hero-dark .dv-stat b { color: #fff; }
.dv-stat span { font-size: 12.5px; color: var(--text-secondary); }
.dv-hero-dark .dv-stat span { color: rgba(255,255,255,.6); }
.dv-visual { position: relative; display: flex; justify-content: center; }

/* Categories (landing) */
.dv-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dv-cat-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 24px;
    display: flex; flex-direction: column; gap: 12px;
    transition: var(--transition);
}
.dv-cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.dv-cat-top { display: flex; align-items: flex-start; justify-content: space-between; }
.dv-cat-arrow {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--light); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.dv-cat-card:hover .dv-cat-arrow { background: var(--gradient-cta); color: #fff; transform: translateX(4px); }
.dv-cat-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark); }
.dv-cat-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.dv-cat-card .service-icon { margin-bottom: 0; }

/* Process */
.dv-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dv-process-step {
    position: relative; background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 24px 24px;
    transition: var(--transition); overflow: hidden;
}
.dv-process-step::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-primary); transform: scaleX(0); transition: var(--transition);
}
.dv-process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.dv-process-step:hover::before { transform: scaleX(1); }
.dv-process-num {
    position: absolute; top: 16px; right: 18px;
    font-family: var(--font-heading); font-size: 34px; font-weight: 700;
    color: #E8EDF7; line-height: 1;
}
.dv-process-icon {
    width: 52px; height: 52px; border-radius: var(--radius-md); margin-bottom: 16px;
    background: rgba(0,90,231,.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.dv-process-step h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; position: relative; }
.dv-process-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; position: relative; }

/* Tech chips */
.dv-tech { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.dv-tech-chip {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
    border-radius: 50px; padding: 12px 22px; color: #fff;
    font-size: 14px; font-weight: 600; transition: var(--transition);
}
.dv-tech-chip:hover { background: rgba(30,124,255,.18); border-color: var(--accent); transform: translateY(-3px); }
.dv-tech-chip i { color: var(--accent); font-size: 16px; }

/* Feature grid */
.dv-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dv-feature-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 24px;
    transition: var(--transition); position: relative; overflow: hidden;
}
.dv-feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-primary); transform: scaleX(0); transition: var(--transition);
}
.dv-feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.dv-feature-card:hover::before { transform: scaleX(1); }
.dv-feature-card .service-icon { margin-bottom: 16px; }
.dv-feature-card h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.dv-feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Compare */
.dv-compare { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.dv-compare-head, .dv-compare-row {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr; align-items: center;
    padding: 16px 22px; gap: 12px;
}
.dv-compare-head { background: var(--dark); color: #fff; }
.dv-compare-head b { font-family: var(--font-heading); font-size: 15px; }
.dv-cold-right { color: var(--cta); }
.dv-compare-row { border-top: 1px solid var(--border); font-size: 14px; }
.dv-compare-row:hover { background: var(--light); }
.dv-compare-feat { font-weight: 600; color: var(--dark); }
.dv-compare-cell { color: var(--text-secondary); }
.dv-cold-right { color: var(--primary); font-weight: 600; }
.dv-compare-head .dv-cold-left { color: rgba(255,255,255,.55); }
.dv-compare-head .dv-cold-right { color: var(--accent); }

/* Use cases */
.dv-use-cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.dv-use-card {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 22px; transition: var(--transition);
}
.dv-use-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.dv-use-icon {
    width: 46px; height: 46px; border-radius: var(--radius-sm); flex-shrink: 0;
    background: rgba(0,90,231,.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.dv-use-card h3 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.dv-use-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Modules (ERP) */
.dv-modules { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dv-module {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px 20px;
    display: flex; gap: 14px; align-items: flex-start;
    transition: var(--transition);
}
.dv-module:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.dv-module-icon {
    width: 46px; height: 46px; border-radius: var(--radius-sm); flex-shrink: 0;
    background: linear-gradient(135deg, rgba(0,90,231,.1), rgba(113,204,5,.1));
    color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.dv-module h3 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.dv-module p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* Portfolio */
.dv-portfolio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dv-portfolio-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition);
}
.dv-portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.dv-portfolio-thumb {
    height: 170px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #EAF1FF, #F6F9FF);
    position: relative;
}
.dv-portfolio-icon { font-size: 52px; color: var(--primary); opacity: .85; }
.dv-portfolio-cat {
    position: absolute; top: 14px; left: 14px;
    background: var(--white); color: var(--primary);
    font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 50px;
    box-shadow: var(--shadow-sm);
}
.dv-portfolio-info { padding: 20px 22px 24px; }
.dv-portfolio-info h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.dv-portfolio-info p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.dv-portfolio-info .portfolio-tech { justify-content: flex-start; }

/* CTA actions */
.dv-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; position: relative; z-index: 1; }

/* Visuals */
.dv-browser { width: 100%; max-width: 500px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-xl); border: 1px solid var(--border); overflow: hidden; animation: floatDashboard 6s ease-in-out infinite; }
.dv-wireframe { width: 100%; max-width: 500px; display: flex; flex-direction: column; gap: 16px; }
.dv-wf-frame {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 18px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-lg);
}
.dv-wf-top { height: 12px; width: 40%; border-radius: 6px; background: var(--gradient-primary); }
.dv-wf-nav { display: flex; gap: 10px; }
.dv-wf-nav i { width: 40px; height: 8px; border-radius: 4px; background: #E4EAF5; }
.dv-wf-hero { height: 90px; border-radius: var(--radius-md); background: linear-gradient(135deg, #EAF1FF, #F4F8FF); border: 2px dashed #C9D6F0; }
.dv-wf-rows { display: flex; flex-direction: column; gap: 8px; }
.dv-wf-rows span { height: 10px; border-radius: 5px; background: #E4EAF5; width: 70%; }
.dv-wf-rows span:last-child { width: 45%; }
.dv-wf-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.dv-wf-cards span { height: 40px; border-radius: var(--radius-sm); background: #F0F4FB; border: 1px solid var(--border); }
.dv-wf-tools { display: flex; gap: 10px; flex-wrap: wrap; }
.dv-wf-tool {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); border: 1px solid var(--border); border-radius: 50px;
    padding: 9px 16px; font-size: 13px; font-weight: 600; color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}
.dv-wf-tool i { color: var(--primary); }
.dv-blocks { width: 100%; max-width: 500px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: center; }
.dv-block {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 22px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow-md);
}
.dv-block i { font-size: 22px; color: var(--primary); }
.dv-block b { font-size: 14px; color: var(--dark); }
.dv-block-a, .dv-block-d { margin-top: 20px; }
.dv-block-center {
    grid-column: 1 / -1; background: linear-gradient(135deg, #001C50, #00307A); color: #fff;
    border-radius: var(--radius-lg); padding: 26px; text-align: center;
    display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow-lg);
}
.dv-block-center i { font-size: 26px; color: var(--accent); }
.dv-block-center b { font-size: 16px; }
.dv-wp { width: 100%; max-width: 520px; background: #0B1020; border-radius: var(--radius-lg); overflow: hidden; display: flex; box-shadow: var(--shadow-xl); }
.dv-wp-side {
    width: 64px; background: #111a33; display: flex; flex-direction: column;
    align-items: center; gap: 22px; padding: 16px 0; color: #5E739E;
}
.dv-wp-side i { font-size: 16px; }
.dv-wp-side i:first-of-type { color: var(--accent); }
.dv-wp-logo {
    width: 34px; height: 34px; border-radius: 8px; background: var(--gradient-primary);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 17px;
}
.dv-wp-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.dv-wp-bar { display: flex; align-items: center; gap: 12px; }
.dv-wp-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.15); }
.dv-wp-bar b { color: #fff; font-size: 13px; flex: 1; font-family: var(--font-heading); }
.dv-wp-btn { width: auto !important; height: auto !important; border-radius: 6px !important; background: var(--gradient-cta) !important; padding: 6px 12px !important; color: #fff; font-size: 11px !important; }
.dv-wp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.dv-wp-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm); padding: 12px; display: flex; flex-direction: column; gap: 2px; }
.dv-wp-card i { color: var(--accent); font-size: 13px; }
.dv-wp-card b { color: #fff; font-size: 15px; }
.dv-wp-card span { color: rgba(255,255,255,.5); font-size: 10px; }
.dv-wp-posts { display: flex; flex-direction: column; gap: 8px; }
.dv-wp-posts span { height: 9px; border-radius: 5px; background: rgba(255,255,255,.08); }
.dv-wp-posts span:nth-child(2) { width: 80%; }
.dv-redesign { width: 100%; max-width: 520px; display: flex; align-items: center; gap: 14px; }
.dv-before, .dv-after { flex: 1; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow-lg); }
.dv-red-tag { font-size: 11px; font-weight: 700; color: var(--text-secondary); letter-spacing: 1px; text-transform: uppercase; }
.dv-red-tag-new { color: var(--cta); }
.dv-red-site { border-radius: var(--radius-md); padding: 14px; display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.dv-red-old { background: #F1F3F7; border: 1px dashed #C4CDDE; filter: grayscale(1); }
.dv-red-new { background: linear-gradient(135deg, #EAF1FF, #F4F8FF); border: 1px solid #D6E1F5; }
.dv-red-site .line { height: 9px; border-radius: 5px; background: #D3DCEA; }
.dv-red-new .line { background: #BFD2F5; }
.dv-red-logo { width: 48px; height: 14px; border-radius: 4px; background: var(--gradient-primary); }
.dv-red-btn { width: 66px; height: 22px; border-radius: 6px; background: #CBD5E1; }
.dv-red-new .dv-red-btn { background: var(--gradient-cta); }
.dv-red-meters { display: flex; gap: 8px; margin-top: 12px; }
.dv-meter { height: 8px; border-radius: 4px; flex: 1; }
.dv-meter-slow { background: #E2E8F0; }
.dv-meter-low { background: #FBD5D5; }
.dv-meter-fast { background: var(--gradient-cta); }
.dv-meter-high { background: var(--gradient-primary); }
.dv-arrow { color: var(--primary); font-size: 22px; flex-shrink: 0; animation: floatX 2.5s ease-in-out infinite; }
@keyframes floatX { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
.dv-dash { width: 100%; max-width: 520px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-xl); }
.dv-dash-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.dv-dash-logo {
    width: 34px; height: 34px; border-radius: 8px; background: var(--gradient-primary);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 14px; font-weight: 700;
}
.dv-dash-logo-red { background: linear-gradient(135deg, #E0245E, #B3154A); }
.dv-dash-head b { flex: 1; font-family: var(--font-heading); color: var(--dark); }
.dv-dash-badge { font-size: 11px; font-weight: 700; color: var(--cta); background: rgba(113,204,5,.12); padding: 4px 10px; border-radius: 50px; }
.dv-dash-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 14px; }
.dv-dash-card { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; display: flex; flex-direction: column; gap: 2px; }
.dv-dash-card i { color: var(--primary); font-size: 15px; margin-bottom: 4px; }
.dv-dash-card b { font-family: var(--font-heading); font-size: 18px; color: var(--dark); }
.dv-dash-card span { font-size: 12px; color: var(--text-secondary); }
.dv-dash-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-secondary); }
.dv-dash-rowbar { height: 8px; border-radius: 4px; background: var(--gradient-primary); flex: 1; }
.dv-dash-row i { color: var(--primary); }
.dv-tree { width: 100%; max-width: 520px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-xl); display: flex; flex-direction: column; gap: 14px; }
.dv-tree-root { align-self: center; display: flex; align-items: center; gap: 8px; background: var(--gradient-primary); color: #fff; padding: 10px 18px; border-radius: 50px; font-size: 14px; font-weight: 600; }
.dv-tree-level { display: flex; justify-content: center; gap: 14px; }
.dv-tree-node { width: 56px; height: 56px; border-radius: 50%; background: var(--light); border: 2px solid var(--primary); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: var(--primary); font-size: 11px; font-weight: 700; }
.dv-tree-node:nth-child(3n) { border-color: var(--cta); color: var(--cta); }
.dv-tree-stat { display: flex; justify-content: space-between; gap: 10px; }
.dv-tree-stat span { flex: 1; background: var(--light); border-radius: var(--radius-sm); padding: 12px; text-align: center; font-size: 12px; color: var(--text-secondary); }
.dv-tree-stat b { display: block; font-family: var(--font-heading); font-size: 16px; color: var(--dark); margin-bottom: 2px; }
.dv-phone { width: 230px; background: #0B1020; border-radius: 32px; padding: 12px; box-shadow: var(--shadow-xl); position: relative; animation: floatDashboard 6s ease-in-out infinite; }
.dv-phone-notch { width: 90px; height: 6px; background: #1b2440; border-radius: 50px; margin: 0 auto 10px; }
.dv-phone-screen { background: var(--white); border-radius: 22px; overflow: hidden; }
.dv-phone-app { display: flex; flex-direction: column; gap: 14px; padding: 16px; }
.dv-phone-appbar { display: flex; align-items: center; justify-content: space-between; }
.dv-phone-logo { width: 48px; height: 12px; border-radius: 4px; background: var(--gradient-primary); }
.dv-phone-appbar i { color: var(--primary); font-size: 14px; }
.dv-phone-banner { background: linear-gradient(135deg, #EAF1FF, #F4F8FF); border-radius: var(--radius-md); padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.dv-phone-banner .line { height: 8px; border-radius: 4px; background: #C9D6F0; }
.dv-phone-btn { width: 60px; height: 22px; border-radius: 6px; background: var(--gradient-cta); }
.dv-phone-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dv-phone-cards span { height: 60px; border-radius: var(--radius-sm); background: var(--light); border: 1px solid var(--border); }
.dv-phone-nav { display: flex; justify-content: space-around; color: #B8C4D8; }
.dv-phone-nav i:first-child { color: var(--primary); }
.dv-code { max-width: 520px; }

/* Development responsive */
@media (max-width: 1199px) {
    .dv-modules { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    .dv-grid { grid-template-columns: 1fr; gap: 40px; }
    .dv-hero-dark .dv-grid { text-align: center; }
    .dv-hero-dark .dv-bullets, .dv-hero-dark .dv-buttons, .dv-hero-dark .dv-stats { justify-content: center; margin-left: auto; margin-right: auto; }
    .dv-visual { display: none; }
    .dv-cat-grid, .dv-feature-grid, .dv-portfolio { grid-template-columns: repeat(2, 1fr); }
    .dv-process { grid-template-columns: repeat(2, 1fr); }
    .dv-use-cases { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .dv-hero { padding: 40px 0 48px; }
    .dv-title { font-size: 28px; }
    .dv-subtitle { font-size: 16px; }
    .dv-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
    .dv-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .dv-stat { padding: 12px 10px; }
    .dv-stat b { font-size: 16px; }
    .dv-cat-grid, .dv-feature-grid, .dv-portfolio, .dv-process, .dv-modules { grid-template-columns: 1fr; }
    .dv-process { max-width: 420px; margin: 0 auto; }
    .dv-compare-head, .dv-compare-row { grid-template-columns: 1fr; padding: 12px 16px; gap: 6px; }
    .dv-compare-feat { font-size: 14px; }
    .dv-redesign { flex-direction: column; }
    .dv-arrow { transform: rotate(90deg); }
    .dv-cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
    .dv-tree-stat { flex-direction: column; }
    .dv-phone { width: 200px; }
}
/* ============================================
   Phase 5 Rev 2 - Refined Scale + Product-Specific Mockups
   Typography: H1 ~44px ï¿½ H2 ~36px ï¿½ body 16px ï¿½ buttons ~46px
   ============================================ */
.dv-title { font-size: var(--fs-h1); }
.section-title { font-size: var(--fs-h2); }
.section-subtitle { font-size: 16px; }
.btn-lg { padding: 10px 24px; font-size: 14px; border-radius: var(--radius-sm); }
.dv-feature-card, .dv-cat-card, .dv-process-step { padding: 22px 22px; }
.dv-module { padding: 20px 18px; }
.dv-process-num { font-size: 26px; top: 12px; right: 16px; }
.dv-process-icon { width: 46px; height: 46px; font-size: 18px; }
.dv-portfolio-thumb { height: 150px; }
.dv-portfolio-icon { font-size: 42px; }
.dv-cat-card h3, .dv-feature-card h3 { font-size: 17px; }

/* --- Shared mockup chrome --- */
.dv-mock { position: relative; width: 100%; max-width: 520px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-xl); overflow: hidden; }
.dv-mock-head { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.dv-mock-dots { display: flex; gap: 5px; }
.dv-mock-dots i { width: 8px; height: 8px; border-radius: 50%; display: block; }
.dv-mock-title { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--dark); flex: 1; display: flex; align-items: center; gap: 8px; }
.dv-mock-title i { color: var(--primary); font-size: 14px; }
.dv-mock-pill { font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 50px; background: rgba(113,204,5,.14); color: var(--cta-dark); }
.dv-mock-pill-blue { background: rgba(0,90,231,.1); color: var(--primary); }
.dv-mock-pill-red { background: rgba(224,36,94,.12); color: #C81E5A; }
.dv-mock-body { display: flex; min-height: 250px; }
.dv-mock-side { width: 52px; background: var(--light); border-right: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 14px 0; color: #8CA0BF; }
.dv-mock-side i { font-size: 15px; }
.dv-mock-side i:first-child { color: var(--primary); }
.dv-mock-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.dv-kpi { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.dv-kpi-card { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; }
.dv-kpi-card i { color: var(--primary); font-size: 14px; }
.dv-kpi-card b { display: block; font-family: var(--font-heading); font-size: 19px; color: var(--dark); margin: 3px 0 1px; }
.dv-kpi-card span { font-size: 11.5px; color: var(--text-secondary); }
.dv-mini-bar { height: 8px; border-radius: 4px; background: var(--light-alt); overflow: hidden; position: relative; }
.dv-mini-bar::after { content: ''; position: absolute; inset: 0; border-radius: 4px; background: var(--gradient-primary); width: var(--w, 70%); }
.dv-mini-bar.green::after { background: var(--gradient-cta); }

/* --- School: education dashboard --- */
.dv-edu-timetable { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.dv-edu-period { background: var(--light); border: 1px solid var(--border); border-radius: 6px; padding: 6px 8px; }
.dv-edu-period b { display: block; font-size: 9.5px; color: var(--primary); font-weight: 700; }
.dv-edu-period span { font-size: 8.5px; color: var(--text-secondary); }
.dv-att-row { display: flex; align-items: center; gap: 8px; font-size: 10.5px; color: var(--text-secondary); }
.dv-att-row .dv-mini-bar { flex: 1; }

/* --- Hospital: clinical dashboard --- */
.dv-clinic-vitals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.dv-vital { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px; text-align: center; }
.dv-vital i { font-size: 14px; color: #C81E5A; }
.dv-vital b { display: block; font-family: var(--font-heading); font-size: 17px; color: var(--dark); }
.dv-vital span { font-size: 10px; color: var(--text-secondary); }
.dv-queue { display: flex; flex-direction: column; gap: 6px; }
.dv-qrow { display: flex; align-items: center; gap: 8px; background: var(--light); border: 1px solid var(--border); border-radius: 8px; padding: 7px 10px; font-size: 11px; color: var(--text-secondary); }
.dv-qrow i { color: var(--primary); width: 14px; }
.dv-qrow b { color: var(--dark); font-weight: 600; }
.dv-qrow .dv-mock-pill { margin-left: auto; }
.dv-qrow .dv-mock-pill-blue { margin-left: auto; }
.dv-bed { display: flex; align-items: center; gap: 8px; font-size: 10.5px; color: var(--text-secondary); }
.dv-bed .dv-mini-bar { flex: 1; }

/* --- MR: field day planner --- */
.dv-field-route { display: flex; flex-direction: column; gap: 6px; }
.dv-stop { display: flex; align-items: center; gap: 8px; background: var(--light); border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; }
.dv-stop i { color: var(--primary); font-size: 13px; width: 16px; }
.dv-stop b { font-size: 12px; color: var(--dark); flex: 1; }
.dv-stop span { font-size: 10px; color: var(--text-secondary); }
.dv-stop .dv-mock-pill { margin-left: 0; }
.dv-field-prog { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text-secondary); }
.dv-field-prog .dv-mini-bar { flex: 1; }

/* --- MLM: wallet + network tree + ledger --- */
.dv-mlm { display: flex; flex-direction: column; gap: 10px; }
.dv-wallet { display: flex; gap: 10px; }
.dv-wallet-card { flex: 1; background: linear-gradient(135deg, #001C50, #00307A); color: #fff; border-radius: var(--radius-md); padding: 14px; }
.dv-wallet-card b { display: block; font-family: var(--font-heading); font-size: 20px; }
.dv-wallet-card span { font-size: 10.5px; color: rgba(255,255,255,.6); }
.dv-wallet-card:last-child { background: var(--light); border: 1px solid var(--border); color: var(--dark); }
.dv-wallet-card:last-child b { color: var(--cta-dark); }
.dv-wallet-card:last-child span { color: var(--text-secondary); }
.dv-tree2 { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.dv-tree2-root { display: flex; align-items: center; gap: 8px; background: var(--gradient-primary); color: #fff; padding: 8px 16px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.dv-tree2-row { display: flex; justify-content: center; gap: 12px; }
.dv-tree2-node { width: 44px; height: 44px; border-radius: 50%; background: var(--light); border: 2px solid var(--primary); display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: var(--primary); }
.dv-tree2-node.green { border-color: var(--cta); color: var(--cta-dark); }
.dv-ledger { display: flex; flex-direction: column; gap: 5px; }
.dv-ledger-row { display: flex; align-items: center; gap: 8px; font-size: 10.5px; color: var(--text-secondary); background: var(--light); border: 1px solid var(--border); border-radius: 7px; padding: 6px 10px; }
.dv-ledger-row b { color: var(--dark); flex: 1; font-weight: 600; }
.dv-ledger-row em { font-style: normal; color: var(--cta-dark); font-weight: 700; }

/* --- Mobile: phone duo + store badges --- */
.dv-phone-duo { display: flex; align-items: flex-end; gap: 14px; position: relative; }
.dv-phone-b { transform: translateY(14px); animation-delay: .4s; }
.dv-store-badges { position: absolute; left: 50%; bottom: -26px; transform: translateX(-50%); display: flex; gap: 8px; }
.dv-store { display: inline-flex; align-items: center; gap: 6px; background: #0B1020; color: #fff; border-radius: 8px; padding: 6px 12px; font-size: 10px; font-weight: 600; }
.dv-store i { color: #fff; font-size: 12px; }
.dv-push { display: flex; align-items: center; gap: 8px; background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 8px; }
.dv-push i { color: var(--primary); font-size: 15px; }
.dv-push b { font-size: 10.5px; color: var(--dark); display: block; }
.dv-push span { font-size: 9px; color: var(--text-secondary); }

/* --- UI/UX: design system panel --- */
.dv-dsys { width: 100%; max-width: 520px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); overflow: hidden; }
.dv-dsys-head { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-bottom: 1px solid var(--border); }
.dv-dsys-head i { color: var(--primary); }
.dv-dsys-head b { flex: 1; font-size: 12px; font-family: var(--font-heading); color: var(--dark); }
.dv-dsys-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.dv-swatches { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.dv-swatch { border-radius: 8px; padding: 10px; color: #fff; font-size: 9.5px; font-weight: 600; display: flex; flex-direction: column; gap: 2px; }
.dv-swatch span { font-weight: 400; opacity: .8; }
.dv-type-rows { display: flex; flex-direction: column; gap: 6px; }
.dv-type-row { display: flex; align-items: baseline; gap: 10px; border-bottom: 1px dashed var(--border); padding-bottom: 6px; }
.dv-type-row b { font-family: var(--font-heading); color: var(--dark); }
.dv-type-row span { font-size: 10px; color: var(--text-secondary); margin-left: auto; }
.dv-comp-spec { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.dv-spec-btn { background: var(--gradient-primary); color: #fff; border-radius: 6px; padding: 6px 14px; font-size: 10px; font-weight: 600; }
.dv-spec-btn2 { border: 1px solid var(--primary); color: var(--primary); border-radius: 6px; padding: 6px 14px; font-size: 10px; font-weight: 600; }
.dv-spec-input { flex: 1; min-width: 110px; border: 1px solid var(--border); border-radius: 6px; padding: 7px 10px; font-size: 10px; color: var(--text-secondary); background: var(--light); }
.dv-spec-toggle { width: 30px; height: 17px; border-radius: 50px; background: var(--cta); position: relative; }
.dv-spec-toggle::after { content: ''; position: absolute; width: 11px; height: 11px; border-radius: 50%; background: #fff; top: 3px; right: 3px; }
.dv-journey { display: flex; gap: 6px; align-items: center; }
.dv-jstep { flex: 1; background: var(--light); border: 1px solid var(--border); border-radius: 7px; padding: 6px 8px; font-size: 9px; color: var(--text-secondary); text-align: center; }
.dv-jstep b { display: block; color: var(--primary); font-size: 11px; }
.dv-jarrow { color: #C9D6F0; font-size: 10px; }

/* --- Web: browser + responsive frames --- */
.dv-web2 { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.dv-web2 .dv-browser { max-width: 480px; }
.dv-web-frames { display: flex; gap: 10px; align-items: flex-end; }
.dv-frame-tab { width: 130px; background: var(--white); border: 1px solid var(--border); border-radius: 10px 10px 0 0; padding: 10px; box-shadow: var(--shadow-lg); }
.dv-frame-tab .line { height: 6px; border-radius: 3px; background: #D6E1F5; margin-bottom: 6px; }
.dv-frame-tab .btn-line { width: 52px; height: 16px; border-radius: 4px; background: var(--gradient-cta); margin-top: 6px; }
.dv-frame-phone { width: 74px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 8px; box-shadow: var(--shadow-lg); }
.dv-frame-phone .line { height: 5px; border-radius: 3px; background: #D6E1F5; margin-bottom: 5px; }
.dv-frame-phone .btn-line { width: 40px; height: 13px; border-radius: 4px; background: var(--gradient-cta); margin-top: 5px; }

/* --- Software: layered architecture --- */
.dv-arch { width: 100%; max-width: 520px; display: flex; flex-direction: column; gap: 8px; }
.dv-layer { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 10px 16px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-md); }
.dv-layer i { color: var(--primary); font-size: 16px; width: 20px; text-align: center; }
.dv-layer b { font-size: 13px; color: var(--dark); flex: 1; font-family: var(--font-heading); }
.dv-layer span { font-size: 11px; color: var(--text-secondary); }
.dv-layer.cta { background: linear-gradient(135deg, #001C50, #00307A); border: none; }
.dv-layer.cta i, .dv-layer.cta b { color: #fff; }
.dv-layer.cta span { color: rgba(255,255,255,.6); }

/* --- Pipeline stepper (mobile deployment / delivery) --- */
.dv-pipe { width: 100%; max-width: 560px; display: flex; align-items: flex-start; gap: 8px; }
.dv-pipe-step { flex: 1; text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 8px; box-shadow: var(--shadow-md); position: relative; }
.dv-pipe-step i { font-size: 16px; color: var(--primary); }
.dv-pipe-step b { display: block; font-size: 11px; color: var(--dark); margin-top: 4px; font-family: var(--font-heading); }
.dv-pipe-step span { font-size: 9.5px; color: var(--text-secondary); }
.dv-pipe-link { color: #C9D6F0; font-size: 12px; padding-top: 26px; }

/* Rev2 responsive */
@media (max-width: 1199px) {
    .dv-mock-body { min-height: 230px; }
}
@media (max-width: 991px) {
    .dv-mock-body { min-height: 210px; }
}
@media (max-width: 767px) {
    .dv-store-badges { position: static; transform: none; justify-content: center; }
    .dv-phone-duo { justify-content: center; flex-wrap: wrap; }
    .dv-pipe { flex-wrap: wrap; }
    .dv-pipe-link { display: none; }
    .dv-pipe-step { min-width: 42%; }
}

/* ============================================
   Phase 6 - Services (sv-*) Communication Platform
   Same brand system + service-specific personalities
   ============================================ */
.sv-pill { font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 50px; background: rgba(113,204,5,.14); color: var(--cta-dark); }
.sv-pill-blue { background: rgba(0,90,231,.1); color: var(--primary); }
.sv-bub { display: inline-block; max-width: 78%; border-radius: 12px; padding: 7px 11px; font-size: 11px; line-height: 1.45; }
.sv-bub-in { background: var(--light); border: 1px solid var(--border); color: var(--text-primary); align-self: flex-start; border-top-left-radius: 4px; }
.sv-bub-out { background: var(--gradient-primary); color: #fff; align-self: flex-end; border-top-right-radius: 4px; }
.sv-bub-out i { font-size: 10px; }

/* Hub (landing) */
.sv-hub { width: 100%; max-width: 520px; display: flex; flex-direction: column; gap: 12px; }
.sv-hub-phone { align-self: flex-end; width: 240px; background: #0B1020; border-radius: 30px; padding: 10px; box-shadow: var(--shadow-xl); }
.sv-hub-screen { background: var(--white); border-radius: 22px; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.sv-hub-appbar { display: flex; align-items: center; justify-content: space-between; color: var(--dark); font-family: var(--font-heading); font-size: 12px; }
.sv-hub-appbar i { color: var(--primary); }
.sv-hub-bubbles { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.sv-hub-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.sv-hub-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 14px; display: flex; flex-direction: column; gap: 2px; box-shadow: var(--shadow-md); }
.sv-hub-card i { color: var(--primary); font-size: 15px; }
.sv-hub-card b { font-family: var(--font-heading); font-size: 13px; color: var(--dark); }
.sv-hub-card em { font-style: normal; font-size: 10.5px; color: var(--text-secondary); }

/* SMS: phone + report */
.sv-sms { width: 100%; max-width: 520px; display: flex; gap: 12px; align-items: flex-end; }
.sv-phone { width: 190px; background: #0B1020; border-radius: 28px; padding: 9px; box-shadow: var(--shadow-xl); }
.sv-phone-notch { width: 70px; height: 5px; background: #1b2440; border-radius: 50px; margin: 0 auto 8px; }
.sv-phone-screen { background: var(--white); border-radius: 20px; overflow: hidden; }
.sv-chat-head { display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: var(--dark); color: #fff; font-family: var(--font-heading); font-size: 12px; }
.sv-chat-head i { color: var(--accent); }
.sv-chat-head .sv-pill { margin-left: auto; }
.sv-chat { display: flex; flex-direction: column; gap: 7px; padding: 12px; min-height: 150px; }
.sv-chat-input { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--border); }
.sv-chat-input span { flex: 1; height: 18px; border-radius: 50px; background: var(--light); }
.sv-chat-input i { color: var(--primary); }
.sv-report { flex: 1; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow-xl); display: flex; flex-direction: column; gap: 12px; }
.sv-report-head { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-heading); color: var(--dark); font-size: 13px; }
.sv-report-stat { display: flex; align-items: center; gap: 10px; font-size: 11.5px; color: var(--text-secondary); }
.sv-report-stat i { color: var(--primary); width: 18px; text-align: center; }
.sv-report-stat span { flex: 1; display: flex; justify-content: space-between; }
.sv-report-stat b { color: var(--dark); font-family: var(--font-heading); }
.sv-report-bar { display: flex; align-items: center; gap: 8px; font-size: 10.5px; color: var(--text-secondary); }
.sv-report-bar em { font-style: normal; color: var(--text-secondary); min-width: 20px; text-align: right; }
.sv-minibar { height: 7px; border-radius: 4px; background: var(--light-alt); overflow: hidden; position: relative; flex: 1; }
.sv-minibar::after { content: ''; position: absolute; inset: 0; border-radius: 4px; background: var(--gradient-cta); width: var(--w, 0%); }

/* Voice: waveform + broadcast card */
.sv-voice { width: 100%; max-width: 520px; display: flex; flex-direction: column; gap: 12px; }
.sv-wave { display: flex; align-items: center; gap: 5px; background: var(--dark); border-radius: var(--radius-lg); padding: 22px 20px; box-shadow: var(--shadow-xl); }
.sv-wave i { flex: 1; height: var(--h, 50%); max-height: 74px; border-radius: 3px; background: linear-gradient(180deg, var(--accent), #005AE7); animation: svWave 1.6s ease-in-out infinite; transform-origin: center; }
.sv-wave i:nth-child(even) { animation-delay: .3s; }
@keyframes svWave { 0%,100% { transform: scaleY(.6); } 50% { transform: scaleY(1); } }
.sv-call { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow-xl); display: flex; flex-direction: column; gap: 12px; }
.sv-call-head { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); color: var(--dark); font-size: 13px; }
.sv-call-head i { color: var(--cta); }
.sv-call-head .sv-pill { margin-left: auto; }
.sv-call-msg { display: flex; flex-direction: column; gap: 6px; }
.sv-call-title { font-size: 12px; color: var(--text-primary); font-weight: 600; }
.sv-call-meta { font-size: 10.5px; color: var(--text-secondary); }
.sv-call-prog { height: 8px; border-radius: 4px; background: var(--light-alt); overflow: hidden; }
.sv-call-prog span { display: block; height: 100%; border-radius: 4px; background: var(--gradient-primary); }
.sv-call-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sv-call-stats span { background: var(--light); border-radius: var(--radius-sm); padding: 8px; text-align: center; font-size: 10px; color: var(--text-secondary); }
.sv-call-stats b { display: block; font-family: var(--font-heading); font-size: 15px; color: var(--dark); }

/* WhatsApp: chat + API flow */
.sv-wa { width: 100%; max-width: 520px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.sv-wa-head { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: #075E54; color: #fff; }
.sv-wa-head > i { font-size: 18px; }
.sv-wa-head span:nth-child(2) { flex: 1; display: flex; flex-direction: column; }
.sv-wa-head b { font-family: var(--font-heading); font-size: 13px; }
.sv-wa-head em { font-style: normal; font-size: 10px; color: rgba(255,255,255,.75); }
.sv-wa-head .sv-pill-blue { margin-left: auto; background: rgba(255,255,255,.16); color: #fff; }
.sv-wa-chat { background: #E5DDD5; padding: 14px; display: flex; flex-direction: column; gap: 8px; min-height: 190px; }
.sv-wa-chat .sv-bub { box-shadow: 0 1px 2px rgba(0,0,0,.12); }
.sv-wa-chat .sv-bub-in { background: #fff; }
.sv-wa-chat .sv-bub-out { background: #DCF8C6; color: #1A1A1A; }
.sv-wa-quick { align-self: flex-end; display: inline-flex; align-items: center; gap: 6px; background: #25D366; color: #fff; border-radius: 18px; padding: 6px 12px; font-size: 11px; font-weight: 600; }
.sv-wa-flow { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 16px; background: var(--dark); color: #fff; font-size: 11.5px; }
.sv-wa-flow span { display: inline-flex; align-items: center; gap: 6px; }
.sv-wa-flow i { color: var(--accent); }
.sv-flow-arrow { color: var(--cta); font-size: 12px; }

/* IVR: call flow */
.sv-ivr { width: 100%; max-width: 520px; display: flex; flex-direction: column; gap: 10px; }
.sv-ivr-row { display: flex; align-items: center; justify-content: center; gap: 12px; }
.sv-ivr-node { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 10px 14px; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-lg); font-size: 12px; color: var(--dark); }
.sv-ivr-node i { color: var(--primary); }
.sv-ivr-node b { font-family: var(--font-heading); font-size: 12px; }
.sv-ivr-node em { font-style: normal; color: var(--text-secondary); font-size: 10.5px; }
.sv-ivr-caller i { color: var(--cta); }
.sv-ivr-main { background: linear-gradient(135deg, #001C50, #00307A); border: none; color: #fff; }
.sv-ivr-main i { color: var(--accent); }
.sv-ivr-main em { color: rgba(255,255,255,.65); }
.sv-ivr-menu { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.sv-ivr-opt { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 6px; text-align: center; box-shadow: var(--shadow-md); display: flex; flex-direction: column; align-items: center; gap: 2px; }
.sv-ivr-opt { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--primary); }
.sv-ivr-opt span { font-family: var(--font-body); font-weight: 500; font-size: 9.5px; color: var(--text-secondary); }
.sv-ivr-bottom .sv-ivr-node { flex: 1; justify-content: center; }
.sv-ivr-note { align-self: center; display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px dashed var(--border); border-radius: 50px; padding: 6px 14px; font-size: 11px; color: var(--text-secondary); box-shadow: var(--shadow-sm); }
.sv-ivr-note i { color: var(--primary); }

/* Services grid (landing) */
.sv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sv-grid-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 26px 22px; display: flex; flex-direction: column; gap: 10px; transition: var(--transition); position: relative; overflow: hidden; }
.sv-grid-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.sv-grid-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-primary); transform: scaleX(0); transition: var(--transition); }
.sv-grid-card:hover::before { transform: scaleX(1); }
.sv-grid-top { display: flex; align-items: flex-start; justify-content: space-between; }
.sv-grid-visual { width: 46px; height: 46px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); background: rgba(0,90,231,.07); }
.sv-grid-sms { background: rgba(0,90,231,.08); }
.sv-grid-sms::after { content: '\f658'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.sv-grid-voice { background: rgba(113,204,5,.1); }
.sv-grid-voice::after { content: '\f2a0'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--cta-dark); }
.sv-grid-whatsapp { background: rgba(37,211,102,.12); }
.sv-grid-whatsapp::after { content: '\f232'; font-family: 'Font Awesome 6 Brands'; color: #1FA855; }
.sv-grid-ivr { background: rgba(224,36,94,.08); }
.sv-grid-ivr::after { content: '\f587'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #C81E5A; }
.sv-grid-card h3 { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: var(--dark); }
.sv-grid-card p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.65; flex: 1; }
.sv-grid-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--primary); margin-top: 4px; }
.sv-grid-link i { transition: var(--transition); }
.sv-grid-card:hover .sv-grid-link i { transform: translateX(5px); color: var(--cta); }

/* Industries */
.sv-industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sv-industry { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; transition: var(--transition); }
.sv-industry:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.sv-industry-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); flex-shrink: 0; background: rgba(0,90,231,.08); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.sv-industry h3 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.sv-industry p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* Integrations */
.sv-int { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.sv-int-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.sv-int-item { display: flex; gap: 12px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; }
.sv-int-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); flex-shrink: 0; background: linear-gradient(135deg, rgba(0,90,231,.1), rgba(113,204,5,.1)); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.sv-int-item h3 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.sv-int-item p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.55; }
.sv-int-code { background: #0B1020; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08); }
.sv-int-code pre { margin: 0; padding: 18px; overflow-x: auto; }
.sv-int-code code { font-family: 'Courier New', monospace; font-size: 12.5px; line-height: 1.7; color: #7EE787; white-space: pre; }

/* Services responsive */
@media (max-width: 1199px) {
    .sv-industries { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    .sv-grid { grid-template-columns: 1fr; }
    .sv-int { grid-template-columns: 1fr; }
    .sv-sms { justify-content: center; }
}
@media (max-width: 767px) {
    .sv-industries, .sv-int-list { grid-template-columns: 1fr; }
    .sv-sms { flex-direction: column; align-items: center; }
    .sv-report { width: 100%; max-width: 300px; }
    .sv-phone { width: 170px; }
    .sv-hub-phone { width: 210px; align-self: center; }
    .sv-ivr-menu { grid-template-columns: repeat(2, 1fr); }
    .sv-ivr-bottom { flex-direction: column; }
    .sv-ivr-bottom .sv-ivr-node { width: 100%; }
    .sv-wave { padding: 16px 14px; }
}

/* ============================================
   Phase 7 - Support (su-*) Help Center, FAQs, Contact
   Same brand system, help-desk experience
   ============================================ */
.su-hero { padding: 64px 0 72px; background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%); text-align: center; position: relative; overflow: hidden; }
.su-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(0,90,231,.05) 1px, transparent 1px); background-size: 26px 26px; }
.su-hero .container { position: relative; z-index: 1; max-width: 860px; }
.su-title {
    font-family: var(--font-heading); font-size: var(--fs-h1); font-weight: var(--fw-h1); line-height: var(--lh-h1); color: var(--dark); margin-bottom: 14px; letter-spacing: -.5px; text-wrap: balance;
}
.su-subtitle { font-size: 17px; line-height: 1.7; color: var(--text-secondary); max-width: 620px; margin: 0 auto; }
.su-search { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: 50px; padding: 8px 8px 8px 20px; box-shadow: var(--shadow-lg); margin: 28px auto 0; max-width: 620px; }
.su-search i { color: var(--primary); }
.su-search input { flex: 1; border: none; outline: none; font-size: 15px; color: var(--text-primary); background: transparent; min-width: 0; }
.su-quicktopics { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 16px; font-size: 13px; color: var(--text-secondary); }
.su-quicktopics a { color: var(--primary); font-weight: 600; }
.su-quicktopics a:hover { color: var(--cta-dark); }

/* Topics grid */
.su-topics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.su-topic { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 22px; transition: var(--transition); display: flex; flex-direction: column; gap: 8px; }
.su-topic:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: transparent; }
.su-topic-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: rgba(0,90,231,.08); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 4px; }
.su-topic h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--dark); }
.su-topic p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Articles */
.su-articles { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.su-article { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px 20px; transition: var(--transition); }
.su-article:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateX(4px); }
.su-article-icon { color: var(--primary); font-size: 16px; }
.su-article-title { flex: 1; font-size: 15px; font-weight: 600; color: var(--dark); }
.su-article-cat { font-size: 12px; font-weight: 700; color: var(--primary); background: rgba(0,90,231,.08); padding: 5px 12px; border-radius: 50px; }
.su-article-arrow { color: #B8C4D8; transition: var(--transition); }
.su-article:hover .su-article-arrow { color: var(--cta); transform: translateX(4px); }

/* FAQ groups */
.su-faq-groups { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 34px; }
.su-faq-group-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.su-faq-group-title i { color: var(--primary); }

/* Channels */
.su-channels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.su-channel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; transition: var(--transition); display: flex; flex-direction: column; gap: 8px; }
.su-channel:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: transparent; }
.su-channel-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: rgba(0,90,231,.08); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 6px; }
.su-channel h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--dark); }
.su-channel b { font-size: 15px; color: var(--primary); font-weight: 600; }
.su-channel p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }
.su-channel-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--dark); }
.su-channel:hover .su-channel-link i { transform: translateX(4px); color: var(--cta); }

/* Contact form */
.su-form { max-width: 720px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 20px; }
.su-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.su-form label { display: flex; flex-direction: column; gap: 8px; }
.su-form label > span { font-size: 13.5px; font-weight: 700; color: var(--dark); }
.su-form input, .su-form select, .su-form textarea { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 16px; font-size: 15px; color: var(--text-primary); outline: none; background: var(--white); font-family: var(--font-body); transition: var(--transition); }
.su-form input:focus, .su-form select:focus, .su-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,90,231,.1); }
.su-form textarea { resize: vertical; }
.su-form-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.su-form-hint { font-size: 12.5px; color: var(--text-secondary); display: flex; align-items: center; gap: 7px; }
.su-form-hint i { color: var(--primary); }

/* Support responsive */
@media (max-width: 1199px) {
    .su-topics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .su-hero { padding: 44px 0 52px; }
    .su-topics, .su-channels { grid-template-columns: 1fr; }
    .su-form { padding: 22px; }
    .su-form-row { grid-template-columns: 1fr; }
    .su-search { border-radius: var(--radius-md); flex-wrap: wrap; padding: 12px; }
    .su-search .btn { width: 100%; justify-content: center; }
    .su-article-cat { display: none; }
}

/* ============================================
   Phase 7 - Portfolio (pf-*) Filterable grid
   ============================================ */
.pf-notice { display: flex; gap: 14px; align-items: flex-start; background: rgba(113,204,5,.08); border: 1px solid rgba(113,204,5,.35); border-radius: var(--radius-md); padding: 18px 20px; margin-bottom: 34px; }
.pf-notice > i { color: var(--cta-dark); font-size: 20px; margin-top: 2px; }
.pf-notice b { font-family: var(--font-heading); font-size: 15px; color: var(--dark); }
.pf-notice p { font-size: 13.5px; color: var(--text-secondary); margin-top: 4px; line-height: 1.6; }

.pf-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.pf-filter-btn { border: 1px solid var(--border); background: var(--white); color: var(--text-secondary); font-family: var(--font-body); font-size: 13.5px; font-weight: 700; padding: 10px 20px; border-radius: 50px; cursor: pointer; transition: var(--transition); }
.pf-filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.pf-filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); box-shadow: 0 8px 20px rgba(0,90,231,.22); }

.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pf-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 10px; transition: var(--transition); }
.pf-card.hide { display: none; }
.pf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.pf-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.pf-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(0,90,231,.12), rgba(0,28,80,.12)); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.pf-tag { font-size: 11.5px; font-weight: 700; color: var(--primary); background: rgba(0,90,231,.08); padding: 5px 12px; border-radius: 50px; letter-spacing: .3px; }
.pf-name { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--dark); }
.pf-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; flex: 1; }
.pf-tech { display: flex; flex-wrap: wrap; gap: 7px; }
.pf-tech span { font-size: 11.5px; font-weight: 600; color: var(--text-secondary); background: var(--light); border: 1px solid var(--border); padding: 4px 10px; border-radius: 6px; }
.pf-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--dark); margin-top: 6px; }
.pf-card:hover .pf-link i { color: var(--cta); transform: translateX(4px); }

@media (max-width: 1199px) {
    .pf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .pf-grid { grid-template-columns: 1fr; }
    .pf-filters { gap: 8px; }
    .pf-filter-btn { padding: 9px 15px; font-size: 12.5px; }
}

/* ============================================
   Phase 7 - About (ab-*) & Legal (lg-*)
   ============================================ */
.ab-story { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: start; }
.ab-story-copy p { font-size: 16px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 16px; }
.ab-story-copy p:first-child { font-size: 17px; color: var(--text-primary); }
.ab-points { display: flex; flex-direction: column; gap: 16px; }
.ab-point { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px 20px; transition: var(--transition); }
.ab-point:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.ab-point-icon { width: 46px; height: 46px; flex-shrink: 0; border-radius: var(--radius-md); background: rgba(0,90,231,.08); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.ab-point h3 { font-family: var(--font-heading); font-size: 15.5px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.ab-point p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }

/* Legal pages */
.lg-hero { padding: 56px 0 52px; background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%); text-align: center; position: relative; }
.lg-hero .container { max-width: 860px; }
.lg-hero .dv-breadcrumb { justify-content: center; }
.lg-title {
    font-family: var(--font-heading); font-size: var(--fs-h1); font-weight: var(--fw-h1); color: var(--dark); line-height: var(--lh-h1); margin: 16px 0 10px; letter-spacing: -.5px;
}
.lg-subtitle { font-size: 17px; color: var(--text-secondary); line-height: 1.7; }
.lg-updated { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--primary); background: rgba(0,90,231,.08); padding: 7px 16px; border-radius: 50px; }
.lg-content { max-width: 820px; margin: 0 auto; }
.lg-intro { font-size: 16.5px; line-height: 1.8; color: var(--text-primary); background: var(--light); border-left: 3px solid var(--primary); padding: 20px 24px; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin-bottom: 40px; }
.lg-section { padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid var(--border); }
.lg-section:last-child { border-bottom: none; margin-bottom: 0; }
.lg-section h2 { font-family: var(--font-heading); font-size: 21px; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.lg-section h2 span { font-size: 13px; font-weight: 700; color: var(--primary); background: rgba(0,90,231,.1); padding: 5px 9px; border-radius: 6px; }
.lg-section p { font-size: 15px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 10px; }

/* About / legal responsive */
@media (max-width: 991px) {
    .ab-story { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================
   Phase 7 - Case Studies (cs-*)
   ============================================ */
.cs-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cs-pillar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 10px; transition: var(--transition); }
.cs-pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: transparent; }
.cs-pillar-icon { width: 50px; height: 50px; border-radius: var(--radius-md); background: rgba(0,90,231,.08); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 6px; }
.cs-pillar h3 { font-family: var(--font-heading); font-size: 16.5px; font-weight: 700; color: var(--dark); }
.cs-pillar p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.7; }

.cs-tech { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cs-tech-item { display: inline-flex; align-items: center; gap: 9px; background: var(--white); border: 1px solid var(--border); border-radius: 50px; padding: 10px 20px; font-size: 14px; font-weight: 600; color: var(--dark); transition: var(--transition); }
.cs-tech-item i { color: var(--primary); }
.cs-tech-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }

.cs-projects { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.cs-project { display: flex; align-items: center; gap: 18px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 24px; transition: var(--transition); }
.cs-project:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateX(4px); }
.cs-project-icon { width: 52px; height: 52px; flex-shrink: 0; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(0,90,231,.12), rgba(0,28,80,.12)); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 21px; }
.cs-project h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cs-project p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 8px; }
.cs-project-tech { display: flex; flex-wrap: wrap; gap: 6px; }
.cs-project-tech span { font-size: 11.5px; font-weight: 600; color: var(--text-secondary); background: var(--light); border: 1px solid var(--border); padding: 3px 10px; border-radius: 6px; }
.cs-project-arrow { margin-left: auto; color: #B8C4D8; transition: var(--transition); }
.cs-project:hover .cs-project-arrow { color: var(--cta); transform: translateX(4px); }

.cs-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cs-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 10px; transition: var(--transition); }
.cs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.cs-card-icon { width: 56px; height: 56px; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(0,90,231,.12), rgba(0,28,80,.12)); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 23px; margin-bottom: 6px; }
.cs-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark); }
.cs-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; flex: 1; }
.cs-card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--dark); margin-top: 8px; }
.cs-card:hover .cs-card-link i { color: var(--cta); transform: translateX(4px); }
.cs-note { max-width: 720px; margin: 28px auto 0; text-align: center; font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
.cs-note i { color: var(--cta-dark); margin-right: 6px; }

@media (max-width: 1199px) {
    .cs-pillars { grid-template-columns: 1fr; }
    .cs-cards { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .cs-project { flex-wrap: wrap; }
    .cs-project-arrow { display: none; }
}

/* ============================================
   Phase 6 Rev 2 - Services (sv2-*) dedicated sections
   ============================================ */

/* ---- Landing: individual service rows ---- */
.sv-feature-row { padding: 72px 0; }
.sv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.sv-row-reverse .sv-row-visual { order: 2; }
.sv-row-visual { display: flex; align-items: center; justify-content: center; min-height: 380px; }
.sv-row-content { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.sv-row-icon { width: 54px; height: 54px; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(0,90,231,.12), rgba(0,28,80,.12)); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.sv-row-title { margin-bottom: 0; }
.sv-row-desc { font-size: 16px; line-height: 1.7; color: var(--text-secondary); }
.sv-row-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 4px 0; }
.sv-row-bullets li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-primary); font-weight: 500; }
.sv-row-bullets li i { color: var(--cta-dark); }
.sv-row-uses { display: flex; flex-wrap: wrap; gap: 8px; }
.sv-row-uses span { font-size: 12.5px; font-weight: 600; color: var(--primary); background: rgba(0,90,231,.08); border: 1px solid rgba(0,90,231,.15); padding: 6px 14px; border-radius: 50px; }
.sv-row-uses span i { margin-right: 5px; }

/* ---- SMS: message types ---- */
.sm-mt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sm-mt-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 12px; transition: var(--transition); position: relative; }
.sm-mt-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: transparent; }
.sm-mt-card-highlight { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,90,231,.08); }
.sm-mt-visual { width: 100%; height: 120px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--white); }
.sm-mt-visual-trans { background: linear-gradient(135deg, #1E7CFF, #005AE7); }
.sm-mt-visual-otp { background: linear-gradient(135deg, #71CC05, #54A300); }
.sm-mt-visual-promo { background: linear-gradient(135deg, #001C50, #0B3B8C); }
.sm-mt-card h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--dark); }
.sm-mt-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; flex: 1; }
.sm-mt-meta { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--dark); background: var(--light); padding: 8px 12px; border-radius: 8px; }
.sm-mt-meta i { color: var(--primary); }
.sm-mt-uses { display: flex; flex-wrap: wrap; gap: 6px; }
.sm-mt-uses span { font-size: 11.5px; font-weight: 600; color: var(--text-secondary); background: var(--white); border: 1px solid var(--border); padding: 4px 10px; border-radius: 6px; }
.sm-mt-note { max-width: 780px; margin: 24px auto 0; text-align: center; font-size: 12.5px; color: var(--text-secondary); line-height: 1.7; }
.sm-mt-note i { color: var(--primary); margin-right: 6px; }

/* ---- Voice: sample player ---- */
.vs-sample { background: linear-gradient(180deg, var(--dark) 0%, #0B2A63 100%); color: var(--white); }
.vs-sample-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.vs-player { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 26px; display: flex; align-items: center; gap: 18px; }
.vs-play-btn { width: 54px; height: 54px; flex-shrink: 0; border-radius: 50%; background: var(--cta); color: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.vs-wave { display: flex; align-items: center; gap: 4px; flex: 1; height: 60px; }
.vs-wave i { width: 5px; height: var(--h); background: linear-gradient(180deg, #71CC05, #54A300); border-radius: 3px; }
.vs-time { font-size: 13px; color: rgba(255,255,255,.7); font-weight: 600; }
.vs-caption { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 8px; }
.vs-caption i { color: var(--cta); }
.vs-sample-content { color: var(--white); }
.vs-sample-content .section-tag { color: var(--cta); background: rgba(113,204,5,.12); }
.vs-sample-content .section-title { color: var(--white); margin-bottom: 12px; }
.vs-desc { font-size: 15.5px; line-height: 1.75; color: rgba(255,255,255,.82); margin-bottom: 20px; }
.vs-options { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.vs-option { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); padding: 16px 18px; }
.vs-option-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius-md); background: rgba(113,204,5,.15); color: var(--cta); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.vs-option h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.vs-option p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.6; }
.vs-langs { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 12.5px; }
.vs-langs-label { color: rgba(255,255,255,.7); font-weight: 600; }
.vs-langs span:not(.vs-langs-label) { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: var(--white); padding: 5px 12px; border-radius: 50px; font-weight: 600; }

/* ---- WhatsApp: automation flow ---- */
.wa-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: stretch; max-width: 1100px; margin: 0 auto; }
.wa-flow-step { display: flex; flex-direction: column; gap: 12px; }
.wa-flow-num { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--primary); letter-spacing: 1px; }
.wa-bubble { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; position: relative; }
.wa-bubble b { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.wa-bubble p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }
.wa-bubble-in { border-top: 3px solid var(--primary); }
.wa-bubble-out { border-top: 3px solid var(--cta); }
.wa-bubble-brand, .wa-bubble-out i { color: var(--cta); }
.wa-flow-arrow { display: flex; align-items: center; color: #B8C4D8; font-size: 20px; }
.wa-flow-cap { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; }
.wa-auto-note { max-width: 820px; margin: 28px auto 0; text-align: center; font-size: 12.5px; color: var(--text-secondary); line-height: 1.7; }
.wa-auto-note i { color: var(--primary); margin-right: 6px; }

/* ---- IVR: hours routing ---- */
.ivr-hrs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ivr-hrs-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.ivr-hrs-open { border-top: 3px solid var(--cta); }
.ivr-hrs-closed { border-top: 3px solid var(--primary); }
.ivr-hrs-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.ivr-hrs-open .ivr-hrs-badge i { color: var(--cta-dark); }
.ivr-hrs-closed .ivr-hrs-badge i { color: var(--primary); }
.ivr-hrs-flow { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.ivr-hrs-flow li { display: flex; flex-direction: column; gap: 3px; padding-left: 18px; position: relative; font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }
.ivr-hrs-flow li::before { content: ''; position: absolute; left: 0; top: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong, #C7D3E6); }
.ivr-hrs-open .ivr-hrs-flow li::before { background: var(--cta); }
.ivr-hrs-closed .ivr-hrs-flow li::before { background: var(--primary); }
.ivr-hrs-flow li span { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--dark); }
.ivr-hrs-footer { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.ivr-hrs-footer span { font-size: 12.5px; font-weight: 600; color: var(--text-secondary); background: var(--white); border: 1px solid var(--border); padding: 8px 16px; border-radius: 50px; }
.ivr-hrs-footer i { color: var(--primary); margin-right: 6px; }

/* ---- sv2 responsive ---- */
@media (max-width: 1199px) {
    .sv-row { grid-template-columns: 1fr; gap: 36px; }
    .sv-row-reverse .sv-row-visual { order: 0; }
    .sm-mt-grid { grid-template-columns: 1fr; }
    .vs-sample-grid { grid-template-columns: 1fr; gap: 36px; }
    .wa-flow { grid-template-columns: 1fr; }
    .wa-flow-arrow { transform: rotate(90deg); justify-content: center; }
    .ivr-hrs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .sv-feature-row { padding: 52px 0; }
    .sv-row-visual { min-height: 0; }
    .vs-player { flex-wrap: wrap; }
}
