/* =============================================================================
   AandA Tech — Public Website Stylesheet
   EXACT itgest.ng replica: black base, cyan (#11FFBD) section labels,
   full-width hero, large 40px rounded cards, gradient overlays,
   cyan CTA section with pill form inputs.
   Branding: A and A blue (#0099ff) as primary, green (#11FFBD) for section labels.
   ============================================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Core palette — Dark Navy Blue */
    --black: #0a0e27;
    --black-light: #0d1230;
    --black-card: #121838;
    --black-border: #1a2145;
    --accent: #0099ff;
    --accent-light: #33adff;
    --accent-dark: #0077cc;
    --accent-glow: rgba(0, 153, 255, 0.12);
    --accent-glow-strong: rgba(0, 153, 255, 0.25);
    --green: #11FFBD;
    --green-dark: #0cc99a;
    --purple: #6366f1;
    --orange: #ff6b35;
    --red: #ef4444;
    --white: #ffffff;
    --off-white: #f0f0f0;
    --gray-100: #e5e7eb;
    --gray-200: #d1d5db;
    --gray-300: #b0b0b0;
    --gray-400: #888888;
    --gray-500: #666666;
    --gray-600: #444444;
    --gray-700: #2a2a2a;
    --gray-800: #1a1a1a;
    --gray-900: #0d0d0d;

    /* Radii — itgest uses 40px for major cards */
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 40px;
    --radius-pill: 100px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 50px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 40px rgba(0,153,255,0.15);

    /* Layout */
    --site-width: 1200px;
    --section-padding: 100px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-300);
    font-size: 18px;
    line-height: 1.7;
    background: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; }

/* =============================================================================
   ANIMATIONS
   ============================================================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
@keyframes dotProgress {
    from { width: 0%; }
    to { width: 100%; }
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Scroll reveal classes */
.fade-up {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* =============================================================================
   NAVIGATION — sticky glass, auto-hide on scroll
   ============================================================================= */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav.hidden { transform: translateY(-100%); }
.nav-inner {
    max-width: var(--site-width); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
}

/* Logo — itgest style: image + 3-line text beside it */
.logo {
    font-size: 15px; font-weight: 700; color: var(--white);
    display: flex; align-items: center; gap: 12px;
    letter-spacing: -0.2px;
    flex-shrink: 0;
}
.logo-img {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
    padding: 2px;
    flex-shrink: 0;
}
.logo-text-lines {
    display: flex; flex-direction: column;
    line-height: 1.15;
}
.logo-line-1 {
    font-size: 22px; font-weight: 900;
    color: var(--white);
    letter-spacing: -0.3px;
    text-transform: uppercase;
}
.logo-line-2 {
    font-size: 14px; font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
}
.logo-line-3 {
    font-size: 14px; font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
}

/* Nav links */
.nav-menu { list-style: none; display: flex; gap: 36px; align-items: center; flex: 1; justify-content: center; }
.nav-menu a {
    color: rgba(255,255,255,0.7); font-size: 18px; font-weight: 500;
    transition: color 0.3s; position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--green);
    transform: scaleX(0); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--white); }
.nav-menu a.active::after { transform: scaleX(1); }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: rgba(18, 24, 56, 0.98);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 8px 0;
    list-style: none;
    z-index: 1000;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: rgba(18, 24, 56, 0.98);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { padding: 0; }
.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px !important;
    font-size: 15px !important;
    color: rgba(255,255,255,0.7) !important;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.06);
}

/* CTA button in nav */
.nav-cta {
    background: var(--accent); color: var(--white);
    padding: 14px 32px; border-radius: var(--radius-pill);
    font-size: 16px; font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none; cursor: pointer;
    display: inline-block;
}
.nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,153,255,0.3);
}

/* Nav actions (auth buttons) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-cta-outline {
    background: transparent !important;
    border: 1.5px solid rgba(255,255,255,0.2) !important;
    color: rgba(255,255,255,0.85) !important;
    padding: 12px 24px;
    font-size: 15px;
}
.nav-cta-outline:hover {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(255,255,255,0.4) !important;
    color: #fff !important;
    box-shadow: none;
}

/* Hide mobile-only auth links on desktop */
.nav-mobile-auth { display: none !important; }

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 26px; height: 2px;
    background: var(--white); margin: 6px 0;
    transition: all 0.3s; border-radius: 2px;
}

