/* ============================================
   AptWorld Technology — Enhanced Stylesheet
   Strictly HTML, CSS, and Vanilla JS
   ============================================ */

/* ── CSS Variables ── */
:root {
    /* Ghana Flag Colors */
    --red: #CE1126;
    --gold: #FCD116;
    --green: #006B3F;
    --black: #000000;

    /* Extended Palette */
    --red-light: #e8203a;
    --red-dark: #a50e1f;
    --gold-light: #fde04d;
    --gold-dark: #d4b113;
    --green-light: #008f54;
    --green-dark: #004d2c;

    /* Dark Theme */
    --bg-primary: #0B0F1A;
    --bg-secondary: #111827;
    --bg-tertiary: #1A2332;
    --bg-card: #151D2B;
    --bg-card-hover: #1C2638;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(252, 209, 22, 0.2);

    /* Text Colors */
    --text-primary: #F0F2F5;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', var(--font-body);

    /* Spacing */
    --section-pad: 120px;
    --container-max: 1280px;
    --container-pad: 24px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Z-Index Scale */
    --z-preloader: 9999;
    --z-cursor: 9998;
    --z-header: 100;
    --z-mobile-menu: 90;
    --z-back-to-top: 50;
    --z-scroll-indicator: 10;
}

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background: rgba(206, 17, 38, 0.3);
    color: var(--text-primary);
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ── Typography Helpers ── */
.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--red) 50%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Container ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* ── Section Base ── */
.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border: 2px solid var(--gold);
    border-radius: 50%;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 20px rgba(206, 17, 38, 0.3);
}

.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(206, 17, 38, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-hover);
    box-shadow: inset 0 0 20px rgba(252, 209, 22, 0.03);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(252, 209, 22, 0.05);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

.btn-outline:hover .btn-icon:first-child {
    transform: scale(1.1);
}

/* ── Preloader ── */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: var(--z-preloader);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-logo {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.preloader-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: ringSpin 2s linear infinite;
}

.ring-1 {
    inset: 0;
    border-top-color: var(--red);
    border-right-color: var(--gold);
    animation-duration: 2s;
}

