/* ============================================================
   EXPERION TECHNOLOGY — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ============================================================
   CSS Variables — Brand: #29B8E8 Cyan
   ============================================================ */
:root {
    /* ── Brand cyan (from logo) ── */
    --brand:          #29B8E8;
    --brand-dark:     #1A9DC9;
    --brand-light:    #5CCEF0;
    --brand-glow:     rgba(41, 184, 232, 0.25);
    --brand-sub:      rgba(41, 184, 232, 0.09);
    --brand-border:   rgba(41, 184, 232, 0.30);

    /* ── Orange accent CTA ── */
    --orange:         #FF6130;
    --orange-glow:    rgba(255, 97, 48, 0.25);

    /* ── Backgrounds ── */
    --bg-primary:   #07090D;
    --bg-secondary: #0C1219;
    --bg-card:      #111B24;
    --bg-glass:     rgba(12, 18, 25, 0.88);

    /* ── Semantic aliases (keep old names working) ── */
    --accent-blue:   #29B8E8;
    --accent-cyan:   #29B8E8;
    --accent-pink:   #FF6130;
    --accent-green:  #25d366;

    --gradient-main:   linear-gradient(135deg, #29B8E8 0%, #5CCEF0 100%);
    --gradient-purple: linear-gradient(135deg, #7209b7 0%, #29B8E8 100%);
    --gradient-warm:   linear-gradient(135deg, #FF6130 0%, #FF9F1C 100%);
    --gradient-green:  linear-gradient(135deg, #11998e 0%, #25d366 100%);

    /* ── Text ── */
    --text-primary:   #E8EDF3;
    --text-secondary: #6B8199;
    --text-muted:     #374B5E;

    /* ── Borders ── */
    --border:      rgba(255, 255, 255, 0.07);
    --border-glow: rgba(41, 184, 232, 0.35);

    /* ── Shadows ── */
    --shadow-card:      0 8px 40px rgba(0, 0, 0, 0.7);
    --shadow-glow:      0 0 32px rgba(41, 184, 232, 0.20);
    --shadow-glow-cyan: 0 0 32px rgba(41, 184, 232, 0.20);

    --nav-height:       80px;
    --container-width:  1220px;
    --radius:           12px;
    --radius-sm:        6px;
    --radius-lg:        20px;
    --radius-pill:      999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   Scroll Progress Bar
   ============================================================ */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-main);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ============================================================
   Utilities
   ============================================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-badge {
    display: inline-block;
    background: rgba(67, 97, 238, 0.12);
    border: 1px solid rgba(67, 97, 238, 0.3);
    color: var(--accent-cyan);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 4px 24px rgba(67, 97, 238, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(67, 97, 238, 0.55);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-glow);
}
.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-cyan);
}

.btn-whatsapp {
    background: var(--gradient-green);
    color: #fff;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   Noise / Grain texture overlay
   ============================================================ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ============================================================
   Navigation
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(6, 9, 24, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-mark {
    width: 40px; height: 40px;
    background: var(--gradient-main);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-text span:first-child {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
}
.logo-text span:last-child {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--accent-cyan);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.06);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--accent-cyan);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.hamburger:hover { background: var(--border); }
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(6, 9, 24, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-20px);
    opacity: 0;
    transition: var(--transition);
}
.mobile-menu.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}
.mobile-menu .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(67, 97, 238, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(76, 201, 240, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 60% 20%, rgba(247, 37, 133, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: var(--nav-height);
    width: 100%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - var(--nav-height));
    padding: 60px 0;
}

.hero-text { max-width: 580px; }

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.hero-eyebrow .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan);
    animation: pulse-dot 2s ease-in-out infinite;
}
.hero-eyebrow span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-cyan);
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-title .line { display: block; }

.typewriter-container {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    height: 1.3em;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
    color: var(--accent-cyan);
}
.typewriter-text { min-width: 1px; }
.typewriter-cursor {
    display: inline-block;
    width: 2px; height: 1.1em;
    background: var(--accent-cyan);
    animation: blink 1s step-end infinite;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Hero Visual — abstract floating shapes */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-inner {
    position: relative;
    width: 480px;
    height: 480px;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border);
}
.orbit-ring-1 { inset: 0; animation: spin 30s linear infinite; }
.orbit-ring-2 { inset: 40px; animation: spin 20s linear infinite reverse; border-color: rgba(76,201,240,0.12); }
.orbit-ring-3 { inset: 80px; animation: spin 40s linear infinite; border-color: rgba(247,37,133,0.08); }

