/*
Theme Name: kpDevelopers Custom Theme (Engitech Light Edition)
Theme URI: https://www.kpdeveloperstech.com
Description: Custom WordPress theme for kpDevelopers Pvt. Ltd, styled with the official Engitech IT Solutions & Services LIGHT WHITE design system.
Version: 6.0.0
Author: Antigravity
Text Domain: kpdevelopers
*/

/* ==========================================================================
   1. DESIGN SYSTEM — CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Backgrounds */
    --bg-main: #ffffff;
    --bg-surface: #ffffff;
    --bg-light-grey: #f4f7fb;
    --bg-light-blue: #f8fafd;
    --bg-dark-navy: #0e1b38;
    --bg-footer: #0a1329;

    /* Brand Colors */
    --primary-color: #1860ec;
    --primary-hover: #124ec9;
    --primary-glow: rgba(24, 96, 236, 0.25);
    --secondary-color: #43baef;
    --secondary-glow: rgba(67, 186, 239, 0.2);
    --accent-purple: #7000ff;
    --accent-emerald: #00c57e;
    --accent-amber: #f59e0b;

    /* Typography */
    --text-heading: #0e1b38;
    --text-body: #697488;
    --text-muted: #8c98a9;
    --text-light: #ffffff;
    --tag-prefix-color: #1860ec;

    /* Borders & Shadows */
    --border-subtle: #e6ebf4;
    --border-hover: #1860ec;
    --shadow-xs: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 8px 28px rgba(14, 27, 56, 0.07);
    --shadow-card-hover: 0 20px 48px rgba(14, 27, 56, 0.13);
    --shadow-button: 0 8px 24px rgba(24, 96, 236, 0.32);

    /* Typography Scale */
    --font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --section-py: clamp(4rem, 8vw, 6.5rem);
    --section-py-sm: clamp(3rem, 6vw, 4.5rem);

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-pill: 999px;

    /* Transitions */
    --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout */
    --container-max: 1240px;
    --container-pad: clamp(1rem, 4vw, 2rem);
    --section-py: clamp(4rem, 8vw, 6.5rem);
    --section-py-sm: clamp(3rem, 6vw, 4.5rem);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-body);
    font-family: var(--font-family);
    font-size: var(--text-base);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Body lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Overlay when mobile menu is open */
body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
    backdrop-filter: blur(2px);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

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

/* ==========================================================================
   3. LAYOUT UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.section-gap {
    padding: var(--section-py) 0;
}

.section-gap-sm {
    padding: var(--section-py-sm) 0;
}

.bg-light-grey {
    background-color: var(--bg-light-grey);
}

.bg-light-blue {
    background-color: var(--bg-light-blue);
}

.bg-dark-navy {
    background-color: var(--bg-dark-navy);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

/* ==========================================================================
   4. TYPOGRAPHY SYSTEM
   ========================================================================== */

/* Section Tag (// LABEL) */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--tag-prefix-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.section-tag::before {
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: 0;
    margin-right: 0.2rem;
}

/* Section Header block (centered) */
.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-top: 0.25rem;
}

.section-subtitle {
    color: var(--text-body);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.75;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   5. BUTTON SYSTEM
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: linear-gradient(90deg, #1860ec 0%, #43baef 100%);
    color: #ffffff !important;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-pill);
    font-size: 0.92rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-button);
    transition: all var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
    -webkit-appearance: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(24, 96, 236, 0.42);
    background: linear-gradient(90deg, #124ec9 0%, #30a8d8 100%);
    color: #ffffff !important;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: #ffffff;
    color: var(--text-heading) !important;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-pill);
    font-size: 0.92rem;
    font-weight: 700;
    border: 1.5px solid var(--border-subtle);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.glow-btn:hover::after {
    transform: translateX(100%);
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 197, 126, 0.1);
    color: var(--accent-emerald) !important;
    border: 1.5px solid rgba(0, 197, 126, 0.25);
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 700;
    transition: all var(--transition-smooth);
    margin-top: auto;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: rgba(0, 197, 126, 0.18);
    border-color: var(--accent-emerald);
    transform: translateY(-2px);
}

