/* ============================================
   LOGITRACK — Light Professional Theme
   Freight Forwarding ERP | US Market
   ============================================ */

:root {
    --bg-deep: #ffffff;
    --bg-primary: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --bg-elevated: #f8fafc;

    --accent: #112FA9;
    --accent-dim: #112FA933;
    --accent-glow: #112FA915;
    --secondary: #65D2BB;
    --secondary-dim: #65D2BB33;
    --secondary-glow: #65D2BB22;
    --amber: #f59e0b;
    --amber-dim: #f59e0b33;
    --red: #ef4444;
    --blue: #2C68E8;

    --text-primary: #1f2937;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;

    --border: #e2e8f0;
    --border-light: #cbd5e1;

    --font-display: 'Roboto', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --nav-height: 72px;
    --section-padding: 120px;
    --container: 1200px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }

/* ---- COMMON ---- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #112FA9, #65D2BB);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
}

.text-accent { color: var(--accent); }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(17, 47, 169, 0.2);
    border-radius: 25px;
}
.btn--primary:hover {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    box-shadow: 0 8px 25px rgba(17, 47, 169, 0.3);
    transform: translateY(-2px);
}

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

/* Ghost variant for hero (white on blue) */
.hero .btn--ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}
.hero .btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.btn--small {
    padding: 8px 18px;
    font-size: 0.85rem;
    background: var(--accent);
    color: #ffffff;
    border-radius: 20px;
}
.btn--small:hover {
    background: #1335C0;
    transform: translateY(-1px);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s, color 0.3s;
}
.nav.scrolled {
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
/* Scrolled state: dark text on white bg */
.nav.scrolled .nav__logo-text { color: var(--text-primary); }
.nav.scrolled .nav__logo { color: var(--accent); }
.nav.scrolled .nav__link { color: var(--text-secondary); }
.nav.scrolled .nav__link:hover { color: var(--text-primary); }
.nav.scrolled .nav__burger span { background: var(--accent); }

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    z-index: 10;
    transition: color 0.3s;
}
.nav__logo-icon { display: flex; }
.nav__logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.03em;
    color: #ffffff;
    transition: color 0.3s;
}

.nav__links {
    display: flex;
    gap: 32px;
}
.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #112FA9, #65D2BB);
    transition: width 0.3s var(--ease-out);
}
.nav__link--active { color: #ffffff; }
.nav__link--active::after { width: 100%; }
.nav__link:hover { color: #ffffff; }
.nav__link:hover::after { width: 100%; }
.nav.scrolled .nav__link--active { color: var(--accent); }
.nav.scrolled .nav__link--active::after { width: 100%; }

.nav__cta {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 22px;
    background: var(--secondary);
    color: #ffffff;
    border-radius: 25px;
    transition: all 0.3s;
}
.nav__cta:hover {
    background: #4AB69E;
    transform: translateY(-1px);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10;
    padding: 4px;
}
.nav__burger span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s;
    border-radius: 2px;
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.mobile-menu__link:hover { color: var(--accent); }
.mobile-menu__cta {
    margin-top: 16px;
    padding: 14px 32px;
    background: var(--secondary);
    color: #ffffff;
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: 25px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 40px) 32px 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #0F2992, #112FA9, #3A5FDA);
    color: #ffffff;
}

/* Animated grid background */
.hero__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

/* Floating particles */
.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    flex-shrink: 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 28px;
}
.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--secondary-dim); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.hero__title-accent {
    background: linear-gradient(135deg, var(--secondary) 0%, #8BE8D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 32px;
}
.hero__stat {
    display: flex;
    flex-direction: column;
}
.hero__stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}
.hero__stat-plus, .hero__stat-pct {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}
.hero__stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}
.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Screenshot mockup */
.hero__visual {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-left: 60px;
}

.hero__screenshot {
    width: 100%;
    max-width: 640px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(17, 47, 169, 0.15);
    animation: screenshotFloat 6s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.15);
}
.hero__screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

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

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--section-padding) 32px;
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.about__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about__highlights {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}
.about__highlight {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about__highlight-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}
.about__highlight-text {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Animated globe */
.about__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__globe {
    position: relative;
    width: 320px;
    height: 320px;
}

.about__globe-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--accent-dim), 0 0 60px var(--accent-glow);
}

