/* ============================================================
   APPSOWEBZ — MODERN PROFESSIONAL THEME
   Shared base variables live in public/css/app.css
   ============================================================ */

/* ── 1. TOP BAR ───────────────────────────────────────────── */

.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,.82);
    font-size: 13px;
    padding: 9px 0;
    border-bottom: 2px solid var(--accent);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar a {
    color: rgba(255,255,255,.82);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color .2s;
    font-weight: 500;
}
.top-bar a:hover { color: var(--accent); }
.top-bar i { color: var(--accent); font-size: 11px; flex-shrink: 0; }

/* ── 2. HEADER ────────────────────────────────────────────── */

.site-header {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
    transition: box-shadow .35s ease, background .35s ease;
}
.site-header.scrolled {
    box-shadow: 0 4px 28px rgba(0,0,0,.10);
    background: rgba(255,255,255,.99);
}
.site-header nav,
.site-header .header-inner { overflow: visible; }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    gap: 20px;
    position: relative;
}
.logo img {
    height: 64px;
    max-height: 64px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}
.logo-text {
    font-size: 23px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.4px;
}
.logo-text span { color: var(--accent); }

/* Nav links */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav > li { position: relative; }
.main-nav > li.has-mega { margin: 0; }
.main-nav > li > a,
.main-nav .nav-item-row > a {
    display: block;
    padding: 10px 15px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14.5px;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: -0.1px;
}
.main-nav > li > a:hover,
.main-nav > li.active > a,
.main-nav .nav-item-row > a:hover,
.main-nav > li.has-mega.active .nav-item-row > a {
    color: var(--primary);
    background: var(--primary-50);
}
/* Dropdown arrow */
.main-nav .has-mega > a::after,
.main-nav .has-mega .nav-item-row > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 10px;
    transition: transform .25s;
    display: inline-block;
}
.main-nav .has-mega:hover .nav-item-row > a::after { transform: rotate(-180deg); }
.main-nav .nav-item-row { display: flex; align-items: center; }

/* Mega menu */
.mega-menu {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
    border-radius: var(--radius-lg);
    padding: 28px;
    min-width: 700px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s, transform .25s;
    border-top: 3px solid var(--accent);
    z-index: 1001;
    transform: translateX(-50%) translateY(-8px);
}
.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Services mega — centered under full header */
.main-nav > li.has-mega-services { position: static; }
.has-mega .mega-menu-services {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-8px);
    min-width: min(940px, calc(100vw - 48px));
    max-width: min(940px, calc(100vw - 48px));
    width:    min(940px, calc(100vw - 48px));
    padding: 28px 32px;
}
.has-mega:hover .mega-menu-services {
    transform: translateX(-50%) translateY(0);
}
.mega-services-layout { display: flex; flex-direction: column; gap: 0; }
.mega-menu-services .mega-grid-services-top {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 24px 32px;
}
.mega-menu-services .mega-col h4 { font-size: 11px; margin-bottom: 10px; }
.mega-menu-services .mega-col li a { font-size: 13px; padding: 5px 0; line-height: 1.35; }
.mega-row-marketing { border-top: 1px solid var(--border); margin-top: 20px; padding-top: 18px; }
.mega-row-marketing h4 {
    font-size: 11px; text-transform: uppercase; color: var(--primary);
    margin: 0 0 12px; letter-spacing: .9px; font-weight: 700;
}
.mega-marketing-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px 28px;
}
.mega-marketing-list li a {
    display: block; padding: 5px 0; font-size: 13px; color: var(--text); line-height: 1.35;
}
.mega-marketing-list li a:hover { color: var(--primary); padding-left: 4px; }
.mega-col h4 {
    font-size: 11px; text-transform: uppercase; color: var(--primary);
    margin: 0 0 12px; letter-spacing: .9px; font-weight: 700;
}
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col li a {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 0; font-size: 13.5px; color: var(--text);
    transition: all .2s;
}
.mega-col li a::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--border);
    border-radius: 50%;
    flex-shrink: 0;
    transition: background .2s;
}
.mega-col li a:hover { color: var(--primary); padding-left: 4px; }
.mega-col li a:hover::before { background: var(--accent); }

/* Header CTA button */
.header-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: #fff;
    padding: 11px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    box-shadow: var(--shadow-primary);
    transition: all .25s;
    display: inline-block;
    letter-spacing: -0.1px;
}
.header-cta .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 8px 28px rgba(13,71,161,.38);
    transform: translateY(-1px);
    color: #fff;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: 2px solid var(--border);
    font-size: 18px;
    color: var(--primary);
    cursor: pointer;
    padding: 8px 10px;
    line-height: 1;
    z-index: 1002;
    border-radius: 8px;
    transition: all .2s;
}
.mobile-toggle:hover { background: var(--bg-light); border-color: var(--primary); }
.mobile-toggle .icon-close { display: none; }
.mobile-toggle[aria-expanded="true"] .icon-open { display: none; }
.mobile-toggle[aria-expanded="true"] .icon-close { display: inline; }

.nav-item-row > a { flex: 1; }
.mega-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    flex-shrink: 0;
    border: none;
    background: var(--primary-50);
    color: var(--primary);
    cursor: pointer;
    border-radius: 0 8px 8px 0;
}
.mega-toggle i { transition: transform .25s ease; }
.has-mega.open .mega-toggle i { transform: rotate(180deg); }

