/* styles.css - Modern corporate overhaul */
:root {
    --ink-900: #0a0a0a;
    --ink-800: #121212;
    --ink-700: #1f1f1f;
    --brand-700: #0a1d3b;
    --brand-600: #0f2a55;
    --brand-500: #143970;
    --accent-500: #c1121f;
    --accent-600: #a50f1a;
    --sun-500: #f2b35c;
    --bg-100: #ffffff;
    --bg-200: #f6f6f8;
    --surface-100: #ffffff;
    --surface-200: #f2f2f5;
    --text-900: #0a0a0a;
    --text-700: #1f1f1f;
    --text-600: #3a3a3a;
    --border-200: #e3e3e6;
    --success-500: #2d9d78;
    --shadow-sm: 0 6px 18px rgba(11, 18, 32, 0.08);
    --shadow-md: 0 18px 40px rgba(11, 18, 32, 0.14);
    --shadow-lg: 0 30px 70px rgba(11, 18, 32, 0.16);
    --transition: all 0.25s ease;

    --primary-color: var(--brand-700);
    --secondary-color: var(--ink-700);
    --accent-color: var(--accent-500);
    --light-color: var(--surface-200);
    --dark-color: var(--ink-900);
    --text-color: var(--text-600);
    --border-color: var(--border-200);
    --success-color: var(--success-500);
    --shadow: var(--shadow-sm);
}

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

body {
    font-family: "Product Sans", "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-700);
    background: linear-gradient(180deg, var(--bg-100), var(--bg-200));
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: -200px auto auto -200px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at center, rgba(193, 18, 31, 0.12), rgba(193, 18, 31, 0));
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    inset: auto -180px -180px auto;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at center, rgba(20, 57, 112, 0.12), rgba(20, 57, 112, 0));
    pointer-events: none;
    z-index: 0;
}

.site-main {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    color: inherit;
}

.muted {
    color: var(--text-600);
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent-500);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Top Bar */
.top-bar {
    background: var(--ink-900);
    color: white;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-bar-message {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.top-bar-message .muted {
    color: rgba(255, 255, 255, 0.75);
}

.top-bar-message .pill {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.top-bar-actions {
    display: flex;
    gap: 18px;
    align-items: center;
}

.top-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
}

.top-link:hover {
    color: #ffffff;
}

.top-link i {
    color: var(--accent-500);
}

/* Header Styles */
.main-header {
    padding: 22px 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-200);
    position: relative;
    z-index: 3;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-900);
    gap: 0;
}

.logo img {
    width: 200px;
    height: auto;
    display: block;
}

.header-contact {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface-200);
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid var(--border-200);
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--brand-500);
}

.contact-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-600);
}

.contact-item strong {
    display: block;
    color: var(--text-900);
    font-weight: 600;
}

/* Navigation */
.main-nav {
    background-color: rgba(10, 10, 10, 0.96);
    position: sticky;
    top: 0;
    z-index: 4;
    box-shadow: var(--shadow-sm);
}

.navbar {
    position: sticky;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--accent-500), var(--brand-500));
    border-radius: 999px;
    transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 6px;
    flex: 1;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 16px 18px;
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: rgba(193, 18, 31, 0.22);
    color: #ffffff;
}

.nav-cta {
    background: var(--accent-500);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.6px;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--accent-600);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 10px;
}

/* Hero */
.hero {
    background: url("/images/hero-sky.svg") center/cover no-repeat;
    color: white;
    padding: 110px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.starfield {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 80% 60%, rgba(255,255,255,0.55), transparent),
        radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,0.45), transparent),
        radial-gradient(2px 2px at 70% 80%, rgba(255,255,255,0.6), transparent);
    opacity: 0.7;
    animation: star-drift 40s linear infinite;
    animation-play-state: paused;
}

.satellite {
    position: absolute;
    width: 54px;
    height: 20px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(210,210,210,0.9));
    box-shadow: 0 0 12px rgba(255,255,255,0.35);
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.satellite::before,
.satellite::after {
    content: \"\";
    position: absolute;
    top: 4px;
    width: 16px;
    height: 12px;
    background: linear-gradient(180deg, rgba(20, 57, 112, 0.95), rgba(8, 20, 40, 0.95));
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}