/* =============================================================================
   HERO — FULL-WIDTH BACKGROUND IMAGE, exact itgest.ng layout
   "Build Connect Create" | divider | description on top
   Big tagline below, then Find out more button
   ============================================================================= */
.hero-fullwidth {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
    background: var(--black);
}

/* Background slides */
.hero-fw-slides {
    position: absolute; inset: 0; z-index: 1;
}
.hero-fw-slides .showcase-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.5s ease;
}
.hero-fw-slides .showcase-slide.active { opacity: 1; }
.hero-fw-slides .showcase-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

/* Dark overlay — gradient left-to-right so background image shows through on right */
.hero-fullwidth > .hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.40) 100%
    );
}

/* Floating decorative elements */
.hero-floating-icons {
    position: absolute; inset: 0; z-index: 4;
    pointer-events: none; overflow: hidden;
}
.hero-floating-icons .float-icon {
    position: absolute;
    color: rgba(0, 153, 255, 0.25);
    font-size: 20px;
    animation: floatDrift 12s ease-in-out infinite;
}
.hero-floating-icons .float-icon:nth-child(2) { animation-delay: -2s; animation-duration: 15s; }
.hero-floating-icons .float-icon:nth-child(3) { animation-delay: -4s; animation-duration: 10s; }
.hero-floating-icons .float-icon:nth-child(4) { animation-delay: -6s; animation-duration: 14s; }
.hero-floating-icons .float-icon:nth-child(5) { animation-delay: -8s; animation-duration: 11s; }
.hero-floating-icons .float-icon:nth-child(6) { animation-delay: -3s; animation-duration: 13s; }
.hero-floating-icons .float-icon:nth-child(7) { animation-delay: -5s; animation-duration: 16s; }
.hero-floating-icons .float-icon:nth-child(8) { animation-delay: -7s; animation-duration: 9s; }
.hero-floating-icons .float-plus {
    position: absolute;
    color: rgba(0, 153, 255, 0.15);
    font-size: 16px;
    font-weight: 300;
    animation: floatDrift 18s ease-in-out infinite;
}
.hero-floating-icons .float-plus:nth-child(odd) { animation-direction: reverse; }

@keyframes floatDrift {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-20px) rotate(5deg); opacity: 0.6; }
    50% { transform: translateY(-10px) rotate(-3deg); opacity: 0.4; }
    75% { transform: translateY(-25px) rotate(8deg); opacity: 0.5; }
}

/* Particles canvas behind hero */
.hero-particles {
    position: absolute; inset: 0; z-index: 3;
    pointer-events: none;
}

/* Slide dots */
.hero-fullwidth .showcase-dots {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex; gap: 8px;
}
.showcase-dot {
    width: 40px; height: 4px; border-radius: 2px;
    background: rgba(255,255,255,0.2);
    cursor: pointer; position: relative; overflow: hidden;
    transition: background 0.3s;
}
.showcase-dot:hover { background: rgba(255,255,255,0.35); }
.showcase-dot.active { background: rgba(255,255,255,0.25); }
.showcase-dot.active::after {
    content: ''; position: absolute; inset: 0;
    background: var(--green); border-radius: 2px;
    animation: dotProgress var(--slide-duration, 5s) linear forwards;
}

/* Hero content */
.hero-fw-content {
    position: relative; z-index: 5;
    width: 100%;
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 160px 32px 120px;
}

/* Top row: "Build Connect Create" | divider | description — exact itgest layout */
.hero-top-row {
    display: flex;
    align-items: stretch;
    gap: 40px;
    margin-bottom: 60px;
    animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-bcc {
    display: flex; flex-direction: column;
    line-height: 1.05;
    flex-shrink: 0;
}
.hero-bcc span {
    font-size: clamp(3.8rem, 7vw, 6rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: -1px;
}
.hero-divider {
    width: 2px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
    align-self: stretch;
}
.hero-top-desc {
    max-width: 420px;
    display: flex; align-items: center;
}
.hero-top-desc p {
    font-size: 20px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
}

/* Big tagline — with typing effect */
.hero-tagline-big {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
    margin-bottom: 48px;
    max-width: 750px;
    min-height: 2.8em;
    animation: slideInUp 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--green);
    margin-left: 4px;
    vertical-align: text-bottom;
    animation: blinkCursor 0.8s infinite;
}
@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* "Find out more" button */
.btn-find-out {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent); color: var(--white);
    padding: 22px 64px; border-radius: var(--radius-pill);
    font-size: 22px; font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none; cursor: pointer;
    animation: slideInUp 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.btn-find-out:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,153,255,0.35);
}