.nav-cta-mobile { padding: 12px 0 4px; }
.nav-cta-mobile .btn-primary {
    display: block;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

/* ── 3. HERO ──────────────────────────────────────────────── */

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #1e6fd9 100%);
    min-height: 580px;
}
/* Decorative circles */
.hero-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -160px; left: -80px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    pointer-events: none;
}
.hero-slide {
    display: none;
    padding: 88px 0 120px;
    min-height: 580px;
    align-items: center;
}
.hero-slide.active {
    display: flex;
    animation: heroFadeIn .55s ease;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: none; }
}
.hero-content {
    flex: 1;
    color: #fff;
    max-width: 570px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.22);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 22px;
    font-weight: 500;
}
.hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .55; transform: scale(.75); }
}
.hero-content h1 {
    font-size: clamp(28px, 4.5vw, 50px);
    font-weight: 800;
    line-height: 1.14;
    margin: 0 0 22px;
    letter-spacing: -1.2px;
}
.hero-content h1 .highlight,
.hero-content h1 span.highlight { color: var(--accent); }
.hero-content p {
    font-size: 17px;
    opacity: .9;
    margin-bottom: 34px;
    line-height: 1.7;
    font-weight: 400;
}
.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}
.hero-image img {
    max-height: 420px;
    filter: drop-shadow(0 28px 52px rgba(0,0,0,.35));
    animation: heroFloat 5.5s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
.btn-hero {
    background: var(--accent);
    color: #fff;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    box-shadow: 0 8px 24px rgba(255,107,53,.42);
    transition: all .25s;
}
.btn-hero:hover {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(255,255,255,.25);
    transform: translateY(-2px);
    color: var(--primary);
}
/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.hero-dots button {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.55);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all .3s;
}
.hero-dots button.active {
    background: var(--accent);
    border-color: var(--accent);
    width: 26px;
    border-radius: 4px;
}

/* ── 4. STATS BAR ─────────────────────────────────────────── */

.stats-bar {
    margin-top: -48px;
    position: relative;
    z-index: 2;
    padding: 0 0 20px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}
.stat-item {
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background .25s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--primary-50); }
.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 48px; height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px 2px 0 0;
    transition: transform .3s;
}
.stat-item:hover::after { transform: translateX(-50%) scaleX(1); }
.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 6px;
}
.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -2px;
}
.stat-suffix {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
}
.stat-label {
    font-size: 13.5px;
    color: var(--text);
    font-weight: 500;
}

/* ── 5. SECTION COMMON ────────────────────────────────────── */

.section { padding: 88px 0; }
.section-title { text-align: center; margin-bottom: 56px; }
.section-title .subtitle {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 11.5px;
    display: inline-block;
    margin-bottom: 14px;
    background: var(--accent-light);
    padding: 5px 15px;
    border-radius: 50px;
}
.section-title h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    color: var(--text-dark);
    margin: 0 0 14px;
    font-weight: 800;
    letter-spacing: -0.7px;
    line-height: 1.18;
}
.section-title p {
    color: var(--text);
    max-width: 580px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.72;
}
.section-title .title-line {
    width: 52px; height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 18px auto 0;
}
.bg-light-section { background: var(--bg-light); }

/* ── 6. WHY CHOOSE ────────────────────────────────────────── */

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
    background: var(--white);
    padding: 36px 26px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all .32s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.why-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform .3s ease;
    border-radius: 0 0 2px 2px;
}
.why-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: transparent; }
.why-card:hover::after { transform: scaleX(1); }
.why-num {
    position: absolute;
    top: 14px; right: 18px;
    font-size: 46px;
    font-weight: 900;
    color: var(--primary);
    opacity: .055;
    line-height: 1;
    letter-spacing: -3px;
    font-family: var(--font);
}
.why-card .icon {
    width: 76px; height: 76px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 8px 24px rgba(13,71,161,.25);
    transition: transform .3s ease;
}
.why-card:hover .icon { transform: scale(1.1) rotate(6deg); }
.why-card h3 { font-size: 17.5px; color: var(--text-dark); margin: 0 0 10px; font-weight: 700; }
.why-card p { font-size: 14px; margin: 0; color: var(--text); line-height: 1.68; }

/* ── 7. APPROACH ──────────────────────────────────────────── */

.approach-section { overflow: hidden; }
.approach-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.approach-tab {
    padding: 10px 22px;
    border: 2px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    background: var(--white);
    transition: all .22s;
    color: var(--text-dark);
}
.approach-tab.active, .approach-tab:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(13,71,161,.25);
}
.approach-panel { display: none; margin-bottom: 36px; }
.approach-panel.active { display: block; animation: fadeSlideUp .35s ease; }
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}
@keyframes approachFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
}
.approach-showcase {
    display: flex;
    align-items: center;
    gap: 44px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.approach-visual {
    flex: 0 0 144px;
    width: 144px; height: 144px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 52px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13,71,161,.26);
}
.approach-visual img { width: 100%; height: 100%; object-fit: cover; }
.approach-copy { flex: 1; }
.approach-copy h4 { margin: 0 0 14px; font-size: 22px; color: var(--text-dark); font-weight: 700; letter-spacing: -0.3px; }
.approach-copy p { margin: 0; font-size: 15.5px; line-height: 1.78; color: var(--text); }
.approach-cards-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.approach-card {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    padding: 22px 14px;
    text-align: center;
    cursor: pointer;
    transition: all .25s;
}
.approach-card:hover, .approach-card.active {
    border-color: var(--primary);
    box-shadow: 0 8px 28px rgba(13,71,161,.12);
    transform: translateY(-4px);
}
.approach-card.active { background: var(--primary-50); }
.approach-card-icon {
    width: 56px; height: 56px;
    margin: 0 auto 12px;
    border-radius: 16px;
    background: var(--primary-100);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--primary);
    overflow: hidden; transition: all .25s;
}
.approach-card:hover .approach-card-icon,
.approach-card.active .approach-card-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
}
.approach-card-icon img { width: 100%; height: 100%; object-fit: cover; }
.approach-card h5 { margin: 0 0 6px; font-size: 12.5px; color: var(--text-dark); font-weight: 600; }
.approach-card p { margin: 0; font-size: 11.5px; line-height: 1.5; color: var(--text); }

/* ── 8. SERVICES ──────────────────────────────────────────── */

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .3s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card .card-img {
    height: 172px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 52px;
    overflow: hidden;
    position: relative;
}
.service-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover .card-img img { transform: scale(1.06); }
.service-card .card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,71,161,.55) 0%, transparent 55%);
    opacity: 0; transition: opacity .3s;
}
.service-card:hover .card-img::after { opacity: 1; }
.service-card .card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 17px; margin: 0 0 10px; color: var(--text-dark); font-weight: 700; }
.service-card p { font-size: 14px; margin: 0 0 auto; color: var(--text); line-height: 1.65; padding-bottom: 16px; }
.service-card .btn-read-more,
.blog-card .btn-read-more { margin-top: 4px; }
.service-card:hover .btn-read-more .fa-arrow-right,
.blog-card:hover .btn-read-more .fa-arrow-right { transform: translateX(4px); transition: transform .2s ease; }
.industry-card .btn-read-more { margin-top: 10px; pointer-events: none; }