.ring-2 {
    inset: 8px;
    border-bottom-color: var(--gold);
    border-left-color: var(--green);
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.ring-3 {
    inset: 16px;
    border-top-color: var(--green);
    border-right-color: var(--red);
    animation-duration: 1s;
}

.preloader-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.preloader-bar {
    width: 160px;
    height: 2px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
    border-radius: 2px;
    animation: progressFill 1.8s var(--ease-out-expo) forwards;
}

@keyframes ringSpin {
    to { transform: rotate(360deg); }
}

@keyframes progressFill {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ── Custom Cursor ── */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: var(--z-cursor);
    transition: transform 0.15s ease, opacity 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: var(--z-cursor);
    transition: transform 0.25s var(--ease-out-expo), width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
}

.cursor.hovering {
    transform: scale(2.5);
    opacity: 0.5;
}

.cursor-follower.hovering {
    width: 56px;
    height: 56px;
    opacity: 0.3;
    border-color: var(--red);
}

@media (pointer: coarse) {
    .cursor, .cursor-follower { display: none; }
}

/* ── Header / Navigation ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-expo);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(11, 15, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    color: var(--text-primary);
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.4s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    clip-path: inset(0 0 0 0);
}

.nav-cta {
    z-index: 2;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 2;
}

.menu-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out-expo);
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(11, 15, 26, 0.98);
    backdrop-filter: blur(30px);
    z-index: var(--z-mobile-menu);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    padding: 12px 24px;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-list li:nth-child(1) .mobile-nav-link { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-list li:nth-child(2) .mobile-nav-link { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-list li:nth-child(3) .mobile-nav-link { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-list li:nth-child(4) .mobile-nav-link { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-list li:nth-child(5) .mobile-nav-link { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-list li:nth-child(6) .mobile-nav-link { transition-delay: 0.35s; }

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-cta {
    margin-top: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out-expo) 0.4s;
}

.mobile-menu.active .mobile-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, var(--bg-primary) 100%),
        radial-gradient(ellipse 50% 40% at 70% 30%, rgba(206, 17, 38, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 30% 70%, rgba(0, 107, 63, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(252, 209, 22, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(252, 209, 22, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(252, 209, 22, 0.08);
    border: 1px solid rgba(252, 209, 22, 0.15);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-line {
    display: block;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.hero-stat {
    padding: 0 32px;
    text-align: center;
}

.hero-stat-number,
.hero-stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.hero-stat-suffix {
    color: var(--gold);
    margin-left: 2px;
}

.hero-stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    animation: fadeInUp 1s ease 1.5s both;
    z-index: var(--z-scroll-indicator);
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s ease infinite;
}

.scroll-text {
    font-family: var(--font-display);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.5; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 0.6; transform: translateX(-50%) translateY(0); }
}

/* ── Marquee Section ── */
.marquee-section {
    padding: 48px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-label {
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    gap: 64px;
    animation: marqueeScroll 40s linear infinite;
    width: max-content;
}

.marquee-item {
    flex-shrink: 0;
    white-space: nowrap;
}

.marquee-item span {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.marquee-item:hover span {
    color: var(--text-secondary);
}

@keyframes marqueeScroll {
    to { transform: translateX(-50%); }
}

/* ── About Section ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
}

.about-image-bg {
    position: absolute;
    inset: 20px;
    background: linear-gradient(135deg, rgba(206, 17, 38, 0.1), rgba(252, 209, 22, 0.08), rgba(0, 107, 63, 0.1));
    border-radius: 24px;
    transform: rotate(-3deg);
}

.about-image-accent {
    position: absolute;
    inset: 0;
    border: 2px solid var(--border);
    border-radius: 24px;
}

.about-graphic {
    position: absolute;
    inset: 40px;
}

.about-graphic-svg {
    width: 100%;
    height: 100%;
}

.nn-node {
    animation: nodePulse 3s ease-in-out infinite;
}

.nn-node:nth-child(odd) { animation-delay: 0.5s; }
.nn-node:nth-child(3n) { animation-delay: 1s; }

.nn-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 3s ease forwards;
}

.nn-line:nth-child(1) { animation-delay: 0.2s; }
.nn-line:nth-child(2) { animation-delay: 0.4s; }
.nn-line:nth-child(3) { animation-delay: 0.6s; }
.nn-line:nth-child(4) { animation-delay: 0.8s; }
.nn-line:nth-child(5) { animation-delay: 1s; }
.nn-line:nth-child(6) { animation-delay: 1.2s; }
.nn-line:nth-child(7) { animation-delay: 0.3s; }
.nn-line:nth-child(8) { animation-delay: 0.5s; }
.nn-line:nth-child(9) { animation-delay: 0.7s; }
.nn-line:nth-child(10) { animation-delay: 0.9s; }
.nn-line:nth-child(11) { animation-delay: 1.1s; }
.nn-line:nth-child(12) { animation-delay: 1.3s; }

@keyframes nodePulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.about-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: floatCard 6s ease-in-out infinite;
    z-index: 2;
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -30px;
    animation-delay: -3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.floating-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 209, 22, 0.1);
    border-radius: 10px;
}

.floating-icon svg {
    width: 20px;
    height: 20px;
}

.floating-number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.floating-text {
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 107, 63, 0.1);
    border: 1px solid rgba(0, 107, 63, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--green);
}

.about-feature h4 {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ── Why Choose Us ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    position: relative;
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out-expo);
}

.why-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.why-card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--border-hover);
    line-height: 1;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.why-card:hover .why-card-number {
    -webkit-text-stroke: 1px var(--gold);
}

.why-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(206, 17, 38, 0.1);
    border: 1px solid rgba(206, 17, 38, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.why-card:hover .why-card-icon {
    background: rgba(206, 17, 38, 0.2);
    border-color: var(--red);
}

.why-card:nth-child(2) .why-card-icon { background: rgba(252, 209, 22, 0.1); border-color: rgba(252, 209, 22, 0.2); }
.why-card:nth-child(2):hover .why-card-icon { background: rgba(252, 209, 22, 0.2); border-color: var(--gold); }
.why-card:nth-child(3) .why-card-icon { background: rgba(0, 107, 63, 0.1); border-color: rgba(0, 107, 63, 0.2); }
.why-card:nth-child(3):hover .why-card-icon { background: rgba(0, 107, 63, 0.2); border-color: var(--green); }
.why-card:nth-child(4) .why-card-icon { background: rgba(206, 17, 38, 0.1); border-color: rgba(206, 17, 38, 0.2); }

.why-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
}

.why-card-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Services ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.service-card.featured {
    border-color: rgba(252, 209, 22, 0.25);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(252, 209, 22, 0.03) 100%);
}

.service-card.featured:hover {
    border-color: var(--gold);
}

.service-card-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(252, 209, 22, 0.08), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--gold), var(--red));
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    z-index: 2;
}

.service-card-inner {
    position: relative;
    z-index: 1;
    padding: 40px 32px;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(206, 17, 38, 0.1);
    border: 1.5px solid rgba(206, 17, 38, 0.25);
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.4s var(--ease-out-expo);
}

.service-card:hover .service-icon-wrapper {
    background: rgba(206, 17, 38, 0.2);
    border-color: var(--red);
    transform: scale(1.05);
}

.service-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 28px;
}

.service-features li {
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    transition: gap 0.3s var(--ease-out-expo);
}

.service-link:hover {
    gap: 14px;
}

.service-link svg {
    width: 16px;
    height: 16px;
}

/* ── Technologies ── */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech-card {
    position: relative;
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.tech-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.tech-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.tech-card:nth-child(1) .tech-card-bg {
    background: radial-gradient(circle at 80% 20%, rgba(206, 17, 38, 0.08), transparent 60%);
}

.tech-card:nth-child(2) .tech-card-bg {
    background: radial-gradient(circle at 20% 80%, rgba(252, 209, 22, 0.08), transparent 60%);
}

.tech-card:nth-child(3) .tech-card-bg {
    background: radial-gradient(circle at 50% 50%, rgba(0, 107, 63, 0.08), transparent 60%);
}

.tech-card:nth-child(4) .tech-card-bg {
    background: radial-gradient(circle at 80% 80%, rgba(206, 17, 38, 0.06), transparent 60%);
}

.tech-card:hover .tech-card-bg {
    opacity: 1;
}

.tech-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(206, 17, 38, 0.15), rgba(252, 209, 22, 0.1));
    border: 1px solid rgba(252, 209, 22, 0.15);
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.tech-card:hover .tech-icon {
    transform: scale(1.08) rotate(-3deg);
    border-color: var(--gold);
}

.tech-icon svg {
    width: 26px;
    height: 26px;
    color: var(--text-primary);
}

.tech-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tech-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 4px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-tag {
    border-color: rgba(252, 209, 22, 0.15);
    color: var(--text-secondary);
}

/* ── Process Section ── */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    overflow: hidden;
}

.process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--red), var(--gold), var(--green));
    transition: height 1.5s var(--ease-out-expo);
}