/* Company intro section below hero */
.company-intro {
    padding: 80px 32px;
    background: var(--black);
}
.company-intro-text {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

/* =============================================================================
   SCROLL PROGRESS BAR
   ============================================================================= */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--accent));
    z-index: 10000;
    transition: width 0.05s linear;
}

/* =============================================================================
   STATS COUNTER BAR
   ============================================================================= */
.stats-bar {
    padding: 60px 32px;
    background: linear-gradient(135deg, rgba(0,153,255,0.06) 0%, rgba(17,255,189,0.06) 100%);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
    max-width: var(--site-width);
    margin: 0 auto;
}
.stat-item {
    text-align: center;
    min-width: 140px;
}
.stat-number {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-number .stat-suffix {
    color: var(--green);
}
.stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* =============================================================================
   WHY CHOOSE US
   ============================================================================= */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-us-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.why-us-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-us-card:hover {
    border-color: rgba(17,255,189,0.15);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,153,255,0.08), 0 0 40px rgba(17,255,189,0.04);
}
.why-us-card:hover::before { transform: scaleX(1); }
.why-us-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}
.why-us-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.why-us-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}

/* =============================================================================
   3D CARD HOVER EFFECTS
   ============================================================================= */
.card-3d {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}
.card-3d:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 30px rgba(0,153,255,0.06);
}

/* =============================================================================
   ENHANCED TESTIMONIALS
   ============================================================================= */
.testimonial-card-enhanced {
    position: relative;
    overflow: hidden;
}
.testimonial-card-enhanced::before {
    content: '\201C';
    position: absolute;
    top: 12px; left: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(17,255,189,0.06);
    line-height: 1;
    pointer-events: none;
}
.testimonial-card-enhanced::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}
.testimonial-card-enhanced:hover::after { opacity: 1; }

/* =============================================================================
   SECTION STYLING
   ============================================================================= */
.section {
    padding: var(--section-padding) 32px;
    position: relative;
}
.section-dark { background: var(--black-light); }
.section-gray { background: var(--gray-900); }

/* Left-aligned section header (itgest style) */
.section-header-left {
    margin-bottom: 48px;
}
.section-label-green {
    display: inline-block;
    font-size: 18px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--green);
}

/* Center-aligned section header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-label {
    display: inline-block;
    font-size: 18px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--green);
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.45);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}
.container {
    max-width: var(--site-width);
    margin: 0 auto;
}

/* =============================================================================
   TABS — itgest "Products / Solutions" style
   ============================================================================= */
.itg-tabs {
    display: flex; gap: 0;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.itg-tab {
    background: none; border: none; cursor: pointer;
    font-family: inherit;
    font-size: 22px; font-weight: 600;
    color: rgba(255,255,255,0.35);
    padding: 16px 32px;
    position: relative;
    transition: color 0.3s;
}
.itg-tab:hover { color: rgba(255,255,255,0.7); }
.itg-tab.active {
    color: var(--white);
}
.itg-tab.active::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0;
    height: 2px;
    background: var(--green);
}
.itg-tab-content { display: none; }
.itg-tab-content.active { display: block; }

/* =============================================================================
   ICON CAROUSEL — horizontal scrolling icons
   ============================================================================= */