/* ── 9. INDUSTRIES ────────────────────────────────────────── */

.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.industry-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 295px;
    display: flex;
    align-items: flex-end;
    transition: transform .32s ease;
    text-decoration: none;
}
.industry-card:hover { transform: translateY(-9px); }
.industry-card .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,45,107,.92) 0%, rgba(8,45,107,.38) 55%, transparent 100%);
    transition: background .35s;
}
.industry-card:hover .overlay {
    background: linear-gradient(to top, rgba(8,45,107,.96) 0%, rgba(8,45,107,.65) 60%, rgba(8,45,107,.18) 100%);
}
.industry-card img.bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.industry-card:hover img.bg { transform: scale(1.08); }
.industry-card .content {
    position: relative; z-index: 1;
    padding: 26px; color: #fff; width: 100%;
}
.industry-card h3 { margin: 0 0 8px; font-size: 19px; font-weight: 700; }
.industry-card p { font-size: 13px; opacity: .85; margin: 0 0 14px; line-height: 1.55; }
.industry-card .btn-sm {
    color: var(--accent);
    font-weight: 700;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.industry-card:hover .btn-sm { gap: 10px; }

/* ── 10. PRODUCTS ─────────────────────────────────────────── */

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 38px 26px;
    text-align: center;
    transition: all .3s ease;
    display: flex; flex-direction: column; align-items: center;
    text-decoration: none;
    color: inherit;
}
.product-card:hover { border-color: var(--primary); box-shadow: var(--shadow-xl); transform: translateY(-7px); color: inherit; }
.product-card .icon {
    width: 78px; height: 78px;
    background: var(--primary-100);
    border-radius: 22px;
    display: flex; align-items: center; justify-content: center;
    font-size: 34px; color: var(--primary);
    margin-bottom: 20px;
    transition: all .3s ease;
}
.product-card:hover .icon {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(13,71,161,.3);
    transform: scale(1.1);
}
.product-card h3 { margin: 0 0 10px; color: var(--text-dark); font-size: 17.5px; font-weight: 700; }
.product-card p { font-size: 14px; margin: 0; color: var(--text); line-height: 1.68; }

/* ── 11. PORTFOLIO ────────────────────────────────────────── */

.portfolio-type-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 32px; }
.portfolio-type-tab {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 26px;
    border: 2px solid var(--border);
    border-radius: 50px;
    background: var(--white);
    font-weight: 600; font-size: 14.5px;
    cursor: pointer; transition: all .22s;
    color: var(--text-dark);
}
.portfolio-type-tab .count {
    background: var(--primary-100);
    color: var(--primary);
    font-size: 12px; padding: 2px 9px;
    border-radius: 20px; font-weight: 700;
}
.portfolio-type-tab.active, .portfolio-type-tab:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(13,71,161,.3);
}
.portfolio-type-tab.active .count, .portfolio-type-tab:hover .count {
    background: rgba(255,255,255,.25); color: #fff;
}
.portfolio-type-panel { display: none; }
.portfolio-type-panel.active { display: block; animation: approachFade .3s ease; }
.portfolio-empty {
    text-align: center; color: var(--text);
    padding: 50px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
}
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-grid--mobile { grid-template-columns: repeat(4, 1fr); }
.portfolio-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all .3s ease;
    color: inherit;
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; color: inherit; }
.portfolio-thumb { height: 225px; overflow: hidden; background: var(--bg-light); position: relative; }
.portfolio-card--mobile .portfolio-thumb { height: 290px; }
.portfolio-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    transition: transform .5s ease;
}
.portfolio-card--mobile .portfolio-thumb img { object-fit: contain; padding: 12px; background: #f1f5f9; }
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.05); }
.portfolio-thumb::after {
    content: '\f06e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff;
    background: rgba(13,71,161,.62);
    opacity: 0; transition: opacity .3s;
    pointer-events: none;
}
.portfolio-card:hover .portfolio-thumb::after { opacity: 1; }
.portfolio-body { padding: 22px; }
.portfolio-cat { font-size: 11px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; }
.portfolio-body h3 { margin: 8px 0 6px; font-size: 17px; color: var(--text-dark); font-weight: 700; }
.portfolio-body p { margin: 0; font-size: 13.5px; color: var(--text); }

/* Pagination */
.pagination-wrap { display: flex; justify-content: center; margin-top: 2rem; width: 100%; overflow-x: auto; }
.pagination-wrap .pagination { margin: 0; flex-wrap: wrap; justify-content: center; gap: 4px; }
.pagination-wrap .page-link { border-radius: 8px; min-width: 40px; text-align: center; }

/* ── 12. CONTACT CTA ──────────────────────────────────────── */

.contact-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 65%, #1e6fd9 100%);
    padding: 92px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.contact-cta::before {
    content: '';
    position: absolute;
    top: -90px; right: -90px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    pointer-events: none;
}
.contact-cta::after {
    content: '';
    position: absolute;
    bottom: -110px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.contact-cta-info .hero-badge { margin-bottom: 20px; }
.contact-cta-info h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    margin: 0 0 16px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.6px;
}
.contact-cta-info > p { opacity: .88; font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.contact-info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.contact-info-list li { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 500; }
.contact-info-list .icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,.15);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 16px;
}
/* Glassmorphism form */
.contact-form {
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 22px;
    padding: 36px;
}
.contact-form .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 10px;
    margin-bottom: 14px;
    font-size: 15px;
    background: rgba(255,255,255,.11);
    color: #fff;
    outline: none;
    transition: border .22s, background .22s;
    font-family: var(--font);
}
.contact-form .form-control::placeholder { color: rgba(255,255,255,.58); }
.contact-form .form-control:focus {
    border-color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.17);
}
.contact-form textarea.form-control { min-height: 120px; resize: vertical; }
.contact-form .btn-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    transition: all .25s;
    box-shadow: 0 6px 22px rgba(255,107,53,.42);
    font-family: var(--font);
}
.contact-form .btn-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,107,53,.52);
}

