/* ========================================
   Aklipi IT Solutions — Streamlined 2026
   Dark Premium Design System
   ======================================== */

:root {
    /* Dark palette */
    --color-bg: #06070a;
    --color-bg-alt: #0a0c12;
    --color-bg-surface: #10131a;
    --color-bg-raised: #161923;
    --color-bg-card: #12151e;
    --color-bg-card-hover: #181c27;

    /* Brand gradient */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 40%, #06b6d4 100%);
    --gradient-text: linear-gradient(135deg, #818cf8, #22d3ee);

    /* Colors */
    --color-primary: #6366f1;
    --color-primary-light: #818cf8;
    --color-primary-dark: #4f46e5;
    --color-secondary: #22d3ee;
    --color-accent: #f59e0b;
    --color-accent-hover: #fbbf24;

    /* Text */
    --color-text: #eeeef0;
    --color-text-secondary: #9395a5;
    --color-text-muted: #5c5e6e;
    --color-text-white: #ffffff;

    /* Borders */
    --color-border: rgba(255,255,255,0.06);
    --color-border-hover: rgba(255,255,255,0.12);
    --color-border-active: rgba(99,102,241,0.4);

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;

    /* Spacing & Radius */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.6);

    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 140px 0;
    position: relative;
}

/* --- Gradient text utility --- */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Section Headers --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary-light);
    margin-bottom: 20px;
    padding: 6px 16px;
    background: rgba(99,102,241,0.08);
    border-radius: var(--radius-full);
    border: 1px solid rgba(99,102,241,0.15);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn svg {
    transition: transform var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-bg);
    box-shadow: 0 4px 24px rgba(245,158,11,0.25);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245,158,11,0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-hover);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(6, 7, 10, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
}

.logo-text span {
    font-weight: 400;
    color: var(--color-text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
}

.nav-links li a {
    padding: 8px 16px;
    color: var(--color-text-secondary);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--color-text);
}

.nav-cta {
    background: var(--color-accent) !important;
    color: var(--color-bg) !important;
    font-weight: 600 !important;
    padding: 9px 20px !important;
    border-radius: var(--radius-sm) !important;
}

.nav-cta:hover {
    background: var(--color-accent-hover) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

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

.hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 32px 80px;
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(99,102,241,0.12) 0%, transparent 70%),
        var(--color-bg);
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary-light);
    margin-bottom: 32px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: #34d399;
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(52,211,153,0.4);
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}

.hero-line {
    display: block;
    color: var(--color-text-white);
}

.hero-line-accent {
    background: linear-gradient(135deg, #818cf8, #f59e0b, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-trust-item {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.hero-trust-item strong {
    color: var(--color-text);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1rem;
}

.hero-trust-divider {
    width: 1px;
    height: 28px;
    background: var(--color-border-hover);
}

.hero-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.hero-image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

/* Hero fade-up animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.15s; }
.fade-up:nth-child(2) { animation-delay: 0.3s; }
.fade-up:nth-child(3) { animation-delay: 0.45s; }
.fade-up:nth-child(4) { animation-delay: 0.6s; }
.fade-up:nth-child(5) { animation-delay: 0.75s; }
.fade-up:nth-child(6) { animation-delay: 0.9s; }

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

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 48px 0;
}

.trust-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

/* Marquee */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 160px;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg) 0%, transparent 100%);
}

.marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-bg) 0%, transparent 100%);
}

.marquee-track {
    display: inline-flex;
    animation: marqueeScroll 35s linear infinite;
}

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

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    background: var(--color-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border-hover);
    background: var(--color-bg-card-hover);
}

.service-card-img {
    height: 190px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.7) saturate(0.8);
}

.service-card:hover .service-card-img img {
    transform: scale(1.06);
    filter: brightness(0.8) saturate(1);
}

.service-card-body {
    padding: 24px 24px 28px;
}

.service-number {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-primary-light);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    opacity: 0.5;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-features li {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-primary-light);
    background: rgba(99,102,241,0.08);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(99,102,241,0.12);
}