.icon-carousel {
    display: flex; gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.icon-carousel::-webkit-scrollbar { display: none; }

.icon-card {
    flex: 0 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    padding: 24px 20px;
    min-width: 120px;
    transition: all 0.3s;
    scroll-snap-align: start;
    cursor: pointer;
}
.icon-card:hover { transform: translateY(-4px); }
.icon-card-circle {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 42px;
    transition: all 0.3s;
}
.icon-card:hover .icon-card-circle {
    border-color: var(--green);
    background: rgba(17, 255, 189, 0.06);
    box-shadow: 0 0 30px rgba(17, 255, 189, 0.1);
}
.icon-card-label {
    font-size: 17px; font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-align: center;
    white-space: nowrap;
}

/* =============================================================================
   CASE STUDIES / PORTFOLIO — Large rounded cards with gradient overlay
   ============================================================================= */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.case-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    display: block;
    cursor: pointer;
}
.case-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-card:hover img { transform: scale(1.08); }
.case-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 40%, transparent 70%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: all 0.4s;
}
.case-card-cat {
    font-size: 15px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 10px;
}
.case-card-overlay h3 {
    font-size: 30px; font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.25;
}
.case-card-overlay p {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* =============================================================================
   CLIENTS — Logo cards on carousel
   ============================================================================= */
.clients-carousel {
    display: flex; gap: 24px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
}
.clients-carousel::-webkit-scrollbar { display: none; }
.client-logo-card {
    flex: 0 0 auto;
    width: 180px; height: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    transition: all 0.3s;
}
.client-logo-card:hover {
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
}
.client-logo-card img {
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s;
}
.client-logo-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}
.client-name-text {
    font-size: 16px; font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

/* =============================================================================
   NEWS / BLOG CARDS — itgest-style image with gradient to dark overlay
   ============================================================================= */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.news-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
    cursor: pointer;
}
.news-card-img {
    position: absolute; inset: 0;
}
.news-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--green));
}
.news-card-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 40%, transparent 70%);
}
.news-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px;
    z-index: 2;
}
.news-card-date {
    display: inline-block;
    font-size: 16px; font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.news-card-content h3 {
    font-size: 28px; font-weight: 700;
    color: var(--white);
    line-height: 1.35;
}

/* =============================================================================
   CTA SECTION — itgest "Talk to us" style, full cyan/green background
   ============================================================================= */
.cta-itgest {
    background: var(--green);
    padding: 100px 32px;
    position: relative;
    overflow: hidden;
}
.cta-itgest::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,153,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-itgest-inner {
    max-width: var(--site-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.cta-itgest-left h2 {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.cta-itgest-left p {
    font-size: 20px;
    color: rgba(0,0,0,0.6);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 450px;
}
.cta-contact-info { display: flex; flex-direction: column; gap: 12px; }
.cta-contact-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 18px; font-weight: 600;
    color: rgba(0,0,0,0.7);
}
.cta-contact-icon { font-size: 18px; }

.cta-form {
    display: flex; flex-direction: column; gap: 16px;
}
.cta-pill-input {
    width: 100%;
    padding: 20px 30px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-pill);
    font-size: 18px;
    font-family: inherit;
    color: var(--black);
    background: rgba(255,255,255,0.7);
    transition: all 0.3s;
    outline: none;
}
.cta-pill-input:focus {
    border-color: var(--black);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.cta-pill-input::placeholder {
    color: rgba(0,0,0,0.35);
}
.cta-submit-btn {
    background: var(--black);
    color: var(--white);
    padding: 20px 44px;
    border-radius: var(--radius-pill);
    font-size: 20px; font-weight: 700;
    font-family: inherit;
    border: none; cursor: pointer;
    transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 10px;
    justify-content: center;
}
.cta-submit-btn:hover {
    background: var(--gray-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* =============================================================================
   CARD GRIDS
   ============================================================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* =============================================================================
   SERVICE CARDS — dark glass with accent border hover
   ============================================================================= */
.service-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--green);
    transform: scaleX(0); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}
.service-card:hover {
    border-color: var(--green);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md), 0 0 40px rgba(17,255,189,0.1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
    width: 56px; height: 56px;
    background: rgba(17, 255, 189, 0.08);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 26px; font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 18px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}
.service-card .price-tag {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px; font-weight: 600;
    margin-top: 16px;
    border: 1px solid rgba(0,153,255,0.15);
}

/* =============================================================================
   TRAINING CARDS
   ============================================================================= */
.training-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.training-card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.training-card-header {
    padding: 28px;
    color: var(--white);
}
.training-card-header.blue { background: linear-gradient(135deg, #0099ff, #0055cc); }
.training-card-header.purple { background: linear-gradient(135deg, #6366f1, #4338ca); }
.training-card-header.green { background: linear-gradient(135deg, #11FFBD, #059669); }
.training-card-header h3 {
    font-size: 28px; font-weight: 800;
    margin-bottom: 6px;
}
.training-card-meta {
    display: flex; gap: 16px;
    font-size: 17px; opacity: 0.85;
}
.training-card-body { padding: 28px; }
.training-card-body p {
    font-size: 18px; color: rgba(255,255,255,0.5);
    margin-bottom: 20px; line-height: 1.7;
}
.training-card-topics { list-style: none; padding: 0; }
.training-card-topics li {
    font-size: 17px; color: rgba(255,255,255,0.55);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex; align-items: center; gap: 10px;
}
.training-card-topics li::before {
    content: '\2713';
    color: var(--green);
    font-weight: 700;
    font-size: 13px;
}
.training-card-footer {
    padding: 20px 28px;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex; justify-content: space-between; align-items: center;
}
.training-fee {
    font-size: 32px; font-weight: 800;
    color: var(--accent);
}

/* =============================================================================
   BLOG CARDS — for blog list page (inner pages)
   ============================================================================= */
.blog-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}
.blog-card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.blog-card-image {
    width: 100%; height: 220px;
    object-fit: cover;
    background: var(--gray-800);
}
.blog-card-body { padding: 24px; }
.blog-card-category {
    display: inline-block;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 4px 12px; border-radius: var(--radius-pill);
    margin-bottom: 12px;
}
.blog-card h3 {
    font-size: 24px; font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.35;
}
.blog-card p {
    font-size: 18px; color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-bottom: 16px;
}
.blog-card-footer {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 16px; color: rgba(255,255,255,0.3);
}

/* =============================================================================
   PORTFOLIO CARDS — for portfolio list page
   ============================================================================= */
.portfolio-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    display: block;
}
.portfolio-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-card:hover img { transform: scale(1.08); }
.portfolio-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.85));
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }
.portfolio-card-overlay h3 {
    color: var(--white); font-size: 24px; font-weight: 700;
    margin-bottom: 4px;
}
.portfolio-card-overlay span {
    color: var(--green); font-size: 15px; font-weight: 500;
    letter-spacing: 0.5px;
}

/* =============================================================================
   TESTIMONIALS
   ============================================================================= */
.testimonial-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(255,255,255,0.08); }
.testimonial-stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; }
.testimonial-card blockquote {
    font-size: 20px; color: rgba(255,255,255,0.55);
    font-style: italic; line-height: 1.8;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex; align-items: center; gap: 14px;
}
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(17, 255, 189, 0.08);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--green); font-size: 18px;
    border: 1px solid rgba(17, 255, 189, 0.2);
}
.testimonial-name { font-weight: 600; font-size: 18px; color: var(--white); }
.testimonial-role { font-size: 16px; color: rgba(255,255,255,0.4); }

