@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Space+Grotesk:wght@300..700&display=swap');

:root {
    --margins: 120px;
    --wrapper-width: 1300px;
    --border-radius: 4px;

    --primary: #6d00fc;
    --primary-hsl: 270, 70%, 60%;
    --primary-transparent: rgb(140, 82, 255, 0.125);
    --background: #111;
    --text: white;
    --text-muted: rgb(180, 180, 180);
    --border-color: rgb(255, 255, 255, 0.1);
    --border-color-light: rgb(255, 255, 255, 0.15);
    --border-color-lighter: rgb(255, 255, 255, 0.25);

    --font-primary: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-mono: "IBM Plex Sans", monospace;

    --transition-fast: 0.2s;
    --transition-default: 0.3s;
    --transition-slow: 0.9s;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

/* ── Site Header ──────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    background: rgba(17, 17, 17, 0);
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
    background: rgba(13, 13, 13, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    width: 100%;
    max-width: var(--wrapper-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.header-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.header-nav-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
}

.header-nav-link::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0.85rem;
    right: 0.85rem;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: left;
}

.header-nav-link:hover {
    color: rgba(255, 255, 255, 0.95);
}

.header-nav-link:hover::after {
    transform: scaleX(1);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    margin-left: 0.5rem;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-cta:hover {
    border-color: var(--primary);
    background: rgba(109, 0, 252, 0.12);
    color: #d1b3ff;
}

/* Push hero section down to account for fixed header */
.hero-section {
    padding-top: 72px;
}

.wrapper {
    max-width: var(--wrapper-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.header-info {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.header-sub-title {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.header-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text);
}

.sub-title {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.world-map-section {
    padding: 4rem 0;
    position: relative;
    margin-block: 4rem;
}

.world-map-container {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.world-map-image {
    width: 100%;
    height: auto;
    max-width: 1200px;
    transform: scale(1.2);
    filter: grayscale(100%) brightness(0.7) contrast(1.2);
    transition: filter var(--transition-default) ease;
}

.datacenter-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: transform var(--transition-default) ease;
}

.datacenter-dot:hover {
    transform: scale(1.2);
}

.us-dot {
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary);
    top: 25%;
    left: 22%;
}

.eu-dot {
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary);
    top: 13%;
    left: 51%;
}

.ny-dot {
    background: #ffd700;
    box-shadow: 0 0 20px #ffd700;
    top: 33%;
    left: 23%;
}

.sg-dot {
    background: #ffd700;
    box-shadow: 0 0 20px #ffd700;
    top: 60%;
    left: 81.5%;
}

.dot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
}

.ny-dot .dot-pulse {
    background: #ffd700;
}

.sg-dot .dot-pulse {
    background: #ffd700;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.datacenter-tooltip {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-default) ease;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.datacenter-dot:hover .datacenter-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.tooltip-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
}

.tooltip-header .flag {
    font-size: 1rem;
}

.tooltip-header .location {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.tooltip-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tooltip-content .feature {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.2;
}

.ny-dot .datacenter-tooltip {
    border: 1px solid #ffd700;
}

.sg-dot .datacenter-tooltip {
    border: 1px solid #ffd700;
}

.ny-dot .tooltip-header .location {
    color: #ffd700;
}

.sg-dot .tooltip-header .location {
    color: #ffd700;
}

.ny-dot .tooltip-content .coming-soon {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
}

.sg-dot .tooltip-content .coming-soon {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 0;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    text-align: left;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
    gap: 3.5rem;
}

/* ── Hero Status Badge (red breathing glow) ────────────── */
.hero-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.1rem;
    background: rgba(220, 30, 60, 0.08);
    border: 1px solid rgba(220, 30, 60, 0.28);
    border-radius: 50px;
    color: rgba(255, 150, 150, 0.9);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    width: fit-content;
}

.hero-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e02040;
    flex-shrink: 0;
    box-shadow: 0 0 6px 2px rgba(220, 30, 60, 0.5);
    animation: redBreath 2.4s ease-in-out infinite;
}

@keyframes redBreath {

    0%,
    100% {
        box-shadow: 0 0 5px 2px rgba(220, 30, 60, 0.45);
        opacity: 1;
    }

    50% {
        box-shadow: 0 0 14px 5px rgba(220, 30, 60, 0.75);
        opacity: 0.75;
    }
}