/* ── 13. BLOG ─────────────────────────────────────────────── */

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all .3s ease;
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-xl); border-color: transparent; }
.blog-card .thumb { height: 210px; background: var(--bg-light); overflow: hidden; position: relative; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.blog-card:hover .thumb img { transform: scale(1.05); }
.blog-card .body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 18px; margin: 0 0 10px; font-weight: 700; line-height: 1.4; }
.blog-card h3 a { color: var(--text-dark); transition: color .2s; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 14px; color: var(--text); line-height: 1.68; margin: 0 0 auto; padding-bottom: 18px; }

/* ── 14. PAGE BANNER ──────────────────────────────────────── */

.page-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 65%, #1e6fd9 100%);
    padding: 72px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: -70px; right: -70px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.055);
    pointer-events: none;
}
.page-banner h1 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -0.6px;
    position: relative;
}
.breadcrumb { font-size: 14px; opacity: .78; position: relative; }
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: var(--accent); }

/* Content / detail pages */
.content-page { padding: 64px 0; }
.content-page .prose { max-width: 820px; }
.content-page .prose h2,
.content-page .prose h3 { color: var(--text-dark); }

/* ── 15. FOOTER ───────────────────────────────────────────── */

.site-footer { background: var(--dark); color: #94a3b8; padding: 72px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 46px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-brand .footer-logo img { height: 50px; filter: brightness(0) invert(1); opacity: .84; }
.footer-brand .logo-text { color: #fff; font-size: 22px; font-weight: 800; letter-spacing: -0.3px; }
.footer-brand .logo-text span { color: var(--accent); }
.footer-about-text { font-size: 14px; line-height: 1.78; margin: 0 0 22px; color: #94a3b8; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: #94a3b8; font-size: 16px;
    transition: all .25s;
}
.footer-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}
.footer-grid h4 {
    color: #fff;
    font-size: 15px;
    margin: 0 0 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 13px;
}
.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 2px;
    background: var(--accent);
    border-radius: 1px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a {
    color: #94a3b8; font-size: 14px;
    transition: all .22s;
    display: inline-flex; align-items: center; gap: 6px;
}
.footer-grid a:hover { color: #fff; padding-left: 5px; }
/* Override for social links */
.footer-social a { padding-left: 0 !important; }
.footer-contact ul { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex; gap: 13px;
    margin-bottom: 16px; font-size: 14px;
    align-items: flex-start; color: #94a3b8;
}
.footer-contact .icon {
    width: 36px; height: 36px;
    background: rgba(255,107,53,.14);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--accent); font-size: 14px;
}
.footer-bottom {
    padding: 22px 0;
    font-size: 13px;
    color: #64748b;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { margin: 0; }
.footer-bottom-links { display: flex; gap: 4px; }
.footer-bottom-links a { color: var(--accent); padding: 0 8px; }
.footer-bottom-links a:hover { color: #fff; padding-left: 8px; }

/* ── 16. SCROLL TO TOP ────────────────────────────────────── */

.scroll-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff; border: none;
    border-radius: 50%; cursor: pointer;
    box-shadow: var(--shadow-primary);
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    z-index: 998;
    opacity: 0; visibility: hidden;
    transform: translateY(14px);
    transition: all .32s ease;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(13,71,161,.42); }

/* ── 17. REVEAL ANIMATIONS ────────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── 18. MISC ─────────────────────────────────────────────── */

.btn-view-more { margin-top: 2rem !important; }
.text-center { text-align: center; }
body.nav-open { overflow: hidden; }

/* ── 21. PROSE / RICH CONTENT ─────────────────────────────── */

.prose {
    font-size: 16px;
    line-height: 1.84;
    color: var(--text);
}
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    color: var(--text-dark);
    margin-top: 38px;
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.3px;
}
.prose h1:first-child, .prose h2:first-child { margin-top: 0; }
.prose h2 { font-size: 26px; }
.prose h3 { font-size: 20px; }
.prose h4 { font-size: 17.5px; }
.prose p  { margin: 0 0 18px; }
.prose ul, .prose ol { padding-left: 24px; margin: 0 0 18px; }
.prose li { margin-bottom: 8px; line-height: 1.72; }
.prose img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 28px 0;
    box-shadow: var(--shadow-lg);
}
.prose a { color: var(--primary); text-decoration: underline; }
.prose a:hover { color: var(--accent); }
.prose strong { color: var(--text-dark); font-weight: 700; }
.prose em { font-style: italic; }
.prose code {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 5px;
    font-size: .9em;
    font-family: 'Courier New', monospace;
}
.prose pre {
    background: var(--dark);
    color: #e2e8f0;
    padding: 20px 24px;
    border-radius: var(--radius);
    overflow-x: auto;
    margin: 24px 0;
}
.prose blockquote {
    border-left: 4px solid var(--accent);
    padding: 16px 24px;
    margin: 28px 0;
    background: var(--primary-50);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 17px;
    font-style: italic;
    color: var(--text-dark);
}
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.prose th, .prose td { padding: 12px 16px; border: 1px solid var(--border); text-align: left; }
.prose th { background: var(--primary-50); font-weight: 600; color: var(--text-dark); }
.prose hr { border: none; border-top: 2px solid var(--border); margin: 36px 0; }

/* ── 22. DETAIL / INNER PAGES ─────────────────────────────── */

.detail-page { padding: 68px 0 84px; }
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
/* Featured image */
.detail-hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--shadow-lg);
    line-height: 0;
}
.detail-hero-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.detail-hero-img:hover img { transform: scale(1.02); }

/* Lead paragraph */
.detail-lead {
    font-size: 17.5px;
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 30px;
    padding: 20px 24px;
    border-left: 4px solid var(--accent);
    background: var(--primary-50);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-weight: 500;
}