/* =============================================================================
   TEAM
   ============================================================================= */
.team-card {
    text-align: center;
    padding: 28px;
}
.team-card img {
    width: 130px; height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 3px solid rgba(17, 255, 189, 0.2);
    transition: border-color 0.3s;
}
.team-card:hover img { border-color: var(--green); }
.team-card h3 {
    font-size: 20px; font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.team-card p {
    font-size: 15px; color: var(--green);
    font-weight: 500;
}

/* =============================================================================
   FORMS
   ============================================================================= */
.form-group { margin-bottom: 22px; }
.form-label {
    display: block;
    font-size: 15px; font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    font-size: 17px;
    font-family: inherit;
    color: var(--white);
    background: rgba(255,255,255,0.04);
    transition: all 0.3s;
}
.form-input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(17, 255, 189, 0.1);
    background: rgba(255,255,255,0.06);
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }
select.form-input { cursor: pointer; }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input option { background: var(--black-card); color: var(--white); }

/* =============================================================================
   BUTTONS
   ============================================================================= */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 34px;
    border-radius: var(--radius-pill);
    font-size: 18px; font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-decoration: none;
}
.btn-lg { padding: 20px 44px; font-size: 20px; }
.btn-sm { padding: 12px 24px; font-size: 16px; }
.btn-blue { background: var(--accent); color: var(--white); }
.btn-blue:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,153,255,0.3);
}
.btn-green { background: var(--green); color: var(--black); font-weight: 700; }
.btn-green:hover { background: var(--green-dark); }
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(17, 255, 189, 0.06);
}
.btn-white {
    background: var(--white);
    color: var(--black);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.1);
}