/* Icon sizes in buttons */
.btn-primary svg,
.btn-secondary svg,
.btn-primary i,
.btn-secondary i {
    flex-shrink: 0;
}

/* ==========================================================================
   6. TOP UTILITY BAR
   ========================================================================== */
.engitech-top-bar {
    background: var(--bg-dark-navy);
    padding: 0.5rem 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
}

.top-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-bar-contacts {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-item i,
.top-bar-item svg {
    color: var(--secondary-color);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.top-bar-item a:hover {
    color: #ffffff;
}

.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-socials a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    width: 16px;
    height: 16px;
    transition: color var(--transition-fast);
}

.top-bar-socials a:hover {
    color: var(--secondary-color);
}

/* ==========================================================================
   7. MAIN HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-smooth);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(14, 27, 56, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 1.5rem;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    max-width: 180px;
    width: auto;
    height: auto;
    max-height: 52px;
    object-fit: contain;
    border-radius: 6px;
}

/* Desktop Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.main-navigation ul li a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-heading);
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    display: block;
}

.main-navigation ul li a:hover {
    color: var(--primary-color);
    background: rgba(24, 96, 236, 0.06);
}

.main-navigation ul li a.active {
    color: var(--primary-color);
}

/* Desktop CTA button */
.header-action {
    flex-shrink: 0;
}

/* Hamburger Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--border-subtle);
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    border-color: var(--primary-color);
    background: rgba(24, 96, 236, 0.05);
}

.mobile-menu-toggle.active {
    border-color: var(--primary-color);
}

.hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-heading);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile-only CTA inside nav */
.mobile-nav-action {
    display: none;
}

/* ─── Responsive Header ─── */
@media (min-width: 992px) {
    .mobile-nav-action {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1005;
        position: relative;
    }

    .header-action {
        display: none !important;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100dvh;
        background: #ffffff;
        box-shadow: -8px 0 36px rgba(14, 27, 56, 0.18);
        padding: 5rem 1.5rem 2rem;
        transition: right var(--transition-smooth);
        z-index: 999;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-y: auto;
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        width: 100%;
    }

    .main-navigation ul li {
        width: 100%;
    }

    .main-navigation ul li a {
        padding: 0.85rem 1rem;
        font-size: 1rem;
        border-radius: var(--radius-sm);
        display: block;
        width: 100%;
    }

    .mobile-nav-action {
        display: flex !important;
        margin-top: 1.5rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 68px;
    }

    .logo img {
        max-width: 148px;
    }

    .engitech-top-bar {
        display: none;
    }
}

/* ==========================================================================
   8. HERO SECTION
   ========================================================================== */
.hero-section {
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5.5rem);
    background: linear-gradient(160deg, #f4f7fb 0%, #ffffff 60%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

/* Animated canvas background */
#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Gradient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.12;
    z-index: 0;
}

.hero-orb-1 {
    width: clamp(300px, 40vw, 600px);
    height: clamp(300px, 40vw, 600px);
    background: var(--primary-color);
    top: -15%;
    right: -8%;
    animation: orbPulse 8s ease-in-out infinite alternate;
}

.hero-orb-2 {
    width: clamp(200px, 30vw, 450px);
    height: clamp(200px, 30vw, 450px);
    background: var(--secondary-color);
    bottom: -10%;
    left: -5%;
    animation: orbPulse 10s ease-in-out infinite alternate-reverse;
}

.hero-orb-3 {
    width: clamp(150px, 20vw, 300px);
    height: clamp(150px, 20vw, 300px);
    background: var(--accent-purple);
    top: 40%;
    right: 25%;
    animation: orbPulse 12s ease-in-out infinite alternate;
}

@keyframes orbPulse {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.15) translate(20px, -20px);
    }
}

/* Grid overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, transparent 80%);
}

/* Hero Layout */
.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--text-heading);
    line-height: 1.15;
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.8px;
}

