/*
Theme Name: TechWork360
Theme URI: https://techwork360.com
Author: TechWork360
Author URI: https://techwork360.com
Description: A professional digital agency theme for TechWork360 featuring WordPress, Shopify, WooCommerce, SEO, UI/UX Design and eCommerce services.
Version: 2.1.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: techwork360
Tags: business, agency, one-page, responsive, custom-colors
*/

/* ============================================================
   RESET & ROOT VARIABLES
============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue:       #1E5BE5;
    --blue-dark:  #1344C0;
    --blue-light: #EEF3FF;
    --teal:       #00C8A0;
    --dark:       #0D1B2A;
    --dark2:      #1A2B3C;
    --text:       #3D4F60;
    --muted:      #7A8A99;
    --border:     #E0E8F0;
    --white:      #FFFFFF;
    --light-bg:   #F4F7FB;
    --font:       'Inter', 'Segoe UI', Arial, sans-serif;
    --radius:     10px;
    --radius-lg:  18px;
    --shadow-sm:  0 2px 12px rgba(30,91,229,0.08);
    --shadow:     0 6px 28px rgba(30,91,229,0.13);
    --shadow-lg:  0 14px 48px rgba(30,91,229,0.18);
    --trans:      all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
a   { text-decoration: none; transition: var(--trans); }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad { padding: 90px 0; }

/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.tag-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 14px;
}
.tag-label::before,
.tag-label::after {
    content: '—';
    color: var(--blue);
    font-weight: 400;
}

.sec-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.sec-title span { color: var(--blue); }

.sec-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 580px;
    line-height: 1.8;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--trans);
    font-family: var(--font);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--blue);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30,91,229,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}
.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--blue);
}
.btn-white:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}
/* WhatsApp button */
.btn-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    border: 2px solid #25D366;
}
.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
}
.btn-whatsapp-outline {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid #25D366;
}
.btn-whatsapp-outline:hover {
    background: #25D366;
    transform: translateY(-2px);
}
/* nav-wa-btn replaced by nav-wa-chip above */

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 14px 20px 14px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover {
    background: #1da851;
    transform: scale(1.06);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.whatsapp-float-label { color: white; }
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.12); }
}
@media (max-width: 480px) {
    .whatsapp-float { bottom: 16px; right: 16px; padding: 12px 16px 12px 14px; }
    .whatsapp-float-label { display: none; }
    .whatsapp-float { border-radius: 50%; width: 56px; height: 56px; padding: 0; justify-content: center; }
}
.btn-arrow::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s;
}
.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* ============================================================
   TOP INFO BAR (like reference Image 1 & 3)
============================================================ */
#topbar {
    background: var(--dark);
    padding: 9px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
}
.topbar-item .icon {
    width: 16px; height: 16px;
    opacity: 0.7;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
}
.topbar-item a {
    color: rgba(255,255,255,0.75);
}
.topbar-item a:hover { color: var(--teal); }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.topbar-badge {
    background: var(--blue);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    transition: var(--trans);
}
.topbar-badge:hover { background: var(--blue-dark); }