.orbit-dot {
    position: absolute;
    border-radius: 50%;
}
.orbit-dot-1 {
    width: 12px; height: 12px;
    background: var(--accent-blue);
    box-shadow: 0 0 16px var(--accent-blue);
    top: -6px; left: 50%; transform: translateX(-50%);
}
.orbit-dot-2 {
    width: 8px; height: 8px;
    background: var(--accent-cyan);
    box-shadow: 0 0 12px var(--accent-cyan);
    bottom: -4px; left: 50%; transform: translateX(-50%);
}
.orbit-dot-3 {
    width: 10px; height: 10px;
    background: var(--accent-pink);
    box-shadow: 0 0 14px var(--accent-pink);
    left: -5px; top: 50%; transform: translateY(-50%);
}

.hero-card-center {
    position: absolute;
    inset: 100px;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-card-center .logo-big {
    width: 72px; height: 72px;
    background: var(--gradient-main);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.hero-card-center .card-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
}
.hero-card-center .card-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* Floating badge cards */
.float-badge {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-card);
    animation: float 6s ease-in-out infinite;
    white-space: nowrap;
}
.float-badge-1 { top: 20px; left: -20px; animation-delay: 0s; }
.float-badge-2 { bottom: 60px; right: -30px; animation-delay: 2s; }
.float-badge-3 { bottom: 20px; left: 0px; animation-delay: 4s; }

.float-badge .badge-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.badge-icon-1 { background: rgba(67, 97, 238, 0.2); color: var(--accent-blue); }
.badge-icon-2 { background: rgba(76, 201, 240, 0.2); color: var(--accent-cyan); }
.badge-icon-3 { background: rgba(247, 37, 133, 0.2); color: var(--accent-pink); }

.float-badge .badge-text { font-size: 0.82rem; font-weight: 600; }
.float-badge .badge-sub { font-size: 0.7rem; color: var(--text-muted); }

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce-scroll 2s ease-in-out infinite;
}
.scroll-indicator i { font-size: 1.2rem; }

/* ============================================================
   Stats Bar
   ============================================================ */
.stats-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(67,97,238,0.08) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.stat-item:hover {
    background: var(--bg-glass);
    border: 1px solid var(--border);
}