.satellite::before { left: -20px; }
.satellite::after { right: -20px; }
.satellite .dish {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(193, 18, 31, 0.9);
    border-radius: 50%;
    position: relative;
}

.satellite .dish::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background: rgba(193, 18, 31, 0.9);
    top: 4px;
    left: 8px;
    transform: rotate(-20deg);
    transform-origin: left center;
}

.satellite .panel {
    position: absolute;
    width: 16px;
    height: 10px;
    background: linear-gradient(180deg, rgba(20, 57, 112, 0.95), rgba(8, 20, 40, 0.95));
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
    animation: panel-rotate 8s linear infinite;
    animation-play-state: paused;
}

.satellite .panel-left { left: -26px; }
.satellite .panel-right { right: -26px; }

.beam {
    position: absolute;
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, rgba(193, 18, 31, 0), rgba(193, 18, 31, 0.6), rgba(193, 18, 31, 0));
    opacity: 0.5;
    filter: blur(0.5px);
    animation: beam-pulse 6s ease-in-out infinite;
    animation-play-state: paused;
}

.beam-1 {
    top: 35%;
    left: 10%;
    transform: rotate(-8deg);
}

.beam-2 {
    top: 65%;
    right: 12%;
    transform: rotate(12deg);
    animation-delay: -2s;
}


.satellite-1 {
    top: 20%;
    left: -10%;
    animation: satellite-fly 24s linear infinite;
    animation-play-state: paused;
}

.satellite-2 {
    top: 55%;
    left: -15%;
    animation: satellite-fly 30s linear infinite;
    animation-play-state: paused;
    animation-delay: 12s;
    opacity: 0.6;
}

.satellite-3 {
    top: 75%;
    left: -20%;
    animation: satellite-fly 36s linear infinite;
    animation-play-state: paused;
    animation-delay: 27s;
    opacity: 0.5;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
    animation-play-state: paused;
}

.orb-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(193, 18, 31, 0.6), rgba(193, 18, 31, 0));
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(20, 57, 112, 0.6), rgba(20, 57, 112, 0));
    bottom: -12%;
    right: -5%;
    animation-delay: 7s;
}

.orb-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
    top: 35%;
    right: 10%;
    animation-delay: 14s;
}

#particles-js {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 10, 10, 0.45), rgba(10, 29, 59, 0.35));
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -60% auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(242, 179, 92, 0.35), rgba(242, 179, 92, 0));
    z-index: 1;
}

.hero-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-bokeh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 70%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 40%),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 45%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 40%),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 45%);
    opacity: 0.55;
    filter: blur(6px);
    animation: drift 18s ease-in-out infinite;
    animation-play-state: paused;
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 0);
    background-size: 16px 16px;
    opacity: 0.35;
    animation: pan 40s linear infinite;
    animation-play-state: paused;
}

.hero-shape {
    position: absolute;
    inset: -10% -10% auto auto;
    width: 120%;
    height: 120%;
    background: linear-gradient(145deg, rgba(193, 18, 31, 0.0), rgba(193, 18, 31, 0.12));
    transform: rotate(-12deg);
    opacity: 0.45;
    animation: sweep 16s ease-in-out infinite;
    animation-play-state: paused;
}

.hero-slider {
    position: relative;
    z-index: 4;
    min-height: 420px;
}

.hero-slide {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
    pointer-events: none;
    min-height: 420px;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

.hero-dots-nav {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    position: relative;
    z-index: 4;
}

.hero-dot {
    width: 10px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--accent-500);
    border-color: var(--accent-500);
}

.hero-slide.is-transitioning {
    filter: blur(1px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    gap: 10px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    z-index: 3;
}

.mouse-icon {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.mouse-wheel {
    width: 3px;
    height: 12px;
    background: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

.hero-content {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 18px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 26px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-lg);
}

.hero-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.hero-card ul {
    list-style: none;
    margin-top: 12px;
}

.hero-card li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
}

.hero-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sun-500);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-500);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--accent-600);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--ink-900);
    color: white;
}