/* ============================================================
   MAIN NAVIGATION
============================================================ */
#site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: var(--trans);
}
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #site-header { top: 46px; } }
.site-logo-img { height: 52px; width: auto; max-width: 185px; display: block; object-fit: contain; }
#site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
/* When mobile menu is open, darken hamburger lines for contrast */
#site-header.menu-open .hamburger span {
    background: var(--dark);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 8px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-mark {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
}
.logo-text {
    font-size: 20px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.5px;
}
.logo-text span { color: var(--blue); }
.logo-sub {
    font-size: 10px;
    color: var(--muted);
    font-weight: 500;
    margin-top: -2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: var(--trans);
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
    background: var(--blue-light);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
/* ── NAV ACTIONS (desktop) ──────────────────────── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* WhatsApp chip — green pill beside CTA button */
.nav-wa-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
    line-height: 1;
}
.nav-wa-chip:hover { background: #1da851; transform: translateY(-1px); }
.nav-wa-chip svg   { flex-shrink: 0; }

/* CTA button sizing in nav */
.nav-cta-btn { padding: 10px 18px !important; font-size: 13px !important; white-space: nowrap; }

/* ── HAMBURGER ─────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 999;
    flex-shrink: 0;
}
.hamburger span {
    width: 24px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
    transform-origin: center;
}

/* Mobile CTA block — hidden on desktop, shown inside mobile menu */
.nav-mobile-cta { display: none; }

/* ── MOBILE NAV BREAKPOINT ─────────────────────── */
@media (max-width: 960px) {
    .hamburger  { display: flex; }
    .nav-actions { display: none; }   /* hidden — CTAs live inside the mobile menu */

    .nav-links {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: rgba(13,27,42,0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: stretch;
        padding: 10px 16px 28px;
        gap: 2px;
        transform: translateY(-110%);
        transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
        z-index: 998;
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links li   { list-style: none; }
    .nav-links a    { color: rgba(255,255,255,0.9); padding: 13px 16px; border-radius: 8px; display: block; font-size: 15px; }
    .nav-links a:hover { background: rgba(255,255,255,0.09); color: #fff; }

    /* Mobile CTA block at bottom of menu */
    .nav-mobile-cta {
        display: flex;
        padding-top: 14px;
        margin-top: 8px;
        border-top: 1px solid rgba(255,255,255,0.12);
        flex-direction: column;
        gap: 8px;
    }
    .nav-mob-book {
        display: block;
        text-align: center;
        padding: 13px 16px;
        background: var(--blue);
        color: #fff !important;
        border-radius: 10px;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        transition: background 0.2s;
    }
    .nav-mob-book:hover { background: var(--blue-dark); }
    .nav-mob-wa {
        display: block;
        text-align: center;
        padding: 13px 16px;
        background: #25D366;
        color: #fff !important;
        border-radius: 10px;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        transition: background 0.2s;
    }
    .nav-mob-wa:hover { background: #1da851; }

    /* Hamburger → X animation */
    .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   CRITICAL: Ensure content is always visible
   (Fixes blank white page issue on all WordPress page loads)
============================================================ */
body {
    visibility: visible !important;
    opacity: 1 !important;
}
main, #main, .site-main,
section, article, .entry-content,
.page-content, .post-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* Hide WordPress default page content areas we don't use */
.page-template-default .entry-content:empty,
.page-template-default .hentry:empty {
    display: none !important;
}

/* ============================================================
   HERO SECTION (inspired by all 3 references)
============================================================ */
#hero {
    background: linear-gradient(135deg, #EEF3FF 0%, #F8FAFE 60%, #EFF6FF 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
}
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-shape-1 {
    position: absolute;
    top: -80px; right: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30,91,229,0.08), rgba(0,200,160,0.06));
}
.hero-shape-2 {
    position: absolute;
    bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(30,91,229,0.05);
}
.hero-dots {
    position: absolute;
    top: 40px; right: 520px;
    width: 120px; height: 120px;
    background-image: radial-gradient(circle, rgba(30,91,229,0.18) 2px, transparent 2px);
    background-size: 18px 18px;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30,91,229,0.10);
    border: 1px solid rgba(30,91,229,0.20);
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}
.hero-tag .dot {
    width: 8px; height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}
.hero-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.hero-title span {
    color: var(--blue);
    position: relative;
    display: inline;
}
.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    border-radius: 2px;
}
.hero-desc {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 34px;
    max-width: 480px;
}
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}
.trust-avatars {
    display: flex;
}
.trust-avatars .av {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border: 2px solid white;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: white;
}
.trust-avatars .av:first-child { margin-left: 0; }
.trust-text { font-size: 13px; color: var(--muted); }
.trust-text strong { color: var(--dark); }

/* Hero Visual */
.hero-visual {
    position: relative;
}
.hero-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--dark);
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    display: block;
}
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: var(--radius-lg);
    display: block;
}
.hero-img-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.85);
    padding: 32px;
}
.hero-img-placeholder .big-icon { font-size: 64px; margin-bottom: 12px; }
.hero-img-placeholder p { font-size: 14px; opacity: 0.7; }
/* Floating stat cards on hero image */
.hero-float-card {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    animation: float-y 3s ease-in-out infinite;
}
.hero-float-card .hfc-icon {
    width: 38px; height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.hfc-blue { background: var(--blue-light); }
.hfc-green { background: rgba(0,200,160,0.12); }
.hero-float-card .hfc-num {
    font-size: 20px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}
.hero-float-card .hfc-label { color: var(--muted); font-size: 11px; font-weight: 600; }
.hfc-top-left  { top: 20px; left: -24px; animation-delay: 0s; }
.hfc-bot-right { bottom: 24px; right: -24px; animation-delay: 1s; }
@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
.hero-rating-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: var(--shadow);
}
.hero-rating-badge .stars { color: #FBBF24; }

/* ============================================================
   SERVICE STRIP (like reference Image 1 — icon boxes row)
============================================================ */
#service-strip {
    background: var(--white);
    padding: 0 0 0;
    position: relative;
    z-index: 2;
}
.service-strip-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 40px;
}
.strip-item {
    padding: 28px 16px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: var(--trans);
    cursor: default;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover {
    background: var(--blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.strip-item:hover .strip-icon { background: rgba(255,255,255,0.18); color: white; }
.strip-item:hover .strip-name { color: white; }
.strip-icon {
    width: 52px; height: 52px;
    background: var(--blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 12px;
    transition: var(--trans);
}
.strip-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    transition: var(--trans);
    line-height: 1.4;
}

/* ============================================================
   CLIENTS / TRUST BAR
============================================================ */
#clients-bar {
    background: var(--light-bg);
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.clients-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.clients-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}
.client-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.client-logo {
    font-size: 16px;
    font-weight: 800;
    color: var(--muted);
    opacity: 0.55;
    transition: var(--trans);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.client-logo:hover { opacity: 1; color: var(--blue); }
.client-logo .cl-icon { font-size: 18px; }
.cl-divider {
    width: 1px; height: 24px;
    background: var(--border);
}

/* ============================================================
   ABOUT SECTION
============================================================ */
#about {
    background: var(--white);
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}
.about-visual-wrap {
    position: relative;
}
.about-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--dark);
    position: relative;
    width: 100%;
    max-width: 520px;
    display: block;
}
.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.about-img-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.8);
}
.about-img-placeholder .big-icon { font-size: 56px; margin-bottom: 10px; }
.about-img-placeholder p { font-size: 13px; opacity: 0.6; }
/* Overlapping second image (like reference 3) */
.about-img-secondary {
    position: absolute;
    bottom: -24px;
    right: -28px;
    width: 220px;
    height: 160px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--blue-dark), #0D2A6E);
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.about-img-secondary .years-num {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    color: white;
}
.about-img-secondary .years-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}
.about-dots {
    position: absolute;
    top: -20px; left: -20px;
    width: 100px; height: 100px;
    background-image: radial-gradient(circle, rgba(30,91,229,0.3) 2px, transparent 2px);
    background-size: 14px 14px;
    border-radius: 8px;
    z-index: -1;
}
/* About content */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0 32px;
}
.about-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.feat-icon-box {
    width: 46px; height: 46px;
    background: var(--blue-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--trans);
}
.about-feat-item:hover .feat-icon-box { background: var(--blue); }
.feat-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.feat-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.about-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.about-phone-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.apc-icon {
    width: 44px; height: 44px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--blue);
}
.apc-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.apc-num { font-size: 16px; font-weight: 800; color: var(--dark); }
.apc-num a { color: var(--dark); }
.apc-num a:hover { color: var(--blue); }