.stat-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.stat-icon-1 { background: rgba(67,97,238,0.15); color: var(--accent-blue); }
.stat-icon-2 { background: rgba(76,201,240,0.15); color: var(--accent-cyan); }
.stat-icon-3 { background: rgba(247,37,133,0.15); color: var(--accent-pink); }
.stat-icon-4 { background: rgba(247,127,0,0.15); color: #f77f00; }

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================================
   About Section
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Abstract geometric visual for about */
.about-geo {
    width: 100%; height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.geo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 32px;
    width: 100%; height: 100%;
}
.geo-cell {
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition);
}
.geo-cell:hover { transform: scale(1.05); }
.geo-c1 { background: rgba(67,97,238,0.15); color: var(--accent-blue); }
.geo-c2 { background: rgba(76,201,240,0.12); color: var(--accent-cyan); grid-row: span 2; font-size: 2.2rem; }
.geo-c3 { background: rgba(247,37,133,0.10); color: var(--accent-pink); }
.geo-c4 { background: rgba(247,127,0,0.10); color: #f77f00; grid-column: span 2; }
.geo-c5 { background: rgba(67,97,238,0.08); color: var(--accent-blue); }
.geo-c6 { background: rgba(76,201,240,0.10); color: var(--accent-cyan); }
.geo-c7 { background: rgba(247,37,133,0.08); color: var(--accent-pink); grid-column: span 2; font-size: 2rem; }

.about-badge-float {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-badge-float .ab-icon {
    width: 44px; height: 44px;
    background: var(--gradient-main);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.ab-text-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ab-text-label { font-size: 0.75rem; color: var(--text-muted); }

.about-text .section-header { text-align: left; margin-bottom: 32px; }
.about-text .section-desc { margin: 0; text-align: left; max-width: none; }

.about-body { color: var(--text-secondary); margin: 20px 0 32px; line-height: 1.8; }

.value-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.value-item:hover {
    border-color: var(--border-glow);
    background: rgba(67,97,238,0.06);
    transform: translateX(4px);
}
.value-item i {
    font-size: 1.1rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
}
.value-item span { font-size: 0.92rem; font-weight: 500; }

/* ============================================================
   Services Section
   ============================================================ */
.services-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}
.services-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(67,97,238,0.06) 0%, transparent 70%);
    top: -100px; right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.service-card:nth-child(2)::before { background: var(--gradient-purple); }
.service-card:nth-child(3)::before { background: var(--gradient-warm); }
.service-card:nth-child(4)::before { background: linear-gradient(135deg, #11998e, #38ef7d); }
.service-card:nth-child(5)::before { background: linear-gradient(135deg, #f77f00, #f72585); }
.service-card:nth-child(6)::before { background: var(--gradient-main); }

.service-icon-wrap {
    width: 60px; height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.si-1 { background: rgba(67,97,238,0.15); color: var(--accent-blue); }
.si-2 { background: rgba(114,9,183,0.15); color: #a855f7; }
.si-3 { background: rgba(247,37,133,0.15); color: var(--accent-pink); }
.si-4 { background: rgba(17,153,142,0.15); color: #38ef7d; }
.si-5 { background: rgba(247,127,0,0.15); color: #f77f00; }
.si-6 { background: rgba(76,201,240,0.15); color: var(--accent-cyan); }

.service-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--accent-blue); }

/* ============================================================
   Process / How We Work
   ============================================================ */
.process-section { position: relative; }

.process-steps {
    display: flex;
    position: relative;
    gap: 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 60px; right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    z-index: 0;
    opacity: 0.4;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: var(--transition);
}
.process-step:hover .step-circle {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-glow);
}

.step-num {
    position: absolute;
    top: -8px; right: -8px;
    width: 24px; height: 24px;
    background: var(--gradient-main);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-circle i {
    font-size: 1.4rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}
.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(76,201,240,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 33.333%;
    padding: 0 12px;
}

.testimonial-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}
.testimonial-inner:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.testimonial-inner::before {
    content: '\201C';
    position: absolute;
    top: 20px; right: 28px;
    font-family: 'Syne', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(67,97,238,0.15);
    line-height: 1;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}
.stars i { color: #f59e0b; font-size: 0.9rem; }

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}
.author-name {
    font-weight: 600;
    font-size: 0.92rem;
}
.author-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.slider-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.slider-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-glow);
}

.slider-dots {
    display: flex;
    gap: 8px;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.slider-dot.active {
    background: var(--accent-blue);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
    position: relative;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(67,97,238,0.15) 0%, rgba(76,201,240,0.08) 100%),
        var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-bg::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(67,97,238,0.2) 0%, transparent 70%);
    top: -100px; left: -100px;
    border-radius: 50%;
}
.cta-bg::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(76,201,240,0.15) 0%, transparent 70%);
    bottom: -50px; right: 10%;
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}
.cta-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto; margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding-top: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.4fr 1.4fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-about {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 24px;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.social-btn {
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}
.social-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: var(--accent-cyan); transform: translateX(4px); }

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.fc-icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(67,97,238,0.12);
    border: 1px solid rgba(67,97,238,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--accent-blue);
    flex-shrink: 0;
}
.fc-text { font-size: 0.84rem; }
.fc-text strong { display: block; font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.fc-text a, .fc-text span { color: var(--text-secondary); transition: var(--transition); }
.fc-text a:hover { color: var(--accent-cyan); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: 0.83rem;
    color: var(--text-muted);
}
.footer-bottom a { color: var(--accent-cyan); }
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    font-size: 0.83rem;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--accent-cyan); }

/* ============================================================
   Floating WhatsApp Button
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px; right: 32px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-btn {
    width: 58px; height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: var(--transition);
    position: relative;
}
.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.4);
    animation: pulse-ring 2.5s ease-out infinite;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

.whatsapp-tooltip {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition);
    pointer-events: none;
    order: -1;
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   Back to Top
   ============================================================ */