.btn-dark:hover {
    background: var(--ink-700);
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

.section-alt {
    background: var(--surface-100);
}

.section-ink {
    background: var(--ink-900);
    color: white;
}

.section-title {
    text-align: center;
    color: var(--text-900);
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.section-ink .section-title,
.section-ink .section-subtitle {
    color: white;
}

.section-subtitle {
    text-align: center;
    color: var(--text-600);
    font-size: 1.1rem;
    max-width: 820px;
    margin: 0 auto 50px;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--accent-500);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Layout helpers */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.card {
    background: var(--surface-100);
    border-radius: 16px;
    padding: 26px;
    border: 1px solid var(--border-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.card h3 {
    color: var(--text-900);
    margin-bottom: 10px;
}

.card-compact {
    padding: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

.service-card:hover .icon-badge {
    transform: translateY(-8px) scale(1.05) rotateY(360deg);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 115, 183, 0.12);
    color: var(--brand-500);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.list-check {
    list-style: none;
    margin-top: 16px;
}

.list-check li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.list-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-500);
    font-weight: 700;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    background: linear-gradient(140deg, #ffffff, #f1f6fb);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-200);
}

.stat-number {
    font-size: 2.8rem;
    color: var(--brand-500);
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

/* Motion */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.load-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.loaded .load-in {
    opacity: 1;
    transform: translateY(0);
}

.float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

@keyframes drift {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-10px, 10px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@keyframes pan {
    0% { background-position: 0 0; }
    100% { background-position: 120px 120px; }
}

@keyframes sweep {
    0% { transform: rotate(-12deg) translateX(0); }
    50% { transform: rotate(-12deg) translateX(-4%); }
    100% { transform: rotate(-12deg) translateX(0); }
}


.hero-ready .gradient-orb,
.hero-ready .hero-bokeh,
.hero-ready .hero-dots,
.hero-ready .hero-shape,
.hero-ready .starfield,
.hero-ready .satellite-1,
.hero-ready .satellite-2,
.hero-ready .satellite-3 {
    animation-play-state: running;
}

.hero-ready .panel,
.hero-ready .beam {
    animation-play-state: running;
}
@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

@keyframes star-drift {
    from { transform: translateX(0); }
    to { transform: translateX(-80px); }
}

@keyframes panel-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes beam-pulse {
    0%, 100% { opacity: 0.2; transform: scaleX(0.8); }
    50% { opacity: 0.6; transform: scaleX(1); }
}

@keyframes satellite-fly {
    0% { transform: translateX(0) translateY(0) rotate(2deg); }
    40% { transform: translateX(45vw) translateY(-10px) rotate(6deg); }
    70% { transform: translateX(85vw) translateY(6px) rotate(2deg); }
    100% { transform: translateX(130vw) translateY(0) rotate(-2deg); }
}

@keyframes shimmer {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes starPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.stat-label {
    font-size: 1.05rem;
    color: var(--text-700);
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.client-logo {
    background: var(--surface-100);
    border: 1px solid var(--border-200);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 10px;
    justify-items: center;
}

.client-logo img {
    width: 100%;
    max-width: 180px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.85;
}

.client-logo span {
    font-size: 0.85rem;
    color: var(--text-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-frame {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border-200);
    box-shadow: var(--shadow-md);
    background: var(--ink-900);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-frame.compact img {
    height: 280px;
    object-fit: cover;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.case-card {
    background: var(--surface-100);
    border-radius: 18px;
    padding: 26px;
    border: 1px solid var(--border-200);
    box-shadow: var(--shadow-sm);
}

.case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.case-meta span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(31, 115, 183, 0.12);
    color: var(--brand-700);
    font-weight: 600;
    font-size: 0.8rem;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.case-metric {
    background: var(--surface-200);
    border-radius: 14px;
    padding: 12px;
    text-align: center;
}

.case-metric strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-900);
}

.case-metric span {
    font-size: 0.8rem;
    color: var(--text-600);
}

.timeline {
    display: grid;
    gap: 20px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: start;
}

.timeline-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-500);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.step-card {
    background: var(--surface-100);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-200);
}

.step-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-500);
    margin-bottom: 12px;
}

.badge-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.badge {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(31, 115, 183, 0.12);
    color: var(--brand-700);
    font-weight: 600;
    font-size: 0.85rem;
}

.info-panel {
    background: var(--surface-100);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border-200);
    box-shadow: var(--shadow-sm);
}

.mt-lg {
    margin-top: 28px;
}

.mt-md {
    margin-top: 20px;
}

.mt-xl {
    margin-top: 26px;
}

.form-panel {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border-200);
    box-shadow: var(--shadow-sm);
}

.form-panel input,
.form-panel textarea,
.form-panel select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border: 1px solid var(--border-200);
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-panel input:focus,
.form-panel textarea:focus,
.form-panel select:focus {
    outline: none;
    border-color: var(--brand-500);
    box-shadow: 0 0 0 3px rgba(31, 115, 183, 0.12);
}

.form-panel textarea {
    height: 200px;
    resize: vertical;
}

.floating-label {
    position: relative;
    margin-bottom: 22px;
}

.form-input {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-200);
    font-size: 1rem;
    color: var(--text-900);
    transition: border-color 0.3s ease;
}

.form-label {
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--text-600);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-input:focus ~ .form-label,
.form-input:valid ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -14px;
    font-size: 0.75rem;
    color: var(--accent-500);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-500), var(--brand-500));
    transition: width 0.3s ease;
}

