/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #dba55c;
    --secondary: #50C878;
    --accent: #FF6B6B;
    --dark: #2C3E50;
    --light: #ECF0F1;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #0090A0 0%, #00BFC3 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --brand-start:#0090a0; --brand-end:#00c2cf;
    --ink:#1b1f24; --muted:#6b7280; --line:#eaecef; --card:#fff;
}

.tc-hero{
    background: linear-gradient(135deg,var(--brand-start),var(--brand-end));
    color:#fff; border-radius:18px; padding:20px 22px; margin:24px auto 18px;
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.tc-hero .crumb{ display:flex; align-items:center; gap:10px; }
.tc-hero .crumb a{ background:rgba(255,255,255,.15); color:#fff; padding:8px 12px; border-radius:12px; text-decoration:none; font-weight:600; }
.tc-hero h1{ margin:0; font-size: clamp(22px,2vw,28px); font-weight:800; letter-spacing:.2px; }
.tc-hero .langs a{ background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.25); color:#fff; padding:6px 10px; border-radius:10px; text-decoration:none; font-weight:600; }
.tc-hero .langs{ display:flex; gap:8px; }

.tc-wrap{ max-width:1100px; margin:0 auto; padding:0 16px 60px; }
.tc-meta{ color:var(--muted); font-size:14px; margin:14px 0 8px; }

.tc-layout{ display:grid; grid-template-columns: 280px 1fr; gap:28px; align-items:start; }
@media (max-width: 960px){ .tc-layout{ grid-template-columns: 1fr; } }

.tc-toc{
    position:sticky; top:18px; background:var(--card); border:1px solid var(--line);
    border-radius:16px; padding:14px; box-shadow:0 6px 18px rgba(0,0,0,.04);
}
.tc-toc h3{ margin:6px 0 10px; font-size:13px; letter-spacing:.3px; text-transform:uppercase; color:var(--muted); }
.tc-toc a{
    display:block; padding:10px 12px; border-radius:10px; color:var(--ink); text-decoration:none;
    border:1px solid transparent; font-weight:600; line-height:1.2;
}
.tc-toc a:hover{ background:#f8fafc; border-color:var(--line); }
.tc-toc a.active{ background:#eefcff; border-color:#b7f2f7; }

.tc-card{
    background:var(--card); border:1px solid var(--line); border-radius:18px;
    padding:22px 22px; margin-bottom:18px; box-shadow:0 6px 18px rgba(0,0,0,.04);
}
.tc-card h2{ margin:0 0 8px; font-size:22px; }
.tc-card h3{ margin:16px 0 8px; font-size:16px; }
.tc-card p{ color:#2b3138; line-height:1.7; }
.tc-card ul{ margin:10px 0 0; padding-left:18px; }
.tc-card li{ margin:6px 0; }

.note, .tc-info, .tc-warn{
    border-radius:12px; padding:12px 14px; margin-top:10px; font-size:14px; line-height:1.6;
}
.tc-info{ background:#f0f9ff; border:1px solid #cfeefe; }
.tc-warn{ background:#fff7ed; border:1px solid #ffead5; }


.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(30, 30, 30, 0.95);
    color: #fff;
    padding: 14px 18px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}


.cookie-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-text p {
    margin: 6px 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


@media (max-width: 600px) {
    .cookie-inner {
        padding-bottom: env(safe-area-inset-bottom, 10px);
    }
    .cookie-actions {
        flex-direction: column;
    }
    .cookie-actions .btn {
        width: 100%;
    }
}


.nl-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
}
.nl-modal__content{
    background: #fff; color:#111; border-radius: 14px;
    padding: 22px 20px; width: min(92vw, 420px);
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    text-align: center;
}
.nl-btn{
    margin-top: 12px; padding: 10px 16px; border: 0; border-radius: 10px;
    background: #4A90E2; color: #fff; cursor: pointer;
}
.nl-btn:focus { outline: 2px solid #1b6fc3; outline-offset: 2px; }


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.logo i {
    font-size: 28px;
    color: var(--primary);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-link {
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.language-selector {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--light);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 12px;
    padding: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.lang-dropdown li a:hover {
    background: var(--light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

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

.hero-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #000;
    border-radius: 0 0 20px 20px;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.float-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    animation: floatCard 3s infinite;
}

.float-card i {
    color: var(--primary);
}

.card-1 {
    top: 20%;
    right: -80px;
}

.card-2 {
    top: 50%;
    left: -80px;
    animation-delay: -1s;
}

.card-3 {
    bottom: 20%;
    right: -80px;
    animation-delay: -2s;
}

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

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
    animation: mouseScroll 2s infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    animation: wheel 2s infinite;
}

@keyframes mouseScroll {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
}

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

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

/* ===== FEATURES ===== */
.features {
    background: #F8F9FA;
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-card > p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.feature-list i {
    color: var(--secondary);
}

/* ===== GPS SECTION ===== */
.gps-section {
    background: var(--gradient);
    color: white;
}

.gps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gps-section .badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.gps-section .section-title {
    color: white;
}

.gps-description {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.gps-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gps-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gps-item i {
    font-size: 28px;
    color: var(--secondary);
}

.gps-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.gps-item p {
    opacity: 0.8;
    font-size: 14px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.marker {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: pulse 2s infinite;
}

.m1 { top: 20%; left: 30%; }
.m2 { top: 50%; right: 20%; animation-delay: -0.5s; }
.m3 { bottom: 20%; left: 50%; animation-delay: -1s; }

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

.route {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><path d="M 100 80 Q 250 200 350 120 T 500 180" stroke="rgba(255,255,255,0.3)" stroke-width="3" fill="none" stroke-dasharray="10,10"/></svg>');
}

/* ===== BENEFITS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-icon i {
    font-size: 36px;
    color: white;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* ===== PARTNERS ===== */
.partners {
    background: #F8F9FA;
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.partner-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.partner-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.partner-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

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

.option i {
    color: var(--secondary);
    font-size: 20px;
}

.partner-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hosting-section {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 20px;
}

.hosting-section h4 {
    font-size: 24px;
    margin-bottom: 30px;
}

.hosting-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.logo-item {
    padding: 20px 40px;
    background: var(--light);
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
}

.hosting-note {
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hosting-note i {
    color: var(--secondary);
}

/* ===== LOCATIONS ===== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.flag {
    margin-bottom: 20px;
}

.country {
    font-size: 24px;
    margin-bottom: 20px;
}

.location-info {
    text-align: left;
}

.location-info p {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    border-bottom: 1px solid #eee;
}

.location-info p:last-child {
    border-bottom: none;
}

.hosting-logos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    text-decoration: none;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 10px 18px;
    transition: background 0.2s ease;
}

.logo-item:hover {
    background: #eef4ff;
}

.hosting-note {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-top: 10px;
}

.hosting-note i {
    color: var(--primary);
    margin-right: 6px;
}


.location-info i {
    color: var(--primary);
}

/* --- Partner modal --- */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.modal-content {
    background: #fff;
    color: #222;
    padding: 30px;
    border-radius: 14px;
    width: min(90vw, 420px);
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    position: relative;
}
.modal-content h3 {
    margin-bottom: 10px;
}
.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}
.modal-content input, .modal-content textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 22px;
    cursor: pointer;
    color: #555;
}
.close-btn:hover {
    color: #000;
}


/* ===== CONTACT ===== */
.contact {
    background: #F8F9FA;
}

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-info > p {
    color: #666;
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.1);
    background: #3a7bc8;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form button {
    grid-column: 1 / -1;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    color: #bbb;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-col h4 {
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #bbb;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #3a7bc8;
}

.footer-badges {
    display: flex;
    gap: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #3a7bc8;
    transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid,
    .gps-grid,
    .partner-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }

    .phone-mockup {
        max-width: 300px;
    }

    .float-card {
        position: static;
        margin: 10px 0;
        animation: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        font-size: 16px;
    }

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

    .features-grid,
    .benefits-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.6);
    height: 100dvh;
}

.modal[style*="display: flex"] {
    display: flex;
}

.modal[style*="display: flex"] .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-content {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);

    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    transform: scale(0.98);
    opacity: 0;
    transition: all 0.25s ease;
}


@media (max-width: 480px) {
    .modal {
        padding: 10px;
    }
    .modal-content {
        padding: 18px;
        max-height: calc(100dvh - 20px);
        border-radius: 12px;
    }
}


body.modal-open {
    overflow: hidden;
    touch-action: none;
    position: fixed;
    width: 100%;
}