/* ── FiveM purple glow text ────────────────────────────── */
.hero-fivem-glow {
    color: #8B5CF6;
    text-shadow:
        0 0 18px rgba(139, 92, 246, 0.55),
        0 0 40px rgba(109, 0, 252, 0.25);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.fade-in-text,
.fade-in-text-delay {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-text-delay {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-title-gradient {
    color: #6d00fc;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 3rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}



.hero-visual-card {
    position: relative;
    z-index: 1;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), rgba(10, 10, 10, 0.96));
    border-radius: 32px;
    padding: 2rem 2.25rem 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(18px);
    max-width: 420px;
}

.hero-visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(109, 0, 252, 0.12);
    border: 1px solid rgba(109, 0, 252, 0.4);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d1c4ff;
    margin-bottom: 1.1rem;
}

.hero-visual-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.hero-visual-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}


/* ── Orbit System ─────────────────────────────────────────── */
.orbit-system {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.orbit-ring-inner {
    width: 240px;
    height: 240px;
}

.orbit-ring-outer {
    width: 380px;
    height: 380px;
    border-color: rgba(255, 255, 255, 0.08);
}

.orbit-center {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Glow efekt za logem — blur pouze na pozadí */
.orbit-center::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
            rgba(130, 50, 255, 0.5) 0%,
            rgba(100, 0, 220, 0.25) 45%,
            transparent 75%);
    filter: blur(18px);
    z-index: -1;
}

.orbit-logo {
    position: relative;
    z-index: 3;
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: none;
}

.orbit-tag {
    position: absolute;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(12, 10, 28, 0.92);
    border: 1px solid rgba(130, 80, 255, 0.3);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(6px);
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: orbitFloat 5s ease-in-out infinite;
}

.orbit-tag[data-index="0"] {
    animation-delay: 0.0s;
}

.orbit-tag[data-index="1"] {
    animation-delay: 1.2s;
}

.orbit-tag[data-index="2"] {
    animation-delay: 2.5s;
}

.orbit-tag[data-index="3"] {
    animation-delay: 3.7s;
}

@keyframes orbitFloat {

    0%,
    100% {
        margin-top: 0px;
        box-shadow:
            0 8px 24px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.04) inset,
            0 0 10px rgba(130, 80, 255, 0.15);
    }

    50% {
        margin-top: -9px;
        box-shadow:
            0 14px 32px rgba(0, 0, 0, 0.7),
            0 0 0 1px rgba(255, 255, 255, 0.06) inset,
            0 0 22px rgba(130, 80, 255, 0.35);
    }
}


.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-default);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: transparent;
    color: #6d00fc;
    border: 2px solid #6d00fc;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-default);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(140, 82, 255, 0.4);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border-color-lighter);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(140, 82, 255, 0.4);
    transform: translateY(-2px);
}

.btn-wip {
    color: #ffd700 !important;
    border-color: #ffd700 !important;
}

.btn-wip:hover {
    background: rgba(255, 215, 0, 0.05) !important;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4) !important;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

html {
    scroll-behavior: smooth;
}

/* About Section */
.about-section {
    padding: 6rem 0;
}

/* ── About header / bio ─────────────────────────────────── */
.about-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.about-bio {
    max-width: 560px;
}

.about-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0.5rem 0 1rem;
    letter-spacing: -0.02em;
}

.about-bio-text {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1rem;
}

.about-stats-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-end;
    flex-shrink: 0;
}

.about-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(200, 170, 255, 0.85);
    background: rgba(109, 0, 252, 0.1);
    border: 1px solid rgba(109, 0, 252, 0.25);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.stat-stars {
    color: #f5c542;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.stat-stars .star-half {
    opacity: 0.4;
}

/* ── Cards grid ─────────────────────────────────────────── */
.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    cursor: default;
}

.about-card:hover {
    border-color: rgba(109, 0, 252, 0.4);
    background: rgba(109, 0, 252, 0.05);
    transform: translateY(-3px);
}

.about-card-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    opacity: 0.9;
    flex-shrink: 0;
}

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

.about-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.about-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.about-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.about-card-tags span {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(200, 170, 255, 0.7);
    background: rgba(109, 0, 252, 0.08);
    border: 1px solid rgba(109, 0, 252, 0.18);
    border-radius: 6px;
    padding: 0.2rem 0.55rem;
    letter-spacing: 0.02em;
}

/* ── CTA row ────────────────────────────────────────────── */
.about-cta-row {
    display: flex;
    justify-content: center;
}

.ddos-coverage p {

    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.location-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.location-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition-default);
}