.form-input:focus ~ .input-border {
    width: 100%;
}

.submit-btn {
    position: relative;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--accent-500) 0%, var(--brand-500) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.03);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:active::before {
    width: 300px;
    height: 300px;
}

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

.submit-btn.loading .btn-text { display: none; }
.submit-btn.loading .btn-loader { display: inline-block; }

.alert-success {
    background: #d7f5ea;
    color: #144337;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    border: 1px solid #b4ead6;
}

/* Footer */
.footer-cta {
    background: linear-gradient(120deg, var(--ink-900), var(--brand-700));
    color: white;
    padding: 60px 0;
}

.footer-cta-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    gap: 24px;
}

.footer-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.footer-cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.main-footer {
    background: var(--ink-900);
    color: white;
    padding: 70px 0 30px;
    position: relative;
}

.main-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 140px;
    background: linear-gradient(180deg, rgba(31, 115, 183, 0.28), transparent);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 36px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-500);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.68);
    position: relative;
    z-index: 1;
}

/* Testimonials */
.testimonials-carousel {
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
}

.testimonials-carousel .swiper-wrapper {
    align-items: stretch;
}

.testimonials-carousel .swiper-slide {
    width: 320px;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.quote-icon {
    font-size: 64px;
    color: var(--accent-500);
    line-height: 1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.testimonial-text {
    margin: 18px 0 24px;
    color: var(--text-700);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ink-900);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.client-name {
    margin: 0;
    color: var(--text-900);
}

.client-position {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-600);
}

.rating {
    margin-top: 14px;
}

.star {
    color: #ffd700;
    font-size: 20px;
    display: inline-block;
    animation: starPop 0.5s ease forwards;
    opacity: 0;
    transform: scale(0);
}

.star:nth-child(1) { animation-delay: 0.1s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.3s; }
.star:nth-child(4) { animation-delay: 0.4s; }
.star:nth-child(5) { animation-delay: 0.5s; }

.carousel-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.carousel-controls button {
    border: none;
    width: 54px;
    height: 42px;
    border-radius: 50%;
    background: var(--ink-900);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-controls button:hover {
    background: var(--accent-500);
    transform: translateY(-2px);
}

/* Custom cursor */
.custom-cursor {
    width: 10px;
    height: 12px;
    border: 2px solid var(--accent-500);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(193, 18, 31, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
}

.cursor-hover {
    transform: scale(1.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.6rem;
    }

    .header-contact {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 70px;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

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

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 18, 32, 0.98);
        padding: 10px 0;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu li a {
        padding: 14px 22px;
        border-radius: 0;
    }

    .nav-cta {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-cta-actions {
        justify-content: flex-start;
    }
}