/* ============================================================
   SERVICES SECTION
============================================================ */
#services {
    background: var(--light-bg);
}
.services-header {
    text-align: center;
    margin-bottom: 56px;
}
.services-header .sec-sub { margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.svc-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: var(--trans);
    position: relative;
    overflow: hidden;
    cursor: default;
    min-height: 280px;
}
.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    transform: scaleX(0);
    transition: var(--trans);
    transform-origin: left;
}
.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30,91,229,0.15);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card.featured {
    background: var(--blue);
    border-color: var(--blue);
}
.svc-card.featured .svc-icon-box { background: rgba(255,255,255,0.18); }
.svc-card.featured .svc-num  { color: rgba(255,255,255,0.5); }
.svc-card.featured .svc-name { color: white; }
.svc-card.featured .svc-desc { color: rgba(255,255,255,0.75); }
.svc-card.featured .svc-link { color: rgba(255,255,255,0.9); }
.svc-icon-box {
    width: 60px; height: 60px;
    background: var(--blue-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: var(--trans);
}
.svc-card:not(.featured):hover .svc-icon-box {
    background: var(--blue);
    transform: scale(1.08);
}
.svc-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.svc-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}
.svc-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
}
.svc-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--trans);
}
.svc-link:hover { gap: 10px; }
.services-footer {
    text-align: center;
    margin-top: 48px;
}
.services-footer p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 15px;
}