.process-line.animate::after {
    height: 100%;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 40px;
    padding: 32px 0;
    position: relative;
}

.process-step:first-child {
    padding-top: 0;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
    z-index: 2;
    transition: all 0.4s var(--ease-out-expo);
}

.process-step:hover .process-step-number {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(252, 209, 22, 0.1);
    box-shadow: 0 0 20px rgba(252, 209, 22, 0.15);
}

.process-step-content {
    padding-top: 8px;
}

.process-step-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Stats Section ── */
.stats-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(206, 17, 38, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 30%, rgba(252, 209, 22, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 70%, rgba(0, 107, 63, 0.04) 0%, transparent 60%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0 48px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--border), transparent);
}

.stat-number,
.stat-suffix {
    display: inline;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
}

.stat-suffix {
    color: var(--gold);
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── Testimonials ── */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 28px;
    transition: transform 0.6s var(--ease-out-expo);
}

.testimonial-card {
    flex: 0 0 calc(50% - 14px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s var(--ease-out-expo);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--gold));
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Testimonial Navigation */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out-expo);
}

.testimonial-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(252, 209, 22, 0.05);
}

.testimonial-btn svg {
    width: 18px;
    height: 18px;
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
}

/* ── Contact Section ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 209, 22, 0.08);
    border: 1px solid rgba(252, 209, 22, 0.15);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-detail-value {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-muted);
    transition: all 0.3s var(--ease-out-expo);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(252, 209, 22, 0.05);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(252, 209, 22, 0.1);
}

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

.form-error {
    display: none;
    font-size: 0.75rem;
    color: var(--red);
    margin-top: 6px;
}

.form-error.visible {
    display: block;
    animation: shake 0.4s ease;
}

.form-input.error {
    border-color: var(--red);
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 107, 63, 0.1);
    border: 1px solid rgba(0, 107, 63, 0.3);
    border-radius: 12px;
    margin-top: 20px;
}

.form-success.visible {
    display: flex;
    animation: fadeIn 0.5s ease;
}

.form-success svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--green-light);
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn.loading .btn-text,
.btn.loading .btn-icon {
    display: none;
}

.btn.loading .btn-loader {
    display: block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Footer ── */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-links-title {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out-expo);
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright,
.footer-credit {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer-credit {
    color: var(--text-muted);
    opacity: 0.7;
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-muted);
    z-index: var(--z-back-to-top);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ── Scroll Reveal Animations ── */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-reveal="up"] {
    transform: translateY(40px);
}

[data-reveal="left"] {
    transform: translateX(-50px);
}

[data-reveal="right"] {
    transform: translateX(50px);
}

[data-reveal="scale"] {
    transform: scale(0.9);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

[data-delay="0"] { transition-delay: 0ms; }
[data-delay="50"] { transition-delay: 50ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="250"] { transition-delay: 250ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="350"] { transition-delay: 350ms; }
[data-delay="400"] { transition-delay: 400ms; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        max-width: 420px;
        margin: 0 auto;
    }

    .about-content .section-title {
        text-align: center;
    }

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

    .about-features {
        max-width: 480px;
        margin: 32px auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info .section-title {
        text-align: center;
    }

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

    .contact-details {
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .contact-social {
        justify-content: center;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 80px;
    }

    .nav, .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-stat {
        padding: 0;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .stat-item {
        padding: 16px 24px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stats-grid {
        gap: 16px;
    }

    .process-step {
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .about-floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .process-step-number {
        width: 44px;
        height: 44px;
        font-size: 0.9375rem;
    }

    .process-step {
        gap: 16px;
    }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .preloader {
        display: none;
    }

    html {
        scroll-behavior: auto;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