.about__globe-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid var(--border);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.about__globe-ring--1 {
    width: 160px;
    height: 160px;
    animation: globeSpin 20s linear infinite;
}
.about__globe-ring--2 {
    width: 240px;
    height: 240px;
    border-style: dashed;
    opacity: 0.5;
    animation: globeSpin 30s linear infinite reverse;
}
.about__globe-ring--3 {
    width: 320px;
    height: 320px;
    opacity: 0.2;
    animation: globeSpin 40s linear infinite;
}

@keyframes globeSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.about__globe-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-dim);
}
.about__globe-dot--1 { top: 50%; left: calc(50% + 80px); transform: translate(-50%, -50%); animation: orbitDot1 20s linear infinite; }
.about__globe-dot--2 { top: 50%; left: calc(50% - 80px); transform: translate(-50%, -50%); animation: orbitDot1 20s linear infinite; animation-delay: -10s; }
.about__globe-dot--3 { top: calc(50% + 120px); left: 50%; transform: translate(-50%, -50%); animation: orbitDot2 30s linear infinite; background: var(--amber); box-shadow: 0 0 10px var(--amber-dim); }
.about__globe-dot--4 { top: calc(50% - 120px); left: 50%; transform: translate(-50%, -50%); animation: orbitDot2 30s linear infinite; animation-delay: -15s; background: var(--amber); box-shadow: 0 0 10px var(--amber-dim); }
.about__globe-dot--5 { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 6px; height: 6px; animation: orbitDot3 25s linear infinite; }

@keyframes orbitDot1 {
    from { transform: translate(-50%, -50%) rotate(0deg) translateX(80px); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateX(80px); }
}
@keyframes orbitDot2 {
    from { transform: translate(-50%, -50%) rotate(0deg) translateY(120px); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateY(120px); }
}
@keyframes orbitDot3 {
    from { transform: translate(-50%, -50%) rotate(0deg) translateX(160px); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateX(160px); }
}

.about__globe-line {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 1px;
    transform-origin: left center;
}
.about__globe-line--1 {
    width: 120px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: translate(0, -50%) rotate(35deg);
    opacity: 0.5;
    animation: lineFlash 3s ease infinite;
}
.about__globe-line--2 {
    width: 100px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    transform: translate(0, -50%) rotate(-60deg);
    opacity: 0.4;
    animation: lineFlash 4s ease infinite;
    animation-delay: 1.5s;
}

@keyframes lineFlash {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

/* ============================================
   PLATFORM
   ============================================ */
.platform {
    padding: var(--section-padding) 32px;
    background: var(--bg-primary);
    position: relative;
}
.platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.platform__inner {
    max-width: var(--container);
    margin: 0 auto;
}

.platform__header {
    text-align: center;
    margin-bottom: 64px;
}
.platform__header .section-tag { justify-content: center; }
.platform__header .section-subtitle { margin: 0 auto; }

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

.platform__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.platform__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #112FA9, #65D2BB);
    opacity: 0;
    transition: opacity 0.4s;
}
.platform__card:hover {
    border-color: var(--secondary);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--secondary-dim);
}
.platform__card:hover::before { opacity: 1; }

.platform__card--main {
    grid-column: span 2;
    row-span: 1;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.platform__card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(17, 47, 169, 0.1), rgba(44, 104, 232, 0.08));
    border: 1px solid var(--accent-dim);
    border-radius: 10px;
    color: var(--accent);
    margin-bottom: 20px;
}

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

.platform__card-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.platform__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.platform__card-tags span {
    padding: 4px 12px;
    background: #f1f5f9;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--section-padding) 32px;
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.services__inner {
    max-width: var(--container);
    margin: 0 auto;
}

.services__header {
    text-align: center;
    margin-bottom: 72px;
}
.services__header .section-tag { justify-content: center; }

.services__timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.services__line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--secondary), transparent);
}

.services__step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}
.services__step:last-child { margin-bottom: 0; }