/* Bottom CTA box */
.detail-cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 70%, #1e6fd9 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    margin-top: 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.detail-cta-box::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;
}
.detail-cta-box h3 {
    font-size: 24px;
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: -0.3px;
    position: relative;
}
.detail-cta-box p { opacity: .88; margin: 0 0 24px; font-size: 16px; position: relative; }
.btn-detail-cta {
    background: var(--accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(255,107,53,.42);
    transition: all .25s;
    position: relative;
}
.btn-detail-cta:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,107,53,.52);
    gap: 14px;
}

/* ── 23. SIDEBAR ──────────────────────────────────────────── */

.detail-sidebar { position: sticky; top: 88px; }

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}
.widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
    position: relative;
    letter-spacing: -0.2px;
}
.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 38px; height: 2px;
    background: var(--accent);
    border-radius: 1px;
}
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { border-bottom: 1px solid var(--border-light); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: all .22s;
}
.sidebar-list i {
    color: var(--primary);
    font-size: 13px;
    width: 20px;
    flex-shrink: 0;
    text-align: center;
}
.sidebar-list a:hover { color: var(--primary); padding-left: 6px; }
.sidebar-list li.active a { color: var(--primary); font-weight: 700; }

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
}
.sidebar-cta-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,.18);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
}
.sidebar-cta h4 { font-size: 18px; margin: 0 0 8px; font-weight: 700; }
.sidebar-cta p { font-size: 13.5px; opacity: .88; margin: 0 0 20px; line-height: 1.6; }
.btn-sidebar-cta {
    background: var(--accent);
    color: #fff;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
    transition: all .25s;
    margin-bottom: 10px;
}
.btn-sidebar-cta:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.btn-sidebar-call {
    background: rgba(255,255,255,.15);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
    transition: all .25s;
    border: 1px solid rgba(255,255,255,.25);
}
.btn-sidebar-call:hover { background: rgba(255,255,255,.25); color: #fff; }

/* Product icon hero */
.product-detail-icon {
    width: 120px; height: 120px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 28px;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px; color: #fff;
    margin: 0 0 32px;
    box-shadow: var(--shadow-primary);
}

/* ── 24. BLOG DETAIL ──────────────────────────────────────── */

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}
.blog-detail-meta i { color: var(--accent); font-size: 13px; }
.blog-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--shadow-lg);
    line-height: 0;
}
.blog-detail-img img {
    width: 100%; height: 440px;
    object-fit: cover;
    display: block;
}