/* ============================================================
   HOW WE WORK / PROCESS
============================================================ */
#process {
    background: var(--white);
}
.process-header {
    text-align: center;
    margin-bottom: 60px;
}
.process-header .sec-sub { margin: 0 auto; }

/* Grid — connector line via ::before pseudo-element, contained entirely within grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    align-items: start;
}
/* Horizontal line between the 3 circles — scoped to grid, cannot escape */
.process-grid::before {
    content: '';
    position: absolute;
    top: 49px;
    left: calc(16.67% + 50px);
    right: calc(16.67% + 50px);
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    z-index: 0;
    pointer-events: none;
}
.proc-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 28px 40px;
}
.proc-step-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.proc-step-circle {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 28px rgba(30,91,229,0.30);
    transition: var(--trans);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.proc-icon {
    line-height: 1;
    display: block;
}
.proc-step:hover .proc-step-circle {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(30,91,229,0.40);
}
.proc-step-num {
    position: absolute;
    top: -6px; right: -6px;
    width: 28px; height: 28px;
    background: var(--teal);
    color: var(--dark);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    z-index: 3;
}
.proc-step-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0;
}
.proc-step-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
    text-align: left;
}
.proc-step-list {
    text-align: left;
    width: 100%;
}
.proc-step-list li {
    font-size: 13px;
    color: var(--muted);
    padding: 4px 0 4px 22px;
    position: relative;
    line-height: 1.6;
}
.proc-step-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
    font-size: 13px;
}
/* CSS-only entry animation — no JS dependency */
@keyframes procStepIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.proc-step-1 { animation: procStepIn 0.55s ease 0.05s both; }
.proc-step-2 { animation: procStepIn 0.55s ease 0.20s both; }
.proc-step-3 { animation: procStepIn 0.55s ease 0.35s both; }

/* Timeline Promise Bar */
.process-promise {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    border-radius: var(--radius);
    padding: 36px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.pp-item {
    border-right: 1px solid rgba(255,255,255,0.10);
    padding: 0 24px;
}
.pp-item:last-child { border-right: none; }
.pp-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 8px;
}
.pp-value {
    font-size: 22px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
}
.pp-value span { color: var(--teal); }