.services__step-marker {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--accent-dim);
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 1;
    transition: all 0.3s;
}
.services__step-marker span {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent);
}
.services__step:hover .services__step-marker {
    border-color: var(--accent);
    background: var(--accent-glow);
    box-shadow: 0 0 24px var(--accent-dim);
}

.services__step-content {
    padding-top: 8px;
}
.services__step-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.services__step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   COVERAGE
   ============================================ */
.coverage {
    padding: var(--section-padding) 32px;
    background: var(--bg-primary);
    position: relative;
}
.coverage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.coverage__inner {
    max-width: var(--container);
    margin: 0 auto;
}

.coverage__header {
    text-align: center;
    margin-bottom: 56px;
}
.coverage__header .section-tag { justify-content: center; }
.coverage__header .section-subtitle { margin: 0 auto; }

.coverage__countries {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.coverage__country {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s var(--ease-out);
}
.coverage__country:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.coverage__country img {
    border-radius: 3px;
    flex-shrink: 0;
}
.coverage__country div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.coverage__country-name {
    font-size: 0.85rem;
    font-weight: 600;
}
.coverage__country-status {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}
.coverage__country-status--active {
    color: var(--accent);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--section-padding) 32px;
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.contact__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact__description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.contact__detail svg { color: var(--accent); flex-shrink: 0; }

/* Form */
.contact__form {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form__group--full {
    margin-bottom: 24px;
}

.form__group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form__group input,
.form__group select,
.form__group textarea {
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.92rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--text-muted);
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form__group select {
    appearance: none;
    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 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form__group textarea {
    resize: vertical;
    min-height: 100px;
}

.form__success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    margin-top: 16px;
    color: #22c55e;
    font-size: 0.92rem;
}
.form__success.visible {
    display: flex;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 64px 32px 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid var(--border);
}

.footer__inner {
    max-width: var(--container);
    margin: 0 auto;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    margin-bottom: 48px;
}

.footer__brand {
    max-width: 360px;
}
.footer__tagline {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 12px;
    font-style: italic;
}
.footer__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.6;
}

.footer__links {
    display: flex;
    gap: 64px;
}
.footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__col h4 {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.footer__col a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.2s;
}
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.footer__bottom span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer__cta {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer__cta span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: calc(var(--nav-height) + 60px);
    }
    .hero__content { max-width: 100%; }
    .hero__subtitle { margin: 0 auto 32px; }
    .hero__actions { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__visual {
        padding-left: 0;
        margin-top: 48px;
        justify-content: center;
    }
    .hero__screenshot { max-width: 520px; }

    .about__inner { grid-template-columns: 1fr; gap: 48px; }
    .about__visual { order: -1; }
    .about__globe { width: 240px; height: 240px; }
    .about__globe-ring--1 { width: 120px; height: 120px; }
    .about__globe-ring--2 { width: 180px; height: 180px; }
    .about__globe-ring--3 { width: 240px; height: 240px; }

    .platform__grid { grid-template-columns: 1fr 1fr; }
    .platform__card--main { grid-column: span 2; }

    .coverage__countries { grid-template-columns: repeat(3, 1fr); }

    .contact__inner { grid-template-columns: 1fr; gap: 48px; }

    .footer__top { flex-direction: column; gap: 32px; }
}

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

    .nav__links { display: none; }
    .nav__cta { display: none; }
    .nav__burger { display: flex; }

    .hero__title { font-size: clamp(2rem, 8vw, 3rem); }

    .hero__screenshot { max-width: 480px; }

    .hero__stats { flex-direction: column; gap: 16px; }
    .hero__stat-divider { width: 40px; height: 1px; }

    .platform__grid { grid-template-columns: 1fr; }
    .platform__card--main { grid-column: span 1; }

    .about__highlights { flex-direction: column; gap: 16px; }

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

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

    .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer__cta { flex-direction: column; }
    .footer__links { gap: 40px; }

    .services__step { gap: 20px; }
    .services__step-marker { width: 44px; height: 44px; }
    .services__line { left: 21px; }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 64px;
    }
    body { font-size: 15px; }

    .hero__actions { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }

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

    .contact__form { padding: 24px; }
}