.hero-description {
    color: var(--text-body);
    font-size: clamp(0.95rem, 1.5vw, 1.08rem);
    line-height: 1.78;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Trust Bar */
.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 2.5rem;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-sm);
    width: fit-content;
    flex-wrap: wrap;
    row-gap: 0.5rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.2rem;
    text-align: center;
}

.trust-num {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.trust-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: var(--border-subtle);
    flex-shrink: 0;
}

/* Hero Graphic (Right Side) */
.hero-graphic-wrap {
    position: relative;
}

.hero-floating-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-heading);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}

/* Animated pulse dot */
.pulse-dot {
    display: inline-block;
    background: var(--accent-emerald);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(0, 197, 126, 0.3);
    animation: pulseRing 1.8s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

/* Dashboard Card */
.hero-dashboard-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card-hover);
    overflow: hidden;
    animation: floatCard 4s ease-in-out infinite alternate;
}

@keyframes floatCard {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-12px);
    }
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.4rem;
    background: var(--bg-light-grey);
    border-bottom: 1px solid var(--border-subtle);
}

.dash-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.dash-body {
    padding: 1.4rem;
}

.dash-metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dash-metric {
    background: var(--bg-light-grey);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.dash-metric-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.dash-metric-value {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.dash-metric-value.cyan {
    color: var(--secondary-color);
}

.dash-metric-value.green {
    color: var(--accent-emerald);
}

.dash-metric-value.amber {
    color: var(--accent-amber);
}

.dash-metric-value.purple {
    color: var(--accent-purple);
}

.dash-metric-change {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-emerald);
}

.dash-progress-section {
    margin-bottom: 0.9rem;
}

.dash-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.dash-progress-bar {
    height: 6px;
    background: var(--bg-light-grey);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.dash-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-pill);
    transition: width 1.5s ease;
}