/* ============================================================
   STATS / COUNTER SECTION
============================================================ */
#stats-section {
    background: var(--blue);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.stats-bg-shape {
    position: absolute;
    top: -40%;
    right: -5%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
}
.stat-block {
    text-align: center;
    padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-block:last-child { border-right: none; }
.stat-icon {
    font-size: 36px;
    margin-bottom: 10px;
}
.stat-num {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    color: white;
    line-height: 1;
}
.stat-num sup { font-size: 24px; color: var(--teal); }
.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ============================================================
   PORTFOLIO SECTION
============================================================ */
#portfolio {
    background: var(--light-bg);
}
.portfolio-header {
    text-align: center;
    margin-bottom: 48px;
}
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 9px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--trans);
    font-family: var(--font);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(30,91,229,0.25);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-items: stretch;
}
.port-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--trans);
    min-height: 340px;
}
.port-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.port-thumb {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--dark), var(--blue));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.port-thumb img { width: 100%; height: 100%; object-fit: cover; }
.port-thumb-content {
    text-align: center;
    color: rgba(255,255,255,0.8);
    padding: 20px;
}
.port-thumb-content .big-icon { font-size: 36px; margin-bottom: 8px; }
.port-site-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    padding: 8px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.port-thumb-url {
    font-size: 13px;
    color: var(--teal);
    font-weight: 600;
}
.port-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30,91,229,0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--trans);
}
.port-card:hover .port-overlay { opacity: 1; }
.port-overlay a {
    background: white;
    color: var(--blue);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--trans);
}
.port-overlay a:hover { background: var(--teal); color: var(--dark); }
.port-info { padding: 20px; }
.port-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}
.port-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}
.port-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
}
.port-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.ptag {
    font-size: 11px;
    background: var(--light-bg);
    color: var(--muted);
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
#why-us {
    background: var(--white);
}
.why-inner {
    display: block;
    max-width: 100%;
}
.why-content .sec-sub { margin-bottom: 36px; }
.why-reasons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}
.reason-item {
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--trans);
}
.reason-item:hover {
    border-color: var(--blue);
    background: var(--blue-light);
    transform: translateY(-3px);
}
.reason-num {
    font-size: 26px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 6px;
    font-style: italic;
}
.reason-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.reason-desc { font-size: 13px; color: var(--muted); }
/* Center last card when it's an orphan in a 3-col row */
.portfolio-grid > article:last-child:nth-child(3n - 1) {
    grid-column: 2;
}
.portfolio-grid > article:last-child:nth-child(3n - 2) {
    grid-column: 2;
}
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
}
.why-table-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.wt-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4px;
    margin-bottom: 8px;
}
.wt-cell {
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    text-align: center;
}
.wt-cell:first-child { text-align: left; }
.wt-cell.hl { color: var(--blue); }
.wt-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4px;
    border-top: 1px solid var(--border);
    transition: var(--trans);
}
.wt-row:hover { background: rgba(30,91,229,0.03); border-radius: 6px; }
.wt-row .wt-cell {
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
    font-weight: 500;
    font-size: 13px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wt-row .wt-cell:first-child {
    justify-content: flex-start;
    font-weight: 600;
    color: var(--dark);
}
.ic-yes  { color: #10B981; font-size: 16px; }
.ic-no   { color: #EF4444; font-size: 16px; }
.ic-maybe{ color: #F59E0B; font-size: 13px; }

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials {
    background: var(--light-bg);
}
.testimonials-header {
    text-align: center;
    margin-bottom: 16px;
}
.rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
}
.rating-stars { color: #FBBF24; font-size: 22px; letter-spacing: 3px; }
.rating-info { font-size: 14px; color: var(--muted); font-weight: 600; }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: var(--trans);
    position: relative;
}
.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(30,91,229,0.2);
}
.testi-quote-icon {
    font-size: 40px;
    color: var(--blue-light);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}
.testi-stars { color: #FBBF24; font-size: 14px; margin-bottom: 14px; }
.testi-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.testi-role { font-size: 12px; color: var(--muted); }
.testi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}
.ttag {
    font-size: 11px;
    background: var(--blue-light);
    color: var(--blue);
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
}

/* ============================================================
   CTA BANNER
============================================================ */
#cta-banner {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 50%, #0A1E5C 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-bg-circle-1 {
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
.cta-bg-circle-2 {
    position: absolute;
    bottom: -60px; left: -60px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.cta-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}
.cta-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    margin: 0 auto 36px;
    max-width: 560px;
    line-height: 1.7;
}
.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.cta-items {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
}
.cta-item .ci { font-size: 16px; }

/* ============================================================
   CONTACT SECTION
============================================================ */
#contact {
    background: var(--white);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}