.back-top {
    position: fixed;
    bottom: 32px; left: 32px;
    width: 44px; height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    z-index: 9000;
}
.back-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.back-top:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================================
   Page Hero (Inner Pages)
   ============================================================ */
.page-hero {
    padding: calc(var(--nav-height) + 80px) 0 80px;
    background:
        radial-gradient(ellipse 60% 80% at 30% 50%, rgba(67,97,238,0.12) 0%, transparent 60%),
        var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}
.page-hero p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--accent-cyan); }
.breadcrumb i { font-size: 0.7rem; }

/* ============================================================
   About Page Specific
   ============================================================ */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 80px;
}

.mv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.mv-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}
.mv-mission::before { background: var(--gradient-main); }
.mv-vision::before  { background: var(--gradient-purple); }

.mv-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.mv-mission .mv-icon { background: rgba(67,97,238,0.15); color: var(--accent-blue); }
.mv-vision  .mv-icon { background: rgba(114,9,183,0.15); color: #a855f7; }

.mv-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.mv-card p { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.8; }

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}
.value-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.value-card-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.vc1 { background: rgba(67,97,238,0.15);  color: var(--accent-blue); }
.vc2 { background: rgba(76,201,240,0.15); color: var(--accent-cyan); }
.vc3 { background: rgba(247,37,133,0.15); color: var(--accent-pink); }
.vc4 { background: rgba(247,127,0,0.15);  color: #f77f00; }

.value-card h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.value-card p { font-size: 0.83rem; color: var(--text-secondary); }

/* Why Choose Us */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.why-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.why-item:hover {
    border-color: var(--border-glow);
    transform: translateX(6px);
}
.why-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.why-content h5 {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.why-content p { font-size: 0.84rem; color: var(--text-secondary); }

/* ============================================================
   Services Page Specific
   ============================================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.sd-visual {
    aspect-ratio: 4/3;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.sd-visual-inner {
    width: 80%; height: 80%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.sd-icon-big {
    width: 80px; height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.sd-info .section-header { text-align: left; margin-bottom: 16px; }
.sd-info h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.sd-info p { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.8; margin-bottom: 20px; }

.sd-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sd-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.sd-feature i { color: var(--accent-cyan); font-size: 0.9rem; }

/* Tech Stack */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.tech-tag {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}
.tech-tag:hover {
    border-color: var(--border-glow);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* ============================================================
   Animations / Keyframes
   ============================================================ */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* AOS base */
[data-aos] { opacity: 0; transition-property: opacity, transform !important; }
[data-aos].aos-animate { opacity: 1; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .hero-text { max-width: 100%; text-align: center; }
    .hero-eyebrow { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-desc { margin: 0 auto 36px; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-text .section-header { text-align: center; }
    .about-text .section-desc { text-align: center; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

    .why-choose-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .service-detail { grid-template-columns: 1fr; gap: 36px; }
    .service-detail.reverse { direction: ltr; }
    .process-steps { flex-direction: column; gap: 24px; align-items: flex-start; }
    .process-steps::before { display: none; }
    .process-step { flex-direction: row; text-align: left; align-items: flex-start; }
}

@media (max-width: 768px) {
    :root { --nav-height: 68px; }
    .section-padding { padding: 72px 0; }

    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .testimonial-card { flex: 0 0 100%; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .hero-visual-inner { width: 320px; height: 320px; }
    .float-badge { display: none; }
}

@media (max-width: 540px) {
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
}


/* ═══════════════════════════════════════════════════════════════════
   BRAND REDESIGN v2 — Override Layer
   Brand: #29B8E8 | Fonts: Space Grotesk (heads) + DM Sans (body)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Typography overrides ── */
.section-title, .hero-title, .cta-title, .page-hero h1,
.mv-card h3, .footer-col h4, .service-card h3, .step-title,
.stat-number, .hero-stat-number, .author-name,
.ab-text-num, .sd-info h2, .value-card h4, .why-content h5,
.portfolio-card-title, .overlay-title { font-family: 'Space Grotesk', sans-serif; }

/* ── Scroll bar brand ── */
#scroll-progress { background: var(--brand); }

/* ── Logo image ── */
.logo-img { height: 38px; width: auto; display: block; }
.footer-logo-img { height: 34px; width: auto; display: block; margin-bottom: 16px; }
.nav-logo { gap: 0; }

/* ── Navbar ── */
.navbar.scrolled {
    background: rgba(7, 9, 13, 0.96);
    border-bottom: 1px solid var(--brand-border);
}
.nav-link { font-family: 'DM Sans', sans-serif; }
.nav-link:hover, .nav-link.active { color: var(--brand); background: rgba(41,184,232,0.07); }
.nav-link.active::after { background: var(--brand); }

/* ── Buttons ── */
.btn-primary {
    background: var(--brand);
    color: #07090D;
    font-weight: 700;
    box-shadow: 0 4px 20px var(--brand-glow);
}
.btn-primary:hover {
    background: var(--brand-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px var(--brand-glow);
}
.btn-primary::after { display: none; }
.btn-outline {
    border-color: var(--brand-border);
    color: var(--brand);
}
.btn-outline:hover {
    border-color: var(--brand);
    color: #07090D;
    background: var(--brand);
    box-shadow: none;
}
.btn-outline::after { display: none; }
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 4px 18px rgba(37,211,102,0.30); }
.btn-whatsapp:hover { background: #20BE5C; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
.btn-whatsapp::after { display: none; }

/* ── Section badge ── */
.section-badge {
    background: rgba(41,184,232,0.09);
    border: 1px solid var(--brand-border);
    color: var(--brand);
}

/* ── Gradient text ── */
.gradient-text {
    background: linear-gradient(120deg, var(--brand) 0%, var(--brand-light) 60%, #8DE8F8 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Hero ── */
.hero { background: #07090D; }
.hero-bg-gradient {
    background:
        radial-gradient(ellipse 65% 60% at 15% 50%, rgba(41,184,232,0.09) 0%, transparent 65%),
        radial-gradient(ellipse 45% 40% at 85% 65%, rgba(41,184,232,0.05) 0%, transparent 60%);
}
.hero-eyebrow span { color: var(--brand); }
.hero-eyebrow .dot { background: var(--brand); }
.hero-title {
    font-size: clamp(3rem, 6vw, 5.2rem);
    letter-spacing: -0.025em;
    line-height: 1.05;
}
.typewriter-container { color: var(--brand); }
.typewriter-cursor { background: var(--brand); }
.hero-stat-number {
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.float-badge { background: rgba(12,18,25,0.92); border-color: var(--brand-border); }
.badge-icon-1, .badge-icon-2, .badge-icon-3 { background: rgba(41,184,232,0.10); color: var(--brand); }
.logo-big { background: var(--brand); color: #07090D; font-weight: 800; }
.logo-mark { background: var(--brand); color: #07090D; font-weight: 800; }
.orbit-dot-1 { background: var(--brand); box-shadow: 0 0 16px var(--brand); }
.orbit-dot-2 { background: var(--brand-light); box-shadow: 0 0 12px var(--brand-light); }
.orbit-dot-3 { background: var(--orange); box-shadow: 0 0 14px var(--orange); }
.scroll-indicator { color: var(--brand-border); }

/* ── Stats bar ── */
.stats-bar { background: #0C1219; border-color: rgba(41,184,232,0.10); }
.stats-bar::before { background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(41,184,232,0.07) 0%, transparent 70%); }
.stat-number {
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-icon-1 { background: rgba(41,184,232,0.12); color: var(--brand); }
.stat-icon-2 { background: rgba(41,184,232,0.08); color: var(--brand-light); }
.stat-icon-3 { background: rgba(255,97,48,0.12); color: var(--orange); }
.stat-icon-4 { background: rgba(37,211,102,0.12); color: #25D366; }
.stat-item:hover { background: rgba(41,184,232,0.04); border: 1px solid var(--brand-border); }

/* ── About ── */
.about-image-box { background: #0C1219; border-color: rgba(41,184,232,0.10); }
.geo-c1 { background: rgba(41,184,232,0.12); color: var(--brand); }
.geo-c2 { background: rgba(41,184,232,0.07); color: var(--brand-light); }
.geo-c3 { background: rgba(255,97,48,0.10); color: var(--orange); }
.geo-c4 { background: rgba(37,211,102,0.08); color: #25D366; }
.geo-c5 { background: rgba(41,184,232,0.06); color: var(--brand); }
.geo-c6 { background: rgba(255,97,48,0.07); color: var(--orange); }
.geo-c7 { background: rgba(41,184,232,0.09); color: var(--brand-light); }
.about-badge-float { background: #0C1219; border-color: rgba(41,184,232,0.18); }
.about-badge-float .ab-icon { background: var(--brand); }
.ab-text-num {
    background: var(--brand);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.value-item { background: #0C1219; }
.value-item:hover { border-color: var(--brand-border); background: rgba(41,184,232,0.04); }
.value-item i { color: var(--brand); }

/* ── Service cards — sharp brand-border redesign ── */
.services-section { background: #0C1219; }
.services-section::before { background: radial-gradient(circle, rgba(41,184,232,0.04) 0%, transparent 70%); }
.service-card {
    background: #07090D;
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid var(--brand);
    border-radius: 12px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.service-card::before { display: none; }
.service-card::after {
    content: attr(data-num);
    position: absolute;
    bottom: -10px; right: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(41,184,232,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.service-card:hover {
    border-color: var(--brand);
    border-left-color: var(--brand);
    background: rgba(41,184,232,0.03);
    box-shadow: 0 0 0 1px rgba(41,184,232,0.12), 0 12px 40px rgba(0,0,0,0.5);
    transform: translateY(-5px);
}
.service-card h3 { color: var(--text-primary); }
.service-icon-wrap { border-radius: 10px; margin-bottom: 18px; }
.si-1 { background: rgba(41,184,232,0.12); color: var(--brand); }
.si-2 { background: rgba(92,206,240,0.10); color: var(--brand-light); }
.si-3 { background: rgba(255,97,48,0.12); color: var(--orange); }
.si-4 { background: rgba(37,211,102,0.10); color: #25D366; }
.si-5 { background: rgba(255,160,50,0.12); color: #FFA032; }
.si-6 { background: rgba(41,184,232,0.09); color: var(--brand); }
.service-link { color: var(--brand); }
.service-link:hover { color: var(--brand-light); gap: 12px; }

/* ── Process ── */
.process-steps::before { background: linear-gradient(90deg, var(--brand), var(--brand-light)); opacity: 0.25; }
.step-circle { background: #0C1219; border-color: rgba(41,184,232,0.14); }
.process-step:hover .step-circle { border-color: var(--brand); box-shadow: 0 0 24px var(--brand-glow); }
.step-circle i {
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step-num { background: var(--brand); color: #07090D; font-weight: 700; }

/* ── Testimonials ── */
.testimonials-section { background: #0C1219; }
.testimonials-section::after { background: radial-gradient(circle, rgba(41,184,232,0.04) 0%, transparent 70%); }
.testimonial-inner { background: #07090D; border-color: rgba(255,255,255,0.06); }
.testimonial-inner:hover { border-color: var(--brand-border); box-shadow: 0 0 0 1px rgba(41,184,232,0.12); transform: translateY(-4px); }
.testimonial-inner::before { color: rgba(41,184,232,0.10); font-family: 'Space Grotesk', sans-serif; }
.slider-btn:hover { background: var(--brand); border-color: var(--brand); color: #07090D; }
.slider-dot.active { background: var(--brand); }
.author-avatar { background: var(--brand); color: #07090D; font-weight: 700; }

/* ── CTA ── */
.cta-bg {
    background: linear-gradient(135deg, rgba(41,184,232,0.09) 0%, rgba(41,184,232,0.03) 100%), #0C1219;
    border-color: rgba(41,184,232,0.10);
}
.cta-bg::before { background: radial-gradient(circle, rgba(41,184,232,0.14) 0%, transparent 70%); }
.cta-bg::after  { background: radial-gradient(circle, rgba(41,184,232,0.09) 0%, transparent 70%); }

/* ── Footer ── */
.footer { background: #0C1219; }
.social-btn:hover { background: var(--brand); border-color: var(--brand); color: #07090D; }
.footer-col h4 { color: var(--brand); font-family: 'Space Grotesk', sans-serif; }
.footer-links a:hover { color: var(--brand); }
.fc-icon { background: rgba(41,184,232,0.09); border-color: rgba(41,184,232,0.18); color: var(--brand); }
.fc-text a:hover { color: var(--brand); }
.footer-bottom a { color: var(--brand); }
.footer-bottom-links a:hover { color: var(--brand); }

/* ── Page hero ── */
.page-hero {
    background:
        radial-gradient(ellipse 60% 80% at 30% 50%, rgba(41,184,232,0.09) 0%, transparent 60%),
        #0C1219;
}
.page-hero h1 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.025em; }
.breadcrumb a { color: var(--brand); }

/* ── About page ── */
.mv-card { background: #07090D; border-color: rgba(255,255,255,0.06); }
.mv-card:hover { border-color: var(--brand-border); box-shadow: 0 0 0 1px rgba(41,184,232,0.10); }
.mv-mission::before { background: var(--brand); }
.mv-vision::before  { background: linear-gradient(90deg, var(--brand), var(--brand-light)); }
.mv-mission .mv-icon { background: rgba(41,184,232,0.12); color: var(--brand); }
.mv-vision  .mv-icon { background: rgba(41,184,232,0.08); color: var(--brand-light); }
.mv-card h3 { font-family: 'Space Grotesk', sans-serif; }
.value-card { background: #07090D; border-color: rgba(255,255,255,0.06); }
.value-card:hover { border-color: var(--brand-border); }
.value-card h4 { font-family: 'Space Grotesk', sans-serif; }
.vc1 { background: rgba(41,184,232,0.12); color: var(--brand); }
.vc2 { background: rgba(92,206,240,0.09); color: var(--brand-light); }
.vc3 { background: rgba(255,97,48,0.12); color: var(--orange); }
.vc4 { background: rgba(37,211,102,0.10); color: #25D366; }
.why-item { background: #07090D; border-color: rgba(255,255,255,0.06); }
.why-item:hover { border-color: var(--brand-border); }
.why-icon { background: var(--brand); }
.why-content h5 { font-family: 'Space Grotesk', sans-serif; }

/* ── Services page ── */
.sd-visual { background: #0C1219; border-color: rgba(41,184,232,0.10); }
.sd-info h2 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
.sd-feature i { color: var(--brand); }
.tech-tag { background: #0C1219; }
.tech-tag:hover { border-color: var(--brand-border); color: var(--brand); }

/* ── WhatsApp & back-top ── */
.whatsapp-btn { background: #25D366; }
.whatsapp-btn::before { border-color: rgba(37,211,102,0.4); }
.back-top:hover { background: var(--brand); border-color: var(--brand); color: #07090D; }
.whatsapp-tooltip { background: #0C1219; border-color: var(--brand-border); color: var(--brand); }

/* ════════════════════════════════════════
   MARQUEE STRIP
   ════════════════════════════════════════ */
.marquee-wrap {
    background: var(--brand);
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}
.marquee-track {
    display: inline-flex;
    animation: marquee-scroll 28s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.80rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #07090D;
}
.marquee-sep { font-size: 0.5rem; opacity: 0.4; }
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   PORTFOLIO
   ════════════════════════════════════════ */
.portfolio-section { background: #07090D; }

.filter-wrap {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}
.filter-btn {
    padding: 9px 22px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
    background: #0C1219;
}
.filter-btn:hover {
    border-color: var(--brand-border);
    color: var(--brand);
}
.filter-btn.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #07090D;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.portfolio-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.portfolio-item.hidden {
    display: none;
}

.portfolio-card {
    border-radius: 14px;
    overflow: hidden;
    background: #0C1219;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-border);
    box-shadow: 0 0 0 1px rgba(41,184,232,0.10), 0 16px 40px rgba(0,0,0,0.5);
}

/* Project preview area */
.portfolio-preview {
    width: 100%;
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden;
}
.pv-1  { background: linear-gradient(135deg, #071824 0%, #0D2F45 100%); }
.pv-2  { background: linear-gradient(135deg, #180A28 0%, #2C1040 100%); }
.pv-3  { background: linear-gradient(135deg, #0A2010 0%, #0F3020 100%); }
.pv-4  { background: linear-gradient(135deg, #280A08 0%, #401510 100%); }
.pv-5  { background: linear-gradient(135deg, #081428 0%, #0A2040 100%); }
.pv-6  { background: linear-gradient(135deg, #1C1408 0%, #302010 100%); }
.pv-7  { background: linear-gradient(135deg, #1C0820 0%, #300D38 100%); }
.pv-8  { background: linear-gradient(135deg, #081820 0%, #0A2830 100%); }
.pv-9  { background: linear-gradient(135deg, #1C1C08 0%, #2C2C0D 100%); }
.pv-10 { background: linear-gradient(135deg, #0A1C12 0%, #0F2D1C 100%); }

/* ── Custom software banner on portfolio page ── */
.custom-sw-banner {
    position: relative;
    margin-top: 52px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--brand-border);
    overflow: hidden;
    background: var(--bg-card);
}
.csb-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, var(--brand-glow) 0%, transparent 70%);
    pointer-events: none;
}
.csb-inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 40px 44px;
    flex-wrap: wrap;
}
.csb-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background: var(--brand-sub);
    border: 1px solid var(--brand-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--brand);
}
.csb-text { flex: 1; min-width: 260px; }
.csb-text h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.csb-text p { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.csb-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.csb-cta { align-self: center; flex-shrink: 0; white-space: nowrap; }
@media (max-width: 680px) {
    .csb-inner { padding: 28px 24px; flex-direction: column; }
    .csb-cta { width: 100%; justify-content: center; }
}

/* ── FAQ Section ── */
.faq-section { background: var(--bg-secondary); }
.faq-grid { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    overflow: hidden;
    transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--brand-border); }
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}
.faq-item.open .faq-q { color: var(--brand); }
.faq-icon {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--brand);
    transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s;
    padding: 0 24px;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-a p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; }
.faq-a strong { color: var(--text-primary); font-weight: 600; }


/* Simulated browser/app UI inside preview */
.pv-ui {
    position: absolute;
    inset: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pv-bar {
    height: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
    flex-shrink: 0;
}
.pv-dot { width: 7px; height: 7px; border-radius: 50%; }
.pv-dot-1 { background: #FF5F57; }
.pv-dot-2 { background: #FEBC2E; }
.pv-dot-3 { background: #28C840; }
.pv-line { flex: 1; height: 2px; background: rgba(255,255,255,0.04); border-radius: 1px; }
.pv-body { flex: 1; display: grid; grid-template-columns: 1fr 2.5fr; gap: 8px; min-height: 0; }
.pv-sidebar { background: rgba(255,255,255,0.04); border-radius: 5px; }
.pv-content { display: flex; flex-direction: column; gap: 6px; }
.pv-block { background: rgba(255,255,255,0.04); border-radius: 4px; flex: 1; }
.pv-block-sm { background: rgba(255,255,255,0.06); border-radius: 4px; height: 12px; width: 60%; flex-shrink: 0; }
.pv-highlight { background: rgba(41,184,232,0.18) !important; }
.pv-icon-big {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 2.8rem;
    opacity: 0.10;
    color: #fff;
    pointer-events: none;
}

/* Hover overlay */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7,9,13,0.90);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.overlay-cat {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.70rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(41,184,232,0.10);
    border: 1px solid var(--brand-border);
    padding: 4px 14px;
    border-radius: 999px;
}
.overlay-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    padding: 0 20px;
    color: var(--text-primary);
}
.overlay-stack {
    font-size: 0.76rem;
    color: var(--text-secondary);
    text-align: center;
    padding: 0 20px;
}
.overlay-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #07090D;
    font-size: 0.95rem;
    margin-top: 6px;
    transition: transform 0.2s ease;
}
.overlay-link:hover { transform: scale(1.1); }

/* Card info below preview */
.portfolio-card-info { padding: 18px 20px 20px; }
.portfolio-cat-tag {
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 7px;
    display: block;
}
.portfolio-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}
.portfolio-card-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.6;
}
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ptag {
    background: rgba(41,184,232,0.07);
    border: 1px solid rgba(41,184,232,0.14);
    color: var(--brand);
    font-size: 0.70rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
}

/* ── Portfolio responsive ── */
@media (max-width: 900px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .filter-wrap { gap: 6px; }
    .filter-btn { padding: 7px 16px; font-size: 0.82rem; }
}