.dash-progress-fill.green-fill {
    background: linear-gradient(90deg, var(--accent-emerald), #00e5a0);
}

/* Hero Responsive */
@media (max-width: 991px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-graphic-wrap {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-trust-bar {
        width: 100%;
        justify-content: center;
    }

    .hero-description {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: clamp(2rem, 7vw, 2.6rem);
    }

    .hero-actions {
        gap: 0.75rem;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-bar {
        padding: 0.75rem 1rem;
        gap: 0;
    }

    .trust-item {
        padding: 0 0.75rem;
    }

    .trust-num {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   9. COUNTERS STRIP
   ========================================================================== */
.counters-strip {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: var(--bg-light-grey);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.counter-item h3 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
    letter-spacing: -0.04em;
}

.counter-item p {
    color: var(--text-heading);
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 400px) {
    .counters-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .counter-item h3 {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   10. ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: var(--section-py) 0;
    border-top: 1px solid var(--border-subtle);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.about-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
}

.about-img iframe {
    width: 100%;
    min-height: 340px;
    display: block;
    border: none;
}

.about-content {}

.about-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-content>p {
    color: var(--text-body);
    font-size: 0.97rem;
    line-height: 1.8;
}

/* About Stats */
.about-stats-row {
    display: flex;
    gap: 1.5rem;
    margin: 1.8rem 0;
    flex-wrap: wrap;
}

.about-stat {
    background: var(--bg-light-grey);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1rem 1.4rem;
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.about-stat-value {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}

/* About toggle */
.about-toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.about-toggle-content.open {
    max-height: 600px;
    transition: max-height 0.5s ease-in;
}

.about-toggle-content p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 1rem;
}

.about-readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 0.92rem;
    transition: color var(--transition-fast);
    -webkit-user-select: none;
    user-select: none;
}

.about-readmore-btn:hover {
    color: var(--primary-hover);
}

.about-readmore-btn i,
.about-readmore-btn svg {
    transition: transform var(--transition-smooth);
    width: 16px;
    height: 16px;
}

@media (max-width: 991px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-img iframe {
        min-height: 280px;
    }
}

/* ==========================================================================
   11. SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: var(--section-py) 0;
    border-top: 1px solid var(--border-subtle);
}

/* Tab Navigation */
.services-tabs-container {
    margin-top: 2rem;
}

.tabs-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.tab-trigger {
    background: #ffffff;
    border: 1.5px solid var(--border-subtle);
    color: var(--text-body);
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-xs);
}

.tab-trigger:hover {
    color: var(--primary-color);
    border-color: rgba(24, 96, 236, 0.4);
    background: rgba(24, 96, 236, 0.04);
}

.tab-trigger.active {
    background: linear-gradient(90deg, #1860ec 0%, #43baef 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(24, 96, 236, 0.3);
}

/* Tab Panels */
.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(24, 96, 236, 0.3);
    box-shadow: var(--shadow-card-hover);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(24, 96, 236, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    flex-shrink: 0;
}

.service-icon svg,
.service-icon i {
    width: 22px;
    height: 22px;
}

.service-price-badge {
    display: inline-block;
    background: rgba(24, 96, 236, 0.07);
    color: var(--primary-color);
    border: 1px solid rgba(24, 96, 236, 0.15);
    border-radius: var(--radius-pill);
    padding: 0.25rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    width: fit-content;
    letter-spacing: 0.3px;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-heading);
    margin: 0.3rem 0 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.72;
    flex-grow: 1;
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .tabs-navigation {
        gap: 0.5rem;
    }

    .tab-trigger {
        padding: 0.55rem 1rem;
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   12. PRODUCTS / ENTERPRISE SOLUTIONS SECTION
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.8rem;
    margin-top: 3rem;
}

.product-card {
    background: #ffffff;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem 1.8rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(24, 96, 236, 0.25);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.product-icon {
    width: 48px;
    height: 48px;
    background: rgba(24, 96, 236, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.product-icon svg,
.product-icon i {
    width: 22px;
    height: 22px;
}

.product-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
}

.product-badge.gold {
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent-amber);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.product-badge.cyan {
    background: rgba(67, 186, 239, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(67, 186, 239, 0.25);
}

.product-badge.green {
    background: rgba(0, 197, 126, 0.1);
    color: var(--accent-emerald);
    border: 1px solid rgba(0, 197, 126, 0.25);
}

.product-badge.purple {
    background: rgba(112, 0, 255, 0.08);
    color: var(--accent-purple);
    border: 1px solid rgba(112, 0, 255, 0.2);
}

.product-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.3;
}

.product-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.7;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-time {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    transition: gap var(--transition-fast);
}

.product-link:hover {
    gap: 0.6rem;
}

.product-link svg,
.product-link i {
    width: 14px;
    height: 14px;
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
}

/* ==========================================================================
   13. INDUSTRIES SECTION
   ========================================================================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.4rem;
    margin-top: 3rem;
}

.industry-card {
    background: #ffffff;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.4rem;
    text-align: center;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.industry-card:hover {
    border-color: rgba(24, 96, 236, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.industry-icon {
    width: 52px;
    height: 52px;
    background: rgba(24, 96, 236, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.industry-icon svg,
.industry-icon i {
    width: 22px;
    height: 22px;
}

.industry-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
}

.industry-card p {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 400px) {
    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   14. PORTFOLIO SECTION
   ========================================================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Portfolio Stats Row */
.portfolio-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.portfolio-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    border-radius: var(--radius-pill);
    padding: 0.6rem 1.6rem;
}

.portfolio-stat-num {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 900;
    line-height: 1;
}

.portfolio-stat-label {
    color: var(--text-body);
    font-weight: 600;
    font-size: 0.88rem;
}

/* Portfolio Card */
.portfolio-card {
    background: #ffffff;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(24, 96, 236, 0.25);
}

.portfolio-card-header {
    background: var(--bg-light-grey);
    padding: 0.7rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-subtle);
}

.portfolio-browser-url {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: monospace;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.portfolio-img-wrap {
    height: 210px;
    position: relative;
    overflow: hidden;
}

.portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-img-wrap img {
    transform: scale(1.06);
}

/* Live badge on portfolio images */
.portfolio-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 197, 126, 0.3);
    border-radius: var(--radius-pill);
    padding: 0.25rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-emerald);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(4px);
}

.portfolio-content {
    padding: 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.portfolio-desc {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.portfolio-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Tag Pill */
.tag-pill {
    background: rgba(24, 96, 236, 0.07);
    color: var(--primary-color);
    border: 1px solid rgba(24, 96, 236, 0.15);
    border-radius: var(--radius-pill);
    padding: 0.25rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.portfolio-btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.4rem;
    }
}

@media (max-width: 580px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
}

/* ==========================================================================
   15. PRICING SECTION
   ========================================================================== */
.pricing-section {
    padding: var(--section-py) 0;
    border-top: 1px solid var(--border-subtle);
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.pricing-tab-btn {
    background: #ffffff;
    border: 1.5px solid var(--border-subtle);
    color: var(--text-body);
    padding: 0.7rem 1.8rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.pricing-tab-btn.active {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(24, 96, 236, 0.3);
}

.pricing-tab-btn:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Pricing Grid */
.pricing-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    align-items: stretch;
}

.pricing-grid.active {
    display: grid;
    animation: fadeIn 0.4s ease forwards;
}

/* Pricing Card */
.pricing-card {
    background: #ffffff;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 2.5rem 1.8rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-8px);
    background: linear-gradient(180deg, rgba(24, 96, 236, 0.03) 0%, #ffffff 100%);
}

.pricing-card.featured:hover {
    transform: translateY(-14px);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 1.2rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(24, 96, 236, 0.35);
}

.pricing-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.price-tag {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--text-heading);
    margin: 0.8rem 0 0.4rem;
    line-height: 1.1;
}

.price-tag span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.price-gst {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.5;
}

.plan-features li svg,
.plan-features li i {
    color: var(--primary-color);
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   16. KEY FEATURES SECTION
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.features-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    background: #ffffff;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-smooth);
}

.features-card:hover {
    border-color: rgba(24, 96, 236, 0.25);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.features-card>div:first-child {
    flex-shrink: 0;
    border-radius: var(--radius-md);
}

.features-card>div:first-child svg,
.features-card>div:first-child i {
    width: 22px;
    height: 22px;
    display: block;
}

/* Tech Badges */
.tech-badges-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-heading);
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-fast);
}

.tech-badge:hover {
    border-color: rgba(24, 96, 236, 0.3);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.tech-badge svg,
.tech-badge i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   17. ACCORDION (WHY CHOOSE US + FAQ)
   ========================================================================== */
.accordion-container {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: #ffffff;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.accordion-item:hover {
    border-color: rgba(24, 96, 236, 0.25);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    transition: background var(--transition-fast);
}

.accordion-header:hover {
    background: var(--bg-light-grey);
}

.accordion-header.active {
    background: rgba(24, 96, 236, 0.04);
    border-bottom: 1px solid rgba(24, 96, 236, 0.12);
}

.accordion-header>span {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.45;
    flex: 1;
}

.accordion-header>svg,
.accordion-header>i {
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--transition-smooth);
    width: 18px;
    height: 18px;
}

.accordion-header.active>svg,
.accordion-header.active>i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body-inner {
    padding: 1.2rem 1.5rem 1.4rem;
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.8;
}

/* ==========================================================================
   18. CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: var(--section-py) 0;
    border-top: 1px solid var(--border-subtle);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 0.9rem;
    line-height: 1.3;
}

.contact-info>p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #ffffff;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.4rem;
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-fast);
}

.info-card:hover {
    border-color: rgba(24, 96, 236, 0.25);
    box-shadow: var(--shadow-sm);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: rgba(24, 96, 236, 0.08);
    border: 1px solid rgba(24, 96, 236, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-icon svg,
.info-card-icon i {
    width: 18px;
    height: 18px;
}

.info-card-details h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.2rem;
}

.info-card-details p {
    font-size: 0.88rem;
    color: var(--text-body);
    word-break: break-word;
}

/* Contact Form */
.contact-form-container {
    background: #ffffff;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: var(--shadow-card);
}

.contact-form-container h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

/* Form Fields */
.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-heading);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.45rem;
}