/* ========================================
   ABOUT
   ======================================== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: brightness(0.75);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    height: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--color-bg);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    box-shadow: var(--shadow-lg);
}

.exp-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-text {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.3;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.about-text .section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.about-lead {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.75;
}

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

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast);
}

.about-highlight:hover {
    border-color: var(--color-border-hover);
}

.highlight-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(99,102,241,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
}

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

.about-highlight strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}

.about-highlight p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
    background: var(--color-bg-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 72px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 8px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: 0.02em;
}

/* ========================================
   PROCESS
   ======================================== */
.process-timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--color-primary), rgba(34,211,238,0.3), transparent);
}

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

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

.step-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: border-color var(--transition);
}

.process-step:hover .step-marker {
    border-color: var(--color-primary);
}

.step-marker span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content {
    padding-top: 12px;
    text-align: left;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

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

/* ========================================
   WHY US
   ======================================== */
.why-us {
    background: var(--color-bg-alt);
}

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

.why-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.why-card-number {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
}

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

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--color-border-hover);
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    margin-bottom: -8px;
    user-select: none;
}

.testimonial-card blockquote {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    padding: 120px 0;
    background: var(--color-bg-surface);
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-lead {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 36px;
    line-height: 1.75;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast);
}

.contact-item:hover {
    border-color: var(--color-border-hover);
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(99,102,241,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
}

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

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

.contact-detail-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-text);
}

.contact-form {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%235c5e6e' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}

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

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

.form-success {
    display: none;
    text-align: center;
    color: #34d399;
    font-weight: 600;
    margin-top: 16px;
    padding: 14px;
    background: rgba(52,211,153,0.08);
    border: 1px solid rgba(52,211,153,0.15);
    border-radius: var(--radius-sm);
}

.form-success.show { display: block; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-bg-surface);
    border-top: 1px solid var(--color-border);
    padding: 72px 0 0;
}

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

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-brand > p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    padding: 5px 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-text);
}

.footer-bottom {
    padding: 28px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    opacity: 0.5;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    color: var(--color-text-secondary);
}

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

.back-to-top:hover {
    background: var(--color-bg-raised);
    border-color: var(--color-border-hover);
    color: var(--color-text);
    transform: translateY(-2px);
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-content { order: 1; }
    .hero-image { order: 2; }
    .hero-subtext { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-image-wrapper img { height: 360px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .about-text .section-title { text-align: center; }
    .about-text .section-tag { display: block; text-align: center; }
    .about-lead { text-align: center; }
    .about-text > p { text-align: center; }
    .about-highlights { align-items: center; }

    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .contact-info .section-title { text-align: center; }
    .contact-info .section-tag { display: block; text-align: center; }
    .contact-lead { text-align: center; }

    .footer-top { grid-template-columns: 1fr; gap: 48px; }
    .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 100px 0; }
    .container { padding: 0 20px; }

    /* Mobile Nav */
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-bg-surface);
        border-left: 1px solid var(--color-border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        transition: right var(--transition);
    }

    .nav-links.open { right: 0; }

    .nav-links li a {
        color: var(--color-text) !important;
        font-size: 1.05rem;
        padding: 12px 28px;
    }

    .nav-cta {
        background: var(--color-accent) !important;
        color: var(--color-bg) !important;
    }

    .hero-title { font-size: clamp(2.4rem, 7vw, 3rem); }
    .hero-image-wrapper img { height: 280px; }
    .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .process-timeline { max-width: 100%; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-nav { grid-template-columns: 1fr 1fr; }
    .cta-content h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .section { padding: 80px 0; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; gap: 12px; }
    .hero-trust-divider { display: none; }
    .about-img-secondary { display: none; }
    .about-experience-badge { width: 85px; height: 85px; top: -12px; right: -8px; }
    .exp-number { font-size: 1.4rem; }
    .stat-number { font-size: 2.2rem; }
    .footer-nav { grid-template-columns: 1fr; }
}