.contact-info-col .sec-sub { margin-bottom: 36px; }
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.ci-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--light-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--trans);
}
.ci-row:hover {
    border-color: var(--blue);
    transform: translateX(5px);
}
.ci-icon-box {
    width: 42px; height: 42px;
    background: var(--blue-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--blue);
    flex-shrink: 0;
}
.ci-row-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 2px;
}
.ci-row-val { font-size: 14px; font-weight: 700; color: var(--dark); }
.ci-row-val a { color: var(--dark); }
.ci-row-val a:hover { color: var(--blue); }
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,200,160,0.10);
    border: 1px solid rgba(0,200,160,0.25);
    color: #009973;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 50px;
}
.live-badge .live-dot {
    width: 8px; height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: blink 2s infinite;
}
/* Form */
.contact-form-wrap {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.form-head-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-head-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
}
.form-msg {
    display: none;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}
.form-msg.success {
    background: rgba(0,200,160,0.10);
    border: 1px solid rgba(0,200,160,0.3);
    color: #007A5E;
}
.form-msg.error {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.25);
    color: #C53030;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: var(--trans);
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30,91,229,0.10);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--trans);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}
.form-submit-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30,91,229,0.35);
}
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
    background: var(--dark);
    padding: 64px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand .logo-mark { background: var(--blue); }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-text span { color: var(--teal); }
.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.50);
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
    width: 38px; height: 38px;
    border-radius: 9px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    font-weight: 700;
    transition: var(--trans);
    text-decoration: none;
}
.footer-social:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    transform: translateY(-2px);
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.40);
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--trans);
}
.footer-col ul li a::before {
    content: '›';
    color: var(--blue);
    font-weight: 900;
    font-size: 14px;
    opacity: 0;
    transition: var(--trans);
}
.footer-col ul li a:hover {
    color: var(--teal);
    padding-left: 4px;
}
.footer-col ul li a:hover::before { opacity: 1; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.30); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered delays for sibling cards */
.services-grid .fade-up:nth-child(1),
.portfolio-grid .fade-up:nth-child(1),
.testi-grid .fade-up:nth-child(1),
.stats-grid .fade-up:nth-child(1) { transition-delay: 0s; }
.services-grid .fade-up:nth-child(2),
.portfolio-grid .fade-up:nth-child(2),
.testi-grid .fade-up:nth-child(2),
.stats-grid .fade-up:nth-child(2) { transition-delay: 0.10s; }
.services-grid .fade-up:nth-child(3),
.portfolio-grid .fade-up:nth-child(3),
.testi-grid .fade-up:nth-child(3),
.stats-grid .fade-up:nth-child(3) { transition-delay: 0.20s; }
.services-grid .fade-up:nth-child(4),
.portfolio-grid .fade-up:nth-child(4),
.testi-grid .fade-up:nth-child(4),
.stats-grid .fade-up:nth-child(4) { transition-delay: 0.30s; }
.services-grid .fade-up:nth-child(5),
.portfolio-grid .fade-up:nth-child(5) { transition-delay: 0.40s; }
.services-grid .fade-up:nth-child(6),
.portfolio-grid .fade-up:nth-child(6) { transition-delay: 0.50s; }
/* process steps use CSS animation directly — see @keyframes procStepIn */

/* ============================================================
   MOBILE NAV
============================================================ */
/* ── RESPONSIVE BREAKPOINTS start below ── */