/* Legacy hero button classes for inner pages */
.btn-primary {
    background: var(--accent); color: var(--white);
    padding: 16px 36px; border-radius: var(--radius-pill);
    font-size: 15px; font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,153,255,0.35);
}
.btn-secondary {
    background: rgba(255,255,255,0.04); color: var(--white);
    padding: 16px 36px; border-radius: var(--radius-pill);
    font-size: 15px; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* =============================================================================
   OLD CTA SECTION — kept for inner pages
   ============================================================================= */
.cta-section {
    background: var(--green);
    padding: 80px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800; color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
}
.cta-section p {
    color: rgba(0,0,0,0.6);
    font-size: 20px; margin-bottom: 40px;
    max-width: 600px; margin-left: auto; margin-right: auto;
    line-height: 1.7;
    position: relative;
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.5);
    padding: 80px 32px 32px;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner {
    max-width: var(--site-width); margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer-brand p {
    font-size: 18px; line-height: 1.8;
    margin-top: 18px; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s;
    font-size: 16px;
}
.footer-social a:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--black);
}
.footer h4 {
    color: var(--white); font-size: 17px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 24px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
    font-size: 17px;
    transition: color 0.3s;
}
.footer ul a:hover { color: var(--green); }
.footer-bottom {
    max-width: var(--site-width); margin: 48px auto 0;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 16px;
    flex-wrap: wrap; gap: 12px;
}

/* =============================================================================
   TRUST BAR
   ============================================================================= */
.trust-bar {
    background: var(--black-card);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 40px 32px;
}
.trust-bar-inner {
    max-width: var(--site-width); margin: 0 auto;
    display: flex; justify-content: center; gap: 64px;
    flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-number {
    font-size: 42px; font-weight: 800;
    color: var(--green);
    display: block;
    letter-spacing: -1px;
}
.trust-label {
    font-size: 14px; color: rgba(255,255,255,0.4);
    text-transform: uppercase; letter-spacing: 2px;
    font-weight: 600;
    margin-top: 4px;
}

/* =============================================================================
   PAGE HEADER — inner pages
   ============================================================================= */
.page-header {
    background: var(--black);
    padding: 140px 32px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(17, 255, 189, 0.06) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}
.page-header::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(17, 255, 189, 0.2), transparent);
}
.page-header h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800; color: var(--white);
    position: relative; z-index: 1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.page-header p {
    font-size: 22px;
    color: rgba(255,255,255,0.4);
    position: relative; z-index: 1;
    max-width: 600px; margin: 0 auto;
    line-height: 1.7;
}
.breadcrumb {
    display: flex; gap: 10px; align-items: center;
    justify-content: center;
    font-size: 16px; color: rgba(255,255,255,0.3);
    position: relative; z-index: 1;
    margin-top: 20px;
}
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* =============================================================================
   ALERTS
   ============================================================================= */
.alert {
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 14px;
}
.alert-success {
    background: rgba(17, 255, 189, 0.08);
    border: 1px solid rgba(17, 255, 189, 0.15);
    color: var(--green);
}
.alert-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: var(--red);
}
.alert-info {
    background: var(--accent-glow);
    border: 1px solid rgba(0, 153, 255, 0.15);
    color: var(--accent);
}

/* =============================================================================
   PAGINATION
   ============================================================================= */
.pagination {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 48px;
}
.pagination a, .pagination span {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    transition: all 0.3s;
}
.pagination a:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(17, 255, 189, 0.06);
}
.pagination .current {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
}

/* =============================================================================
   PRODUCT SHOWCASE
   ============================================================================= */
.product-section {
    background: var(--black-card);
    padding: var(--section-padding) 32px;
    color: var(--white);
}
.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
    margin-top: 40px;
}
.module-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
    padding: 18px;
    text-align: center;
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s;
}
.module-item:hover {
    background: rgba(17, 255, 189, 0.06);
    border-color: rgba(17, 255, 189, 0.15);
    color: var(--white);
}
.module-item .icon { font-size: 28px; display: block; margin-bottom: 8px; }