.form-control {
    width: 100%;
    background: var(--bg-light-grey);
    border: 1.5px solid var(--border-subtle);
    color: var(--text-heading);
    padding: 0.8rem 1.1rem;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    transition: all var(--transition-smooth);
    appearance: none;
    -webkit-appearance: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(24, 96, 236, 0.12);
}

.form-control::placeholder {
    color: var(--text-muted);
    font-size: 0.9rem;
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238c98a9' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Form Status */
.form-status {
    display: none;
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}

.form-status.success {
    display: block;
    background: rgba(0, 197, 126, 0.1);
    border: 1px solid rgba(0, 197, 126, 0.25);
    color: #059669;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 580px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   19. CTA STRIP
   ========================================================================== */
.cta-strip {
    background: linear-gradient(135deg, rgba(24, 96, 236, 0.06) 0%, rgba(67, 186, 239, 0.04) 100%);
    border: 1.5px solid rgba(24, 96, 236, 0.15);
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(24, 96, 236, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-strip h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 1rem;
    position: relative;
}

.cta-strip p {
    max-width: 560px;
    margin: 0 auto 2rem;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.75;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

@media (max-width: 640px) {
    .cta-strip {
        padding: 2.5rem 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ==========================================================================
   20. FOOTER
   ========================================================================== */
.site-footer {
    background: var(--bg-footer);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: clamp(3.5rem, 7vw, 5.5rem) 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer-widget h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.4rem;
    letter-spacing: 0.2px;
}

/* Footer Brand */
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

.footer-logo-wrap img {
    max-width: 168px;
    height: auto;
    border-radius: 6px;
    filter: brightness(1.1);
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition-fast);
    flex-shrink: 0;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(24, 96, 236, 0.35);
}

.social-icon svg,
.social-icon i {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links li a:hover {
    color: var(--secondary-color);
}

/* Footer contact inline items */
.footer-widget .footer-links li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}

/* Copyright Bar */
.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
}

.copyright-bar p {
    color: rgba(255, 255, 255, 0.5);
}

.copyright-bar strong {
    color: var(--secondary-color) !important;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 580px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .copyright-bar {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* ==========================================================================
   21. TRUST BAR (HOMEPAGE STRIP)
   ========================================================================== */
.trust-bar-section {
    background: var(--bg-light-blue);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--section-py-sm) 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-grid .trust-item h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--primary-color);
}

.trust-grid .trust-item p {
    font-size: 0.88rem;
    color: var(--text-body);
    font-weight: 600;
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   22. SUPPORT STEPS (Technical Support Page)
   ========================================================================== */
.support-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

@media (max-width: 768px) {
    .support-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* ==========================================================================
   23. COMMON COMPONENTS
   ========================================================================== */

/* Section Border separator */
.border-top-subtle {
    border-top: 1px solid var(--border-subtle);
}

/* Hero subtitle badge (technical support page) */
.hero-subtitle {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   24. SCROLLBAR STYLING
   ========================================================================== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--border-subtle);
    border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
    background: #c0c9d8;
}

/* ==========================================================================
   25. UTILITY ANIMATIONS
   ========================================================================== */
@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(24px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Skip link (accessibility) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* Selection */
::selection {
    background: rgba(24, 96, 236, 0.18);
    color: var(--text-heading);
}

/* Focus ring */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: var(--radius-xs);
}

/* ==========================================================================
   26. PRINT STYLES
   ========================================================================== */
@media print {

    .engitech-top-bar,
    .site-header,
    .mobile-menu-toggle,
    .hero-canvas,
    .hero-orb,
    .hero-grid-overlay,
    .site-footer {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}