/* ============================================================
   RESPONSIVE BREAKPOINTS
============================================================ */
@media (max-width: 1024px) {
    .hero-inner       { grid-template-columns: 1fr; }
    .hero-visual      { display: none; }
    .about-inner      { grid-template-columns: 1fr; }
    .about-visual-wrap{ display: none; }
    .why-reasons      { grid-template-columns: repeat(3, 1fr); }
    .service-strip-inner { grid-template-columns: repeat(3, 1fr); }
    .portfolio-grid   { grid-template-columns: repeat(2, 1fr); }
    .footer-top       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .section-pad { padding: 60px 0; }
    #topbar       { display: none; }
    .services-grid   { grid-template-columns: 1fr; }
    .portfolio-grid  { grid-template-columns: 1fr; }
    .process-grid    { grid-template-columns: 1fr; gap: 32px; }
    .process-grid::before { display: none; }
    .process-promise { grid-template-columns: 1fr 1fr; gap: 20px; padding: 28px; }
    .pp-item         { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px; }
    .stats-grid      { grid-template-columns: 1fr 1fr; }
    .stat-block      { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); padding: 20px; }
    .testi-grid      { grid-template-columns: 1fr; }
    .contact-inner   { grid-template-columns: 1fr; }
    .service-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-top      { grid-template-columns: 1fr; }
    .why-reasons     { grid-template-columns: repeat(2, 1fr); }
    .form-grid       { grid-template-columns: 1fr; }
    .clients-inner   { flex-direction: column; gap: 20px; }
    .wt-head, .wt-row { grid-template-columns: 1.5fr 1fr 1fr; }
    .wt-cell:last-child { display: none; }
    .hero-btns       { flex-direction: column; align-items: flex-start; gap: 10px; }
    .hero-btns .btn  { width: 100%; justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
    .service-strip-inner { grid-template-columns: 1fr 1fr; }
    .process-promise { grid-template-columns: 1fr; }
    .stats-grid      { grid-template-columns: 1fr; }
    .footer-top      { grid-template-columns: 1fr; }
    .cta-items       { flex-direction: column; align-items: center; }
    .why-reasons     { grid-template-columns: 1fr; }
}

/* ============================================================
   AUTOMATION SECTION — Live Demo Widgets
============================================================ */
.tw360-automation-section { background: var(--light-bg); }

/* ROI Bar */
.tw360-roi-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    background: var(--dark);
    border-radius: var(--radius);
    padding: 22px 32px;
    margin-bottom: 48px;
}
.tw360-roi-item { text-align: center; }
.tw360-roi-num { font-size: 22px; font-weight: 900; color: white; line-height: 1.2; }
.tw360-roi-lbl { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.tw360-roi-accent .tw360-roi-num { color: var(--teal); }
.tw360-roi-arrow { font-size: 20px; color: var(--teal); font-weight: 900; }
.tw360-roi-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* Demo Grid */
.tw360-auto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* Demo Cards */
.tw360-demo-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.tw360-demo-dark  { background: #fff; }
.tw360-demo-light { background: #fff; }

/* Card Header */
.tw360-demo-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 28px 20px;
    border-bottom: 1px solid var(--border);
}
.tw360-demo-icon {
    font-size: 36px;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: var(--light-bg);
    border-radius: 12px;
    flex-shrink: 0;
}
.tw360-demo-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tw360-badge-blue  { background: var(--blue-light); color: var(--blue); }
.tw360-badge-green { background: rgba(0,200,160,0.12); color: #009973; }
.tw360-demo-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 4px;
    line-height: 1.3;
}
.tw360-demo-for {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}

/* Card Body */
#tw360ApptFormWrap,
#tw360ReviewFormWrap { padding: 24px 28px; flex: 1; }
.tw360-demo-desc {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Form Grid */
.tw360-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}
.tw360-form-single { grid-template-columns: 1fr; }
.tw360-form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}
.tw360-form-group input,
.tw360-form-group select,
.tw360-form-group textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    -webkit-appearance: none;
}
.tw360-form-group input:focus,
.tw360-form-group select:focus,
.tw360-form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30,91,229,0.08);
}
.tw360-form-group textarea { resize: none; }
.tw360-form-full { grid-column: 1 / -1; }