.location-badge:hover {
    background: rgba(140, 82, 255, 0.1);
    border-color: rgba(140, 82, 255, 0.3);
    color: var(--text);
}

@media (max-width: 768px) {
    .ddos-protection-section {
        padding: 3rem 0;
    }

    .ddos-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ddos-left,
    .ddos-right {
        text-align: left;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ddos-stats-box {
        padding: 1.5rem;
    }
}

.datacenters-section {
    padding: 4rem 0;
    margin-block: 4rem;
}

.datacenters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.datacenter-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.datacenter-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
    filter: grayscale(20%) brightness(0.9);
    transition: all var(--transition-default);
}

.datacenter-item:hover .datacenter-image {
    filter: grayscale(0%) brightness(1);
}

.datacenter-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-default);
}

.datacenter-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.datacenter-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.datacenter-location {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.datacenter-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.datacenter-features li {
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: 1rem;
    position: relative;
    font-size: 0.95rem;
}

.datacenter-features li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.datacenter-info .btn-primary {
    align-self: flex-start;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .datacenters-section {
        padding: 3rem 0;
    }

    .datacenters-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .datacenter-image {
        height: 200px;
    }

    .datacenter-title {
        font-size: 1.5rem;
    }

    .datacenter-info .btn-primary {
        align-self: center;
        width: 100%;
        justify-content: center;
    }
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 3.5rem 0 2rem;
    margin-top: 5rem;
    position: relative;
}

/* Three-column inner row */
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Left: brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text);
    font-family: var(--font-primary);
    line-height: 1;
}

.footer-logo span {
    color: var(--primary);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Center: email */
.footer-contact {
    text-align: center;
}

.footer-email {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid var(--border-color-light);
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-email:hover {
    border-color: var(--primary);
    color: #c4a0ff;
    background: rgba(109, 0, 252, 0.08);
}

/* Right: social icons */
.footer-socials {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color-light);
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social-icon:hover {
    border-color: var(--primary);
    color: #c4a0ff;
    background: rgba(109, 0, 252, 0.1);
    transform: translateY(-2px);
}

/* Divider */
.footer-divider {
    height: 1px;
    background: var(--border-color);
    margin-bottom: 1.5rem;
}

/* Bottom row */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-copy,
.footer-made {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
        margin-top: 3rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

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

.projects-section {
    padding: 4rem 0;
}

.project-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.tab-button {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-default);
}

.tab-button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-button.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.project-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all var(--transition-default);
}

.project-layout.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.projects-container {
    position: relative;
    min-height: 400px;
}

.project-left {
    text-align: left;
}

.project-right {
    text-align: left;
}

.project-header {
    margin-bottom: 2rem;
}

.project-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.project-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.project-year {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-year-wip {
    color: #ffd700 !important;
}

.project-description {
    margin-bottom: 0;
}

.project-description p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.project-services {
    margin-bottom: 2rem;
}

.project-services h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition-default);
    text-align: left;
}

.service-item:hover {
    background: rgba(140, 82, 255, 0.1);
    border-color: rgba(140, 82, 255, 0.3);
    color: var(--text);
}

.project-cta {
    display: flex;
    justify-content: flex-start;
}


.project-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.project-features li {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.project-features li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}


@media (max-width: 768px) {
    .projects-section {
        padding: 3rem 0;
    }

    .project-tabs {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .tab-button {
        width: 100%;
        text-align: center;
    }

    .project-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-layout:not(.active) {
        display: none !important;
    }

    .project-layout.active {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .projects-container {
        min-height: auto;
    }

    .project-left,
    .project-right {
        text-align: center;
    }

    .project-title {
        font-size: 1.5rem;
        justify-content: center;
    }

    .project-logo {
        width: 32px;
        height: 32px;
    }

    .project-cta {
        justify-content: center;
    }

    .project-features {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 1.5rem 0 2.5rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

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

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        margin-bottom: 2rem;
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-visual-card {
        padding: 1.7rem 1.6rem 1.9rem;
    }

    .hero-visual-circle {
        width: 210px;
        height: 210px;
    }

    .hero-visual-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .world-map-section {
        padding: 2rem 0;
    }

    .world-map-container {
        padding: 1rem;
    }

    .datacenter-dot.mobile-active .datacenter-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(-5px);
    }

    .datacenter-dot:hover .datacenter-tooltip {
        opacity: 0;
        visibility: hidden;
    }
}

/* ── Portfolio / Showcase Section ────────────────────────── */
.portfolio-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

/* Centered header */
.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0.5rem 0 0.75rem;
    letter-spacing: -0.02em;
    color: var(--text);
}

.showcase-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto;
}