/* Social share */
.blog-share {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.share-label i { color: var(--accent); }
.share-links { display: flex; gap: 8px; }
.share-btn {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #fff;
    transition: all .25s;
}
.share-btn:hover { transform: translateY(-3px); color: #fff; }
.share-fb  { background: #1877f2; }
.share-fb:hover  { background: #1464cc; }
.share-tw  { background: #1da1f2; }
.share-tw:hover  { background: #0c85d0; }
.share-li  { background: #0a66c2; }
.share-li:hover  { background: #0854a3; }
.share-wa  { background: #25d366; }
.share-wa:hover  { background: #1da851; }

/* Sidebar recent posts */
.recent-post-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    color: inherit;
    transition: all .22s;
    align-items: center;
}
.recent-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post-item:hover { color: var(--primary); padding-left: 4px; }
.recent-post-img {
    width: 68px; height: 58px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-light);
}
.recent-post-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-body { flex: 1; min-width: 0; }
.recent-post-body h5 {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 5px;
    line-height: 1.45;
    transition: color .2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.recent-post-item:hover .recent-post-body h5 { color: var(--primary); }
.recent-post-body span { font-size: 12px; color: var(--text-muted); }

/* ── 25. WHATSAPP WIDGET ──────────────────────────────────── */

.wa-widget {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 997;
}
.wa-btn {
    width: 54px; height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff;
    box-shadow: 0 6px 24px rgba(37,211,102,.42);
    transition: all .28s;
    text-decoration: none;
    position: relative;
}
.wa-btn::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    background: #25d366;
    animation: waPulse 2.5s ease-out infinite;
    z-index: -1;
}
@keyframes waPulse {
    0%   { transform: scale(1); opacity: .65; }
    100% { transform: scale(1.85); opacity: 0; }
}
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,.58); color: #fff; }

/* ── 26. GLOBAL SMOOTHNESS ────────────────────────────────── */

/* Smooth image loads */
img { transition: opacity .3s ease; }

/* Better focus rings */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Better selection color */
::selection { background: rgba(13,71,161,.18); color: var(--text-dark); }

/* ── 27. SCROLL PROGRESS BAR ──────────────────────────────── */

.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(to right, var(--primary), var(--accent), var(--primary-light));
    background-size: 200% 100%;
    animation: progressShimmer 2s linear infinite;
    z-index: 9999;
    transition: width .08s linear;
    pointer-events: none;
}
@keyframes progressShimmer {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* ── 28. FLOAT ACTION BUTTONS ─────────────────────────────── */

.float-actions {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 997;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.float-btn {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .28s ease;
    position: relative;
    flex-shrink: 0;
}

/* Tooltip */
.float-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: rgba(15,23,42,.92);
    color: #fff;
    padding: 6px 13px;
    border-radius: 7px;
    font-size: 12.5px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all .22s ease;
    pointer-events: none;
    font-family: var(--font);
    letter-spacing: .1px;
    backdrop-filter: blur(4px);
}
.float-tooltip::after {
    content: '';
    position: absolute;
    top: 50%; right: -5px;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(15,23,42,.92);
    border-right-width: 0;
}
.float-btn:hover .float-tooltip { opacity: 1; transform: translateX(0); }

/* Phone button */
.phone-float-btn {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    box-shadow: var(--shadow-primary);
}
.phone-float-btn::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    background: var(--primary);
    animation: floatPulse 2.8s ease-out infinite;
    z-index: -1;
}
.phone-float-btn i { animation: phoneRing 3.5s ease-in-out infinite; }
.phone-float-btn:hover { transform: scale(1.12); color: #fff; box-shadow: 0 12px 32px rgba(13,71,161,.48); }

@keyframes phoneRing {
    0%, 60%, 100% { transform: rotate(0); }
    10%  { transform: rotate(-20deg); }
    20%  { transform: rotate(20deg); }
    30%  { transform: rotate(-14deg); }
    40%  { transform: rotate(14deg); }
    50%  { transform: rotate(-7deg); }
}

/* WhatsApp button */
.wa-float-btn {
    background: #25d366;
    box-shadow: 0 6px 24px rgba(37,211,102,.42);
}
.wa-float-btn::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    background: #25d366;
    animation: floatPulse 2.5s ease-out infinite .6s;
    z-index: -1;
}
.wa-float-btn:hover { transform: scale(1.12); color: #fff; background: #1da851; box-shadow: 0 12px 32px rgba(37,211,102,.58); }

/* Scroll to top */
.scroll-top-float {
    background: linear-gradient(135deg, #475569, var(--dark));
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    opacity: 0; visibility: hidden;
    transform: translateY(16px) scale(.88);
    font-size: 18px;
}
.scroll-top-float.visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.scroll-top-float:hover { transform: translateY(-3px) scale(1); box-shadow: 0 10px 28px rgba(0,0,0,.35); }

@keyframes floatPulse {
    0%   { transform: scale(1); opacity: .65; }
    100% { transform: scale(2.0); opacity: 0; }
}

/* ── 29. HERO ANIMATED GRADIENT + BLOBS ───────────────────── */

/* Override: animated multi-color gradient */
.hero-section {
    background: linear-gradient(-45deg, #082d6b, #0d47a1, #1565c0, #1e72d8);
    background-size: 400% 400%;
    animation: heroGradient 14s ease infinite;
}
@keyframes heroGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}
.hero-blob-1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
    top: -130px; right: 5%;
    animation: blobDrift 18s ease-in-out infinite;
}
.hero-blob-2 {
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(255,107,53,.1) 0%, transparent 70%);
    bottom: 5%; right: 22%;
    animation: blobDrift 14s ease-in-out infinite reverse;
}
.hero-blob-3 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
    top: 30%; left: 3%;
    animation: blobDrift 20s ease-in-out infinite 4s;
}
.hero-blob-4 {
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(255,107,53,.08) 0%, transparent 70%);
    top: 15%; left: 30%;
    animation: blobDrift 16s ease-in-out infinite 2s reverse;
}
@keyframes blobDrift {
    0%, 100% { transform: translate(0px, 0px) scale(1); }
    25%       { transform: translate(22px, -28px) scale(1.05); }
    50%       { transform: translate(-16px, 18px) scale(.96); }
    75%       { transform: translate(12px, -10px) scale(1.02); }
}

/* ── 30. CARD SHIMMER SWEEP EFFECT ────────────────────────── */

/* Shimmer glide on hover - white light sweep across cards */
.why-card,
.service-card,
.blog-card,
.product-card,
.portfolio-card {
    position: relative;
    overflow: hidden;
}
.why-card::before,
.service-card::before,
.blog-card::before,
.product-card::before,
.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0; left: -110%;
    width: 60%; height: 100%;
    background: linear-gradient(
        115deg,
        transparent 20%,
        rgba(255,255,255,.16) 50%,
        transparent 80%
    );
    transform: skewX(-18deg);
    z-index: 2;
    pointer-events: none;
    transition: left 0s linear;
}
.why-card:hover::before,
.service-card:hover::before,
.blog-card:hover::before,
.product-card:hover::before,
.portfolio-card:hover::before {
    left: 150%;
    transition: left .85s ease;
}

/* ── 31. BUTTON RIPPLE EFFECT ─────────────────────────────── */

.btn-hero,
.btn-detail-cta,
.btn-sidebar-cta,
.header-cta .btn-primary,
.nav-cta-mobile .btn-primary,
.btn-submit,
.btn-view-more,
.btn-read-more {
    position: relative;
    overflow: hidden;
}
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    transform: translate(-50%, -50%) scale(0);
    animation: rippleGrow .7s ease-out forwards;
    pointer-events: none;
    width: 6px; height: 6px;
}
@keyframes rippleGrow {
    to { transform: translate(-50%, -50%) scale(120); opacity: 0; }
}

/* ── 32. BUTTON HOVER GLOW ────────────────────────────────── */

.btn-hero:hover {
    box-shadow: 0 0 0 4px rgba(255,107,53,.22), 0 10px 30px rgba(255,107,53,.42);
}
.header-cta .btn-primary:hover {
    box-shadow: 0 0 0 4px rgba(13,71,161,.15), 0 8px 28px rgba(13,71,161,.38);
}
.btn-detail-cta:hover {
    box-shadow: 0 0 0 4px rgba(255,107,53,.2), 0 10px 28px rgba(255,107,53,.52);
}
.contact-form .btn-submit:hover {
    box-shadow: 0 0 0 4px rgba(255,107,53,.2), 0 10px 28px rgba(255,107,53,.52);
}

/* ── 33. STAGGER ANIMATION ON GRID CHILDREN ───────────────── */

/* Applied via JS (data-stagger) so .reveal animations play sequentially */
.why-grid       .why-card,
.services-grid  .service-card,
.industries-grid .industry-card,
.products-grid  .product-card,
.blog-grid      .blog-card,
.portfolio-grid .portfolio-card,
.process-grid   .process-card {
    transition-property: opacity, transform, box-shadow, border-color;
    transition-duration: .65s;
    transition-timing-function: cubic-bezier(.23,1,.32,1);
}

/* ── 34. ANIMATED SECTION DOT BACKGROUND ──────────────────── */

/* Subtle moving dot-grid on the "Why Choose" and "Process" sections */
.section.bg-light-section.process-section,
.section:not(.bg-light-section):has(.why-grid) {
    position: relative;
    overflow: hidden;
}

/* Floating dot grid overlay - CSS-only */
.process-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(13,71,161,.07) 1.5px, transparent 1.5px);
    background-size: 36px 36px;
    animation: dotScroll 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}
.process-section > .container { position: relative; z-index: 1; }
@keyframes dotScroll {
    from { background-position: 0 0; }
    to   { background-position: 36px 36px; }
}