/* Stars */
.tw360-stars-wrap { text-align: center; margin-bottom: 20px; }
.tw360-stars-wrap p { font-size: 14px; color: var(--text); margin-bottom: 10px; }
.tw360-stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 8px; }
.tw360-star {
    font-size: 38px;
    color: #d1d9e0;
    cursor: pointer;
    transition: all 0.15s;
    line-height: 1;
    user-select: none;
}
.tw360-star.sel,
.tw360-star.hov { color: #FBBF24; transform: scale(1.15); }
.tw360-star-label { font-size: 13px; color: var(--muted); min-height: 18px; }

/* Buttons */
.tw360-demo-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
    transition: all 0.2s;
    margin-bottom: 10px;
}
.tw360-btn-blue  { background: var(--blue); color: #fff; }
.tw360-btn-blue:hover  { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,91,229,0.3); }
.tw360-btn-green { background: #25D366; color: #fff; }
.tw360-btn-green:hover { background: #1da851; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.tw360-demo-note { font-size: 11px; color: var(--muted); text-align: center; margin: 0; }

/* Results */
#tw360ApptResult,
#tw360ReviewResult { padding: 24px 28px; }

.tw360-result-head { text-align: center; margin-bottom: 22px; }
.tw360-result-emoji { font-size: 44px; margin-bottom: 10px; }
.tw360-result-head h4 { font-size: 17px; font-weight: 800; color: var(--dark); margin: 0 0 8px; }
.tw360-result-head p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* Timeline */
.tw360-timeline { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
.tw360-step { display: flex; gap: 14px; }
.tw360-step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tw360-step-dot {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.tw360-dot-blue  { background: #EEF3FF; border: 2px solid var(--blue); }
.tw360-dot-amber { background: #FFF8E7; border: 2px solid #F59E0B; }
.tw360-dot-red   { background: #FFF0F0; border: 2px solid #EF4444; }
.tw360-step-line { width: 2px; flex: 1; background: var(--border); margin: 4px 0; min-height: 20px; }
.tw360-step-right { flex: 1; padding-bottom: 20px; }
.tw360-step-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; }
.tw360-step-bubble {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 10px 10px 10px 4px;
    padding: 10px 14px;
    font-size: 12px;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 8px;
    white-space: pre-wrap;
}

/* WhatsApp open button */
.tw360-wa-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 4px;
}
.tw360-wa-open-btn:hover { background: #1da851; color: #fff; }
.tw360-wa-amber { background: #F59E0B; }
.tw360-wa-amber:hover { background: #D97706; color: #fff; }

/* Review bubble */
.tw360-review-bubble {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 16px;
}
.tw360-bubble-amber { border-color: #F59E0B; background: #FFF8E7; }
.tw360-bubble-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 8px; }
.tw360-bubble-text  { font-size: 13px; color: var(--dark); line-height: 1.7; white-space: pre-wrap; margin-bottom: 12px; }

/* CTA box inside result */
.tw360-result-cta {
    background: var(--dark);
    border-radius: 10px;
    padding: 18px 20px;
    text-align: center;
    margin-bottom: 12px;
}
.tw360-result-cta p { font-size: 13px; color: rgba(255,255,255,0.75); margin: 0 0 10px; font-weight: 600; }
.tw360-cta-link {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s;
}
.tw360-cta-link:hover { background: var(--blue-dark); color: #fff; }

/* Reset button */
.tw360-reset {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font);
    padding: 4px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .tw360-auto-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .tw360-form-grid { grid-template-columns: 1fr; }
    .tw360-roi-bar   { gap: 14px; padding: 18px; }
    .tw360-roi-sep   { display: none; }
    .tw360-demo-header { padding: 18px 20px 16px; }
    #tw360ApptFormWrap,
    #tw360ReviewFormWrap,
    #tw360ApptResult,
    #tw360ReviewResult { padding: 18px 20px; }
}