/* =============================================================================
   PARTNERS MARQUEE — infinite scrolling ticker
   ============================================================================= */
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partners-marquee {
    overflow: hidden;
    width: 100%;
    padding: 32px 0 0;
    position: relative;
}
.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--gray-900), transparent);
}
.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--gray-900), transparent);
}
.partners-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}
.partners-track:hover {
    animation-play-state: paused;
}
.partner-name {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255,255,255,0.25);
    padding: 0 20px;
    letter-spacing: -0.5px;
    transition: color 0.3s;
    cursor: default;
}
.partner-name:hover {
    color: var(--green);
}
.partner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* =============================================================================
   SCROLL TO TOP
   ============================================================================= */
.scroll-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 48px; height: 48px;
    background: var(--green); color: var(--black);
    border: none; border-radius: 50%;
    font-size: 20px; cursor: pointer;
    opacity: 0; transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(17, 255, 189, 0.3);
    font-weight: 800;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover {
    background: var(--green-dark);
    transform: translateY(-4px);
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 1024px) {
    :root { --section-padding: 80px; }
    .hero-top-row { flex-direction: column; gap: 24px; }
    .hero-divider { width: 60px; height: 2px; }
    .hero-bcc span { font-size: clamp(2.4rem, 5vw, 3.5rem); }
    .cta-itgest-inner { grid-template-columns: 1fr; gap: 48px; }
    .cta-itgest-left { text-align: center; }
    .cta-itgest-left p { margin-left: auto; margin-right: auto; }
    .cta-contact-info { align-items: center; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .case-studies-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-padding: 64px; }
    .nav { padding: 0 20px; }
    .nav-inner { height: 68px; }
    .nav-menu { display: none; }
    .nav-actions { display: none; }
    .nav-toggle { display: block; }
    .nav-menu.open {
        display: flex; flex-direction: column;
        position: absolute; top: 68px; left: 0; right: 0;
        background: rgba(0, 0, 0, 0.96);
        backdrop-filter: blur(24px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .nav-menu.open a { font-size: 16px; }
    .nav-menu.open a::after { display: none; }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        background: rgba(255,255,255,0.04);
        border: none;
        border-radius: 8px;
        box-shadow: none;
        backdrop-filter: none;
        min-width: auto;
        margin-top: 8px;
        padding: 4px 0;
    }
    .nav-dropdown-menu::before { display: none; }
    .nav-dropdown-menu a { padding: 8px 24px !important; font-size: 15px !important; }
    .nav-dropdown .nav-dropdown-menu { display: none; }
    .nav-dropdown.open .nav-dropdown-menu { display: block; }
    .nav-mobile-auth { display: list-item !important; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); }
    .hero-fullwidth { min-height: 80vh; }
    .hero-fw-content { padding: 120px 20px 80px; }
    .hero-bcc span { font-size: clamp(2.2rem, 8vw, 3.2rem); }
    .hero-tagline-big { font-size: clamp(1.5rem, 4vw, 2rem); }
    .section { padding: var(--section-padding) 20px; }
    .cards-grid { grid-template-columns: 1fr; }
    .cards-grid-3 { grid-template-columns: 1fr; }
    .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .case-studies-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .case-card { aspect-ratio: 3/4; }
    .news-card { aspect-ratio: 3/4; }
    .footer { padding: 60px 20px 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .trust-bar { padding: 32px 20px; }
    .trust-bar-inner { gap: 32px; }
    .page-header { padding: 110px 20px 50px; }
    .cta-itgest { padding: 64px 20px; }
    .cta-section { padding: 64px 20px; }
    .why-us-grid { grid-template-columns: 1fr; }
    .stats-grid { gap: 32px; }
    .stat-item { min-width: 120px; }
}

@media (max-width: 480px) {
    .cards-grid-4 { grid-template-columns: 1fr; }
    .hero-bcc span { font-size: 2.2rem; }
    .hero-fw-content { padding: 100px 16px 60px; }
    .company-intro { padding: 48px 20px; }
    .trust-bar-inner { flex-direction: column; gap: 20px; }
    .itg-tab { padding: 12px 20px; font-size: 16px; }
}