/* ── 35. HERO IMAGE PARALLAX ──────────────────────────────── */

.hero-image { perspective: 800px; }
.hero-image img { transform-style: preserve-3d; }

/* ── 36. ENHANCED ICON HOVER BOUNCE ──────────────────────── */

/* why-card, product-card icon bounce */
.why-card:hover .icon {
    animation: iconBounce .5s cubic-bezier(.36,.07,.19,.97) both;
}
.product-card:hover .icon {
    animation: iconBounce .5s cubic-bezier(.36,.07,.19,.97) both;
}
.process-card:hover .process-icon {
    animation: iconBounce .5s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes iconBounce {
    0%   { transform: scale(1) rotate(0); }
    30%  { transform: scale(1.18) rotate(8deg); }
    60%  { transform: scale(.96) rotate(-4deg); }
    80%  { transform: scale(1.06) rotate(2deg); }
    100% { transform: scale(1.1) rotate(0); }
}

/* ── 37. CONTACT CTA ANIMATED CIRCLES ────────────────────── */

/* Already has ::before/::after; add rotation to them */
.contact-cta::before {
    animation: ctaOrb1 18s linear infinite;
}
.contact-cta::after {
    animation: ctaOrb2 24s linear infinite reverse;
}
@keyframes ctaOrb1 {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(-30px, 20px) scale(1.1); }
    66%  { transform: translate(20px, -20px) scale(.9); }
    100% { transform: translate(0, 0) scale(1); }
}
@keyframes ctaOrb2 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(25px, -30px) scale(1.08); }
    100% { transform: translate(0, 0) scale(1); }
}

/* ── 38. SIDEBAR WIDGET HOVER ─────────────────────────────── */

.sidebar-widget {
    transition: transform .28s ease, box-shadow .28s ease;
}
.sidebar-widget:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ── 39. PAGE LOAD FADE-IN ────────────────────────────────── */

@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}
.page-loaded main,
.page-loaded .hero-section,
.page-loaded .stats-bar {
    animation: pageFadeIn .5s ease both;
}

/* ── 40. NAV LINK ANIMATED UNDERLINE ──────────────────────── */

.main-nav > li > a,
.main-nav .nav-item-row > a {
    position: relative;
}
.main-nav > li > a::after,
.main-nav .nav-item-row > a::after {
    /* override the dropdown arrow on non-mega items */
    content: none;
}
.main-nav > li:not(.has-mega) > a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform .25s ease;
    font-family: inherit; /* cancel FA font override */
}
.main-nav > li:not(.has-mega) > a:hover::after,
.main-nav > li:not(.has-mega).active > a::after {
    transform: scaleX(1);
}

/* ── 41. SECTION TITLE GRADIENT TEXT ──────────────────────── */