/* Outer wrap — arrows + card side by side */
.showcase-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Arrow buttons */
.showcase-arrow {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color-light);
    color: var(--text-muted);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.showcase-arrow:hover {
    border-color: var(--primary);
    color: #c4a0ff;
    background: rgba(109, 0, 252, 0.1);
}

/* The big split card */
.showcase-card {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border-color-light);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    min-height: 340px;
    transition: opacity 0.3s ease;
}

.showcase-card.showcase-fade {
    opacity: 0;
}

/* Left — screenshot */
.showcase-img-side {
    overflow: hidden;
    background: #0c0c0c;
    border-right: 1px solid var(--border-color);
}

.showcase-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-img-side img {
    transform: scale(1.03);
}

/* Right — project info */
.showcase-info-side {
    display: flex;
    align-items: center;
    padding: 2.5rem 2.25rem;
}

.showcase-info-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.showcase-tags span {
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    white-space: nowrap;
    letter-spacing: 0.025em;
    border: 1px solid transparent;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.showcase-name {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.showcase-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    border: none;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    align-self: flex-start;
    font-family: var(--font-primary);
}

.showcase-btn:hover {
    background: #8533ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(109, 0, 252, 0.4);
}

/* Dots */
.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.75rem;
}

.showcase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
    padding: 0;
}

.showcase-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 999px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .showcase-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .showcase-img-side {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        height: 220px;
    }

    .showcase-info-side {
        padding: 1.75rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .showcase-wrap {
        gap: 0.6rem;
    }

    .showcase-arrow {
        width: 38px;
        height: 38px;
    }

    .showcase-info-side {
        padding: 1.25rem 1rem;
    }

    .showcase-dots {
        margin-top: 1.25rem;
    }
}

/* About Section - Mobile */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-left,
    .about-right {
        text-align: left;
    }
}

/* ══════════════════════════════════════════════════════════ */
/* ── Process Section — Horizontal Timeline ───────────────── */
/* ══════════════════════════════════════════════════════════ */
.process-section {
    padding: 7rem 0 6rem;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0.5rem 0 0;
    color: var(--text);
}

/* Grid of 4 equal columns — relative so ::before line works */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 2rem;
}

/* The connecting horizontal line — spans from center col1 to center col4 */
.process-timeline::before {
    content: '';
    position: absolute;
    /* dot is 44px tall; center = 22px from top of grid */
    top: 22px;
    /* col width = 25%; center of col1 = 12.5%, center of col4 = 87.5% */
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: rgba(139, 92, 246, 0.25);
    z-index: 0;
}

/* Individual step — centered column */
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Numbered circle */
.process-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 10, 30, 1);
    border: 1.5px solid rgba(139, 92, 246, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 5px rgba(15, 10, 30, 1);
    /* masks the line behind it */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover .process-dot {
    border-color: rgba(139, 92, 246, 0.9);
    box-shadow:
        0 0 0 5px rgba(15, 10, 30, 1),
        0 0 20px rgba(109, 0, 252, 0.3);
}

.process-dot span {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(139, 92, 246, 0.85);
    line-height: 1;
}

/* Content below dot */
.process-step-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.process-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.01em;
}

.process-step-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 5rem 0 4rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step {
        align-items: flex-start;
        text-align: left;
    }
}


.process-section {
    padding: 7rem 0 6rem;
}

/* ══════════════════════════════════════════════════════════ */
/* ── Reviews Section ────────────────────────────────────── */
/* ══════════════════════════════════════════════════════════ */
.reviews-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.reviews-header {
    margin-bottom: 3.5rem;
}

.reviews-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0.5rem 0 0;
    color: var(--text);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 2rem;
}

.review-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

/* Thin purple top accent line on hover */
.review-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.4s ease;
}

.review-card:hover::before {
    width: 100%;
}

