/**
 * KeyProxy — главная страница (лендинг)
 */
:root {
    --bg-body: #F8FAFC;
    --surface: #FFFFFF;
    
    /* Цвета */
    --primary: #3B82F6;
    --primary-dark: #1D4ED8;
    --accent: #F97316;
    --accent-gradient: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    
    /* Текст */
    --text-main: #0F172A;
    --text-muted: #64748B;
    
    /* Эффекты */
    --border: #E2E8F0;
    --shadow-card: 0 10px 40px -10px rgba(15, 23, 42, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --kp-radius-btn: 14px;
    --kp-focus-ring: 0 0 0 3px rgba(59, 130, 246, 0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; outline: none; }

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-padding-top: calc(64px + env(safe-area-inset-top, 0px));
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100dvh;
    min-height: 100vh;
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
}

body.lock {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
}
.grid-bg { background-image: radial-gradient(#CBD5E1 1px, transparent 1px); background-size: 30px 30px; }
.flag-icon { width: 24px; height: 18px; object-fit: cover; border-radius: 4px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }

/* === 2. HEADER === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: max(15px, env(safe-area-inset-top, 0px));
    padding-bottom: 15px;
    transition: var(--transition);
}
header.scrolled {
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-top: max(12px, env(safe-area-inset-top, 0px));
    padding-bottom: 12px;
}

.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; min-width: 0; }
.header-inner .logo { flex-shrink: 0; }

.logo {
    font-size: 24px; font-weight: 800; color: white; display: flex; align-items: center; gap: 8px; transition: var(--transition);
}
.logo span { color: var(--accent); }
header.scrolled .logo { color: var(--text-main); }

/* Desktop Nav */
.desktop-nav { display: flex; gap: 32px; align-items: center; }
.nav-link { font-weight: 600; font-size: 15px; color: rgba(255,255,255,0.8); }
.nav-link:hover { color: white; }
header.scrolled .nav-link { color: var(--text-muted); }
header.scrolled .nav-link:hover { color: var(--primary); }

/* SIGN IN / UP BUTTONS (DESKTOP) */
.header-auth { display: flex; align-items: center; gap: 15px; margin-left: 40px; }

.btn-login {
    font-weight: 600; font-size: 15px; color: white; opacity: 0.9; transition: 0.3s;
}
.btn-login:hover { opacity: 1; }

.btn-signup {
    background: white;
    color: var(--text-main);
    padding: 11px 22px;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-signup:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12); }
.btn-signup:focus-visible { outline: none; box-shadow: var(--kp-focus-ring); }
header.scrolled .btn-signup:focus-visible { box-shadow: var(--kp-focus-ring), 0 4px 14px rgba(59, 130, 246, 0.25); }

/* Scrolled State for Buttons */
header.scrolled .btn-login { color: var(--text-main); }
header.scrolled .btn-signup { background: var(--primary); color: white; }

.burger {
    display: none;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    margin-right: max(0px, calc(env(safe-area-inset-right, 0px) - 8px));
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.burger:hover { background: rgba(255, 255, 255, 0.2); }
.burger:focus-visible { outline: none; box-shadow: var(--kp-focus-ring); }
.burger:active { transform: scale(0.96); }
header.scrolled .burger {
    color: var(--text-main);
    background: #F1F5F9;
    border-color: #E2E8F0;
}
header.scrolled .burger:hover { background: #E2E8F0; }

/* === 3. MOBILE MENU === */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: min(100vw, 420px);
    height: 100%;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: max(20px, env(safe-area-inset-top, 0px)) max(20px, env(safe-area-inset-right, 0px)) max(24px, env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left, 0px));
    box-shadow: -8px 0 40px rgba(15, 23, 42, 0.08);
}
.mobile-menu.active { transform: translateX(0); }

.menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.menu-logo { font-size: 24px; font-weight: 800; color: var(--text-main); }
.close-btn {
    width: 44px;
    height: 44px;
    background: #F1F5F9;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    transition: background 0.2s, color 0.2s, transform 0.15s;
}
.close-btn:hover { background: #E2E8F0; color: var(--primary-dark); }
.close-btn:focus-visible { outline: none; box-shadow: var(--kp-focus-ring); }
.close-btn:active { transform: scale(0.95); }

.menu-list { flex-grow: 1; }
.menu-list a {
    display: block;
    font-size: clamp(1.125rem, 4.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    padding: 10px 0;
    color: var(--text-main);
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}
.mobile-menu.active .menu-list a { opacity: 1; transform: translateY(0); }

/* MOBILE AUTH BUTTONS */
.mobile-auth {
    margin-top: auto; display: flex; flex-direction: column; gap: 15px;
    border-top: 1px solid #E2E8F0; padding-top: 30px;
}
.mob-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    border-radius: var(--kp-radius-btn);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}
.mob-btn-outline {
    border: 2px solid #E2E8F0;
    color: var(--text-main);
    background: #fff;
}
.mob-btn-outline:hover { border-color: #CBD5E1; background: #F8FAFC; }
.mob-btn-outline:focus-visible { outline: none; box-shadow: var(--kp-focus-ring); }
.mob-btn-solid {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 22px -4px rgba(59, 130, 246, 0.45);
}
.mob-btn-solid:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -4px rgba(59, 130, 246, 0.5); }
.mob-btn-solid:active { transform: translateY(0); }
.mob-btn-solid:focus-visible { outline: none; box-shadow: var(--kp-focus-ring); }

/* === 4. HERO SECTION === */
.hero {
    position: relative;
    padding-top: max(120px, calc(100px + env(safe-area-inset-top, 0px)));
    padding-bottom: clamp(72px, 18vw, 140px);
    background: linear-gradient(135deg, #0F172A 0%, #1E40AF 100%);
    color: white;
    border-bottom-left-radius: clamp(24px, 6vw, 50px);
    border-bottom-right-radius: clamp(24px, 6vw, 50px);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; animation: pulse 8s infinite alternate; }
.blob-1 { width: 500px; height: 500px; background: #3B82F6; top: -150px; left: -100px; }
.blob-2 { width: 400px; height: 400px; background: #F97316; bottom: -100px; right: -50px; }
@keyframes pulse { 0% { opacity: 0.4; transform: scale(1); } 100% { opacity: 0.6; transform: scale(1.1); } }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 850px; margin: 0 auto; }
.hero-badge {
    display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 25px;
    backdrop-filter: blur(5px);
}
.hero-title {
    font-size: clamp(1.75rem, 7vw, 3.5rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.hero-desc {
    font-size: clamp(0.95rem, 3.2vw, 1.2rem);
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.65;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 4px;
}

/* === 5. WIDGET === */
.widget-wrapper {
    margin-top: clamp(-72px, -12vw, -90px);
    position: relative;
    z-index: 10;
    margin-bottom: clamp(48px, 12vw, 80px);
}
.order-card {
    background: white;
    border-radius: clamp(20px, 4vw, 30px);
    box-shadow: var(--shadow-card);
    padding: clamp(20px, 5vw, 40px);
    border: 1px solid white;
}

/* Toggle — ширина сегментов 50/50, glider едет через translateX(100%) в home.js */
.tabs-container { display: flex; justify-content: center; margin-bottom: clamp(24px, 6vw, 40px); width: 100%; }
.toggle-wrapper {
    position: relative;
    background: #F1F5F9;
    padding: 5px;
    border-radius: 100px;
    display: flex;
    width: 100%;
    max-width: 360px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.03);
}
.toggle-bg {
    position: absolute;
    left: 5px;
    top: 5px;
    bottom: 5px;
    width: calc(50% - 5px);
    background: white;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}
.toggle-option {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    font-size: clamp(13px, 3.5vw, 15px);
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.5s;
}
.toggle-option.active { color: var(--primary); }

/* Controls */
.controls-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.dropdown-box { position: relative; z-index: 1; }
.dropdown-box.open { z-index: 120; }
.lbl { font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.select-btn {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 14px 16px;
    min-height: 48px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
    gap: 10px;
}
.select-btn:hover { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); }
.selected-val { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; color: var(--text-main); }
.options-list { position: absolute; top: 110%; left: 0; width: 100%; background: white; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1); z-index: 50; max-height: 300px; overflow-y: auto; border: 1px solid #E2E8F0; }
.dropdown-box.open .options-list { opacity: 1; visibility: visible; transform: translateY(0); }
.option { padding: 14px; border-radius: 10px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.2s; }
.option:hover { background: #F8FAFC; }
.opt-info { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--text-main); }
.opt-price { font-size: 13px; font-weight: 700; color: var(--primary); background: #EFF6FF; padding: 6px 10px; border-radius: 8px; }

/* Features & Checkout */
.features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;}
.feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); font-weight: 500; }
.check {
    width: 24px;
    height: 24px;
    background: linear-gradient(145deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #059669;
    border-radius: 50%;
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(16, 185, 129, 0.15);
}

.widget-checkout-bar { display: flex; justify-content: space-between; align-items: center; background: #F8FAFC; padding: 24px; border-radius: 20px; border: 1px solid #E2E8F0; margin-top: 10px; }
.checkout-info { display: flex; flex-direction: column; gap: 5px; }
.price-label { font-size: 13px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.price-wrapper { display: flex; align-items: baseline; gap: 5px; }
.price-val {
    font-size: clamp(1.75rem, 8vw, 2.625rem);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #0F172A 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.price-period { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.checkout-action { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.buy-btn {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 16px 32px;
    min-height: 52px;
    border-radius: var(--kp-radius-btn);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px -4px rgba(249, 115, 22, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.02em;
}
.buy-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -4px rgba(249, 115, 22, 0.55); }
.buy-btn:focus-visible { outline: none; box-shadow: 0 12px 32px -4px rgba(249, 115, 22, 0.55), var(--kp-focus-ring); }
.buy-btn:active { transform: translateY(0); }
.buy-btn svg { flex-shrink: 0; opacity: 0.95; }
.payment-methods { display: flex; gap: 10px; opacity: 0.6; font-size: 12px; align-items: center; }

/* === 6. TECHNOLOGY & SERVER === */
.info-section { padding: 100px 0; }
.info-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 80px; align-items: center; }
.info-content h2 {
    font-size: clamp(1.5rem, 5.5vw, 2.625rem);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.15;
    word-wrap: break-word;
}
.info-content p { font-size: 17px; color: var(--text-muted); margin-bottom: 30px; }
.tech-points { display: flex; flex-direction: column; gap: 30px; margin-top: 40px; }
.tech-point { display: flex; gap: 20px; align-items: flex-start; }
.tp-icon {
    width: 52px;
    height: 52px;
    margin-top: 2px;
    background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}
.tp-text h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text-main); }
.tp-text p { font-size: 15px; margin: 0; color: var(--text-muted); }

.server-container {
    position: relative;
    min-height: 320px;
    height: clamp(320px, 55vw, 500px);
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    overflow: hidden;
    isolation: isolate;
}
.server-rack { width: 260px; height: 420px; background: #1E293B; border-radius: 20px; position: relative; transform: rotateY(-15deg) rotateX(5deg); box-shadow: -30px 30px 60px rgba(0,0,0,0.2); border: 4px solid #334155; display: flex; flex-direction: column; padding: 15px; gap: 10px; }
.server-rack::before { content:''; position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%); border-radius: 16px; pointer-events: none; }
.server-unit { height: 30px; background: #0F172A; border-radius: 6px; border: 1px solid #334155; display: flex; align-items: center; padding: 0 10px; justify-content: space-between; }
.lights { display: flex; gap: 6px; }
.light { width: 6px; height: 6px; border-radius: 50%; }
.l-green { background: #10B981; box-shadow: 0 0 5px #10B981; animation: blink 2s infinite; }
.l-blue { background: #3B82F6; box-shadow: 0 0 5px #3B82F6; animation: blink 3s infinite alternate; }
.l-orange { background: #F97316; box-shadow: 0 0 5px #F97316; animation: blink 0.5s infinite; }
.floating-badge { position: absolute; padding: 12px 20px; background: white; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 10px; animation: float 6s ease-in-out infinite; }
.fb-1 { top: 8%; right: 0; color: var(--primary); max-width: calc(100% - 16px); }
.fb-2 { bottom: 12%; left: 0; color: var(--accent); animation-delay: 2s; max-width: calc(100% - 16px); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* === 7. FAQ === */
.faq-section { padding: 80px 0; background: white; border-top: 1px solid #F1F5F9; border-bottom: 1px solid #F1F5F9; }
.sec-title {
    text-align: center;
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: clamp(32px, 8vw, 60px);
    color: var(--text-main);
    padding: 0 8px;
}
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: #F8FAFC; border-radius: 16px; margin-bottom: 16px; border: 1px solid transparent; overflow: hidden; transition: 0.3s; }
.faq-item:hover { background: white; border-color: #E2E8F0; }
.faq-head {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: clamp(0.95rem, 3.2vw, 1.05rem);
    line-height: 1.35;
}
.faq-body { max-height: 0; overflow: hidden; transition: 0.3s; padding: 0 20px; color: var(--text-muted); line-height: 1.7; font-size: clamp(0.875rem, 2.8vw, 1rem); }
.faq-item.open { background: white; border-color: var(--primary); box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1); }
.faq-item.open .faq-body { padding-bottom: 22px; max-height: min(480px, 70vh); }
.arrow { transition: 0.3s; color: #94A3B8; }
.faq-item.open .arrow { transform: rotate(180deg); color: var(--primary); }

/* === 8. FOOTER === */
footer {
    background: #0F172A;
    color: white;
    padding: clamp(48px, 10vw, 80px) 0 max(30px, env(safe-area-inset-bottom, 0px));
}
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: clamp(28px, 6vw, 50px); }
.footer-col h4 { color: white; margin-bottom: 25px; font-size: 18px; font-weight: 700; }
.footer-col a { display: block; color: #94A3B8; margin-bottom: 12px; font-size: 15px; transition: 0.2s; }
.footer-col a:hover { color: white; transform: translateX(5px); }
.copy {
    border-top: 1px solid #1E293B;
    padding-top: 24px;
    text-align: center;
    color: #64748B;
    font-size: 13px;
    margin-top: clamp(36px, 8vw, 60px);
    line-height: 1.5;
    padding-left: max(0px, env(safe-area-inset-left, 0px));
    padding-right: max(0px, env(safe-area-inset-right, 0px));
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .header-auth { display: none; }
    .burger { display: flex; margin-left: auto; }

    .widget-checkout-bar { flex-direction: column; gap: 20px; align-items: stretch; text-align: center; }
    .checkout-info { align-items: center; }
    .checkout-action { align-items: stretch; width: 100%; }
    .buy-btn { justify-content: center; width: 100%; min-height: 52px; }
    .payment-methods { justify-content: center; text-align: center; }

    .info-grid { grid-template-columns: 1fr; gap: 40px; }
    .server-rack { width: min(220px, 55vw); height: min(340px, 58vw); }
    .floating-badge { font-size: 12px; padding: 10px 14px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
    .controls-grid { grid-template-columns: 1fr; gap: 14px; }
    .features-list { grid-template-columns: 1fr; gap: 12px; }
    .widget-checkout-bar { padding: 18px 16px; border-radius: 16px; }
    .payment-methods span { font-size: 11px; line-height: 1.4; }
    .info-section { padding: 56px 0; }
    .tech-point { gap: 14px; align-items: flex-start; }
    .tp-icon { width: 44px; height: 44px; font-size: 20px; }
    .footer-grid { flex-direction: column; gap: 32px; }
    .footer-col { width: 100%; max-width: 100%; }
    .footer-col p { max-width: none !important; }
}

@media (max-width: 480px) {
    .hero-title br,
    .hero-desc br,
    .info-content h2 br { display: none; }
    .hero-badge { font-size: 12px; padding: 7px 14px; }
    .blob-1 { width: min(100vw, 380px); height: min(100vw, 380px); }
    .blob-2 { width: min(90vw, 300px); height: min(90vw, 300px); }
    .faq-head { padding: 16px 16px; }
    .faq-item.open .faq-body { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 360px) {
    .container { padding-left: max(14px, env(safe-area-inset-left, 0px)); padding-right: max(14px, env(safe-area-inset-right, 0px)); }
    .order-card { padding: 16px 14px; }
    .select-btn { padding: 12px 14px; font-size: 15px; }
}

@media (min-width: 993px) {
    .fb-1 { right: -12px; }
    .fb-2 { left: -24px; }
}