.section-title h2 {
    background: linear-gradient(135deg, var(--text-dark) 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── 42. DETAIL PAGE CTA ANIMATED BG ──────────────────────── */

.detail-cta-box {
    background: linear-gradient(-45deg, #082d6b, #0d47a1, #1565c0, #1e72d8);
    background-size: 300% 300%;
    animation: heroGradient 10s ease infinite;
}
.sidebar-cta {
    background: linear-gradient(-45deg, #082d6b, #0d47a1, #1565c0, #1e72d8);
    background-size: 300% 300%;
    animation: heroGradient 12s ease infinite 2s;
}

/* ── 43. FOOTER SOCIAL HOVER COLORS ───────────────────────── */

.footer-social a:nth-child(1):hover { background: #1877f2; }  /* Facebook */
.footer-social a:nth-child(2):hover { background: #0a66c2; }  /* LinkedIn */
.footer-social a:nth-child(3):hover { background: #1da1f2; }  /* Twitter  */
.footer-social a:nth-child(4):hover { background: #e1306c; }  /* Instagram*/

/* ── 44. REDUCED MOTION SAFETY ────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .hero-section { animation: none; }
    .hero-blob { animation: none; }
    .hero-image img { animation: none; }
    .phone-float-btn i { animation: none; }
    .wa-float-btn::before,
    .phone-float-btn::before { animation: none; }
    .scroll-progress { animation: none; }
    .process-section::before { animation: none; }
    .contact-cta::before,
    .contact-cta::after { animation: none; }
    .detail-cta-box,
    .sidebar-cta { animation: none; }
    * { transition-duration: .01ms !important; }
}

/* ── 27. DETAIL PAGE RESPONSIVE ───────────────────────────── */

@media (max-width: 991px) {
    .detail-layout { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; }
    .detail-hero-img img { height: 300px; }
    .blog-detail-img img { height: 260px; }
    .detail-cta-box { padding: 32px 26px; }
    .detail-cta-box h3 { font-size: 22px; }
    .blog-share { flex-direction: column; align-items: flex-start; gap: 12px; }
    .wa-widget { bottom: 80px; right: 20px; }
}
@media (max-width: 575px) {
    .detail-page { padding: 44px 0 60px; }
    .detail-hero-img img { height: 220px; }
    .blog-detail-img img { height: 200px; }
    .detail-lead { font-size: 15.5px; padding: 16px 18px; }
    .detail-cta-box { padding: 28px 20px; }
    .prose h2 { font-size: 21px; }
    .prose h3 { font-size: 18px; }
    .sidebar-widget { padding: 22px 18px; }
    .wa-widget { bottom: 72px; right: 14px; }
    .wa-btn { width: 48px; height: 48px; font-size: 22px; }
    .scroll-top { bottom: 14px; right: 14px; }
}

/* ── 19. PROCESS STEPS (replaces approach tabs) ──────────── */

.process-section { overflow: visible; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.process-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px 34px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: all .32s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(13,71,161,.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
}
.process-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform .35s ease;
    border-radius: 0 0 2px 2px;
}
.process-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.process-card:hover::before { opacity: 1; }
.process-card:hover::after  { transform: scaleX(1); }

/* Ghost large number in background */
.process-step-num {
    position: absolute;
    top: -8px; right: 14px;
    font-size: 72px;
    font-weight: 900;
    color: var(--primary);
    opacity: .055;
    line-height: 1;
    letter-spacing: -4px;
    pointer-events: none;
    user-select: none;
    font-family: var(--font);
}

/* Small numbered badge */
.process-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    margin: 0 0 22px;
    letter-spacing: -0.5px;
    box-shadow: 0 4px 12px rgba(13,71,161,.28);
    flex-shrink: 0;
}

/* Icon circle */
.process-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 22px;
    font-size: 34px;
    color: #fff;
    box-shadow: 0 10px 28px rgba(13,71,161,.26);
    transition: transform .32s ease, box-shadow .32s ease;
    overflow: hidden;
    flex-shrink: 0;
}
.process-card:hover .process-icon {
    transform: scale(1.12) rotate(6deg);
    box-shadow: 0 14px 36px rgba(13,71,161,.38);
}
.process-icon img { width: 100%; height: 100%; object-fit: cover; }

.process-card h3 {
    font-size: 18.5px;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.2px;
}
.process-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.72;
    margin: 0;
}

/* ── 19. RESPONSIVE — 991px ───────────────────────────────── */

@media (max-width: 991px) {
    /* Header */
    .site-header .header-inner { flex-wrap: nowrap; align-items: center; position: relative; padding: 8px 0; }
    .site-header .logo img { height: 52px; max-height: 52px; }
    .site-header .header-nav {
        position: absolute; top: 100%; left: 0; right: 0; width: 100%;
        flex: none; z-index: 1001;
        background: var(--white);
        box-shadow: 0 12px 32px rgba(0,0,0,.1);
        max-height: 0; overflow: hidden;
        opacity: 0; visibility: hidden;
        transition: max-height .32s ease, opacity .22s ease, visibility .22s;
    }
    .site-header .header-nav.is-open {
        max-height: min(92vh, 720px);
        overflow-x: hidden; overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 1; visibility: visible;
    }
    .main-nav { display: flex; flex-direction: column; align-items: stretch; width: 100%; margin: 0; padding: 8px 0 12px; }
    .main-nav.open { display: flex; }
    .mobile-toggle { display: flex; align-items: center; justify-content: center; margin-left: auto; }
    .mega-toggle { display: flex; }
    .main-nav > li { width: 100%; border-bottom: 1px solid var(--border); }
    .main-nav > li > a, .nav-item-row > a { padding: 14px 16px; border-radius: 0; font-weight: 600; }
    .main-nav .nav-item-row { display: flex; align-items: stretch; width: 100%; }
    .main-nav .has-mega > a::after, .main-nav .has-mega .nav-item-row > a::after { display: none; }
    .has-mega:hover .mega-menu, .has-mega:hover .mega-menu-services { transform: none; left: auto; right: auto; }
    .has-mega:not(.open) .mega-menu { display: none !important; opacity: 0; visibility: hidden; }
    .mega-menu {
        position: static; top: auto; left: auto; right: auto; transform: none !important;
        min-width: 0; max-width: 100%; width: 100%; opacity: 1; visibility: visible;
        box-shadow: none; display: none; padding: 0 12px 12px;
        border-top: none; border-radius: 0; z-index: auto;
    }
    .has-mega.open .mega-menu { display: block; opacity: 1; visibility: visible; }
    .main-nav > li.has-mega, .main-nav > li.has-mega-services { position: relative; overflow: visible; }
    .has-mega .mega-menu-services { left: auto; right: auto; transform: none !important; width: 100%; min-width: 0; max-width: 100%; padding: 0 12px 12px; }
    .has-mega.open .mega-menu-services { display: block; }
    .mega-grid { grid-template-columns: 1fr; gap: 12px; }
    .mega-menu-services .mega-grid-services-top { grid-template-columns: 1fr; }
    .mega-marketing-list { grid-template-columns: 1fr 1fr; gap: 2px 12px; }
    .mega-row-marketing { margin-top: 12px; padding-top: 12px; }
    /* Hero */
    .hero-section { min-height: 0; }
    .hero-slide { flex-direction: column; text-align: center; min-height: 0; padding: 52px 0 80px; gap: 28px; }
    .hero-content { max-width: 100%; }
    .hero-content h1 { font-size: 28px; margin-bottom: 14px; letter-spacing: -0.5px; }
    .hero-content p { font-size: 15.5px; margin-bottom: 22px; }
    .hero-image img { max-height: 220px; animation: none; }
    .hero-dots { bottom: 18px; }
    /* Stats */
    .stats-bar { margin-top: -22px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
    .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
    /* Grids */
    .why-grid, .services-grid, .industries-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-showcase { flex-direction: column; text-align: center; padding: 28px; gap: 24px; }
    .approach-copy { text-align: center; }
    .approach-cards-row { grid-template-columns: repeat(3, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid--mobile { grid-template-columns: repeat(2, 1fr); }
    /* Contact */
    .cta-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-cta-info h2 { font-size: 30px; }
    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom .container { justify-content: center; text-align: center; }
    .footer-bottom-links { justify-content: center; }
}

/* ── 20. RESPONSIVE — 575px ───────────────────────────────── */

@media (max-width: 575px) {
    .top-bar { font-size: 12px; padding: 7px 0; }
    .section { padding: 64px 0; }
    .contact-cta { padding: 64px 0; }
    .hero-slide { padding: 38px 0 60px; }
    .hero-content h1 { font-size: 23px; letter-spacing: -0.3px; }
    .hero-image img { max-height: 170px; }
    .mega-marketing-list { grid-template-columns: 1fr; }
    .why-grid, .services-grid, .industries-grid, .products-grid, .blog-grid, .portfolio-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .approach-cards-row { grid-template-columns: 1fr 1fr; }
    .portfolio-grid--mobile { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
    .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
    .contact-form { padding: 24px 20px; }
    .scroll-top { bottom: 16px; right: 16px; width: 42px; height: 42px; font-size: 16px; }
    .stat-number { font-size: 32px; }
    .stat-suffix { font-size: 20px; }
    .float-actions { bottom: 14px; right: 14px; gap: 9px; }
    .float-btn { width: 46px; height: 46px; font-size: 18px; }
    .float-tooltip { display: none; }
}