.review-stars {
    color: #8B5CF6;
    font-size: 1rem;
    letter-spacing: 3px;
    line-height: 1;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    margin: 0;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.review-author {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.03em;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .reviews-section {
        padding: 5rem 0;
    }

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

@keyframes floatStep {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.process-step:nth-child(1) {
    animation: floatStep 5.0s ease-in-out infinite;
    animation-delay: 0s;
}

.process-step:nth-child(2) {
    animation: floatStep 5.0s ease-in-out infinite;
    animation-delay: 0.8s;
}

.process-step:nth-child(3) {
    animation: floatStep 5.0s ease-in-out infinite;
    animation-delay: 1.6s;
}

.process-step:nth-child(4) {
    animation: floatStep 5.0s ease-in-out infinite;
    animation-delay: 2.4s;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.review-card {
    background: rgba(109, 0, 252, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 16px;
    padding: 1.75rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.review-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(109, 0, 252, 0.08);
    transform: translateY(-3px);
}

.review-card:hover::before {
    opacity: 1;
}

.review-stars {
    color: #8B5CF6;
    font-size: 1rem;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 0.1rem;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    font-style: italic;
    margin: 0;
}

.review-author {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(139, 92, 246, 0.8);
    letter-spacing: 0.04em;
    margin-top: 0.25rem;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.cta-section {
    padding: 8rem 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(109, 0, 252, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3.5rem 4rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(139, 92, 246, 0.6) 30%,
            rgba(109, 0, 252, 0.9) 50%,
            rgba(139, 92, 246, 0.6) 70%,
            transparent 100%);
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--text);
    margin: 0.5rem 0 0.75rem;
}

.cta-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    flex-shrink: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    min-width: 210px;
    justify-content: center;
}

.cta-btn i {
    font-size: 1.1rem;
}

.cta-btn--primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 0 30px rgba(109, 0, 252, 0.35);
}

.cta-btn--primary:hover {
    background: #7c00e3;
    box-shadow:
        0 0 20px rgba(168, 85, 247, 0.4),
        0 0 45px rgba(109, 0, 252, 0.55),
        0 0 80px rgba(109, 0, 252, 0.2);
    transform: translateY(-2px);
}

.cta-btn--secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-btn--secondary:hover {
    border-color: rgba(139, 92, 246, 0.4);
    color: var(--text);
    background: rgba(139, 92, 246, 0.06);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-btn {
        width: 100%;
    }
}

.hero-grid {
    background-image:
        linear-gradient(rgba(109, 0, 252, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109, 0, 252, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: translate(calc(var(--grid-x, 0px)),
            calc(var(--grid-y, 0px)));
    transition: transform 0.1s linear;
}

.contact-section {
    padding: 7rem 0 6rem;
}

.contact-header {
    margin-bottom: 3.5rem;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0.5rem 0 0;
    color: var(--text);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.cf-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cf-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    width: 100%;
    box-sizing: border-box;
}

.cf-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.cf-input:focus {
    border-color: rgba(109, 0, 252, 0.6);
    background: rgba(109, 0, 252, 0.04);
    box-shadow:
        0 0 0 3px rgba(109, 0, 252, 0.12),
        0 0 20px rgba(109, 0, 252, 0.08);
}

.cf-textarea {
    resize: vertical;
    min-height: 140px;
}

.cf-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.cf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    width: 100%;
}

.cf-btn i {
    font-size: 1rem;
}

.cf-btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 22px rgba(109, 0, 252, 0.3);
}

.cf-btn--primary:hover {
    background: #7c00e3;
    box-shadow:
        0 0 20px rgba(168, 85, 247, 0.4),
        0 0 45px rgba(109, 0, 252, 0.5),
        0 0 70px rgba(109, 0, 252, 0.15);
    transform: translateY(-2px);
}

.cf-btn--secondary {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(109, 0, 252, 0.35);
}

.cf-btn--secondary:hover {
    border-color: rgba(109, 0, 252, 0.7);
    background: rgba(109, 0, 252, 0.07);
    color: #fff;
    box-shadow: 0 0 20px rgba(109, 0, 252, 0.2);
    transform: translateY(-2px);
}

.cf-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.cf-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.7;
    margin: 0;
}

.cf-note strong {
    color: rgba(255, 255, 255, 0.5);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ci-item {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(109, 0, 252, 0.1);
    border: 1px solid rgba(109, 0, 252, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(139, 92, 246, 0.9);
    font-size: 1rem;
    flex-shrink: 0;
}

.ci-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.ci-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ci-value {
    font-size: 0.92rem;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

a.ci-value:hover {
    color: rgba(139, 92, 246, 0.9);
}

.contact-why-box {
    background: rgba(109, 0, 252, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    padding: 1.75rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.contact-why-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.cw-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 1.1rem;
    letter-spacing: -0.01em;
}

.cw-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.cw-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}

.cw-list li i {
    color: #7C3AED;
    font-size: 0.8rem;
    flex-shrink: 0;
    background: rgba(124, 58, 237, 0.12);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 860px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 520px) {
    .cf-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }
}