/* ============================================================
   ProTechy 3.0 — Full Design System
   ============================================================ */

/* Force font-display: swap on Font Awesome to avoid render blocking */
@font-face { font-family: 'Font Awesome 6 Free'; font-display: swap; }
@font-face { font-family: 'Font Awesome 6 Brands'; font-display: swap; }
/* Poppins fallback until webfont loads */
body { font-family: 'Poppins', system-ui, -apple-system, sans-serif; }

/* --- CSS Variables --- */
:root {
    --bg-dark: #0d0d0f;
    --bg-card: #1a1a20;
    --bg-alt: #111116;
    --bg-light: #1e1e26;
    --primary: #00e676;
    --primary-glow: rgba(0, 230, 118, 0.55);
    --accent: #4fc3f7;
    --accent-glow: rgba(79, 195, 247, 0.35);
    --text-main: #f0f0f5;
    --text-muted: #a0a0aa;
    --danger: #ff4d4d;
    --gaming: #ffb300;
    --border: #252530;
    --border-soft: rgba(255,255,255,0.06);
    --radius: 14px;
    --radius-lg: 20px;
    --bg-input: #16161e;
}

/* --- Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* --- Navigation --- */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 18px 50px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(13, 13, 15, 0.92);
    border-bottom: 1px solid var(--border); z-index: 1000;
    transition: padding 0.25s ease, background 0.25s ease;
}
.navbar.scrolled { padding: 12px 50px; background: rgba(13, 13, 15, 0.98); box-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.nav-container { width: 100%; display: flex; justify-content: space-between; align-items: center; }
.navbar .logo { display: flex; align-items: center; text-decoration: none; line-height: 1; }
.nav-links { list-style: none; display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 14px; transition: color 0.25s; position: relative; }
.nav-links a:hover { color: var(--text-main); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 100%; height: 2px; background: var(--primary); border-radius: 2px; }
.nav-btn { background: var(--primary) !important; color: var(--bg-dark) !important; padding: 9px 22px; border-radius: 50px; font-weight: 700 !important; font-size: 14px !important; transition: background 0.25s ease !important; }
.nav-btn:hover { background: #00c853 !important; }

/* Track Repair nav link — pill style */
@keyframes trackPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0.5); }
    50% { box-shadow: 0 0 0 5px rgba(0,230,118,0); }
}
.nav-track {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    background: rgba(0,230,118,0.12) !important;
    border: 1.5px solid rgba(0,230,118,0.45) !important;
    color: var(--primary) !important;
    padding: 8px 18px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s !important;
    animation: trackPulse 2.5s ease-in-out infinite;
    white-space: nowrap;
}
.nav-track:hover {
    background: rgba(0,230,118,0.22) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    box-shadow: 0 0 16px rgba(0,230,118,0.3) !important;
    animation: none !important;
}
.nav-track::after { display: none !important; }
/* Active state when already on dashboard.html */
.nav-track.active-track {
    background: rgba(0,230,118,0.2) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 12px rgba(0,230,118,0.25) !important;
    animation: none !important;
}

/* Hamburger */
.hamburger { display: none; background: none; border: none; color: var(--primary); font-size: 22px; cursor: pointer; z-index: 10001; position: relative; -webkit-tap-highlight-color: transparent; user-select: none; outline: none !important; }
.hamburger:focus, .hamburger:active { outline: none !important; box-shadow: none !important; }

/* Mobile Menu */
.mobile-menu { display: none; position: fixed; top: 64px; right: -100%; width: 280px; max-width: calc(100vw - 48px); height: calc(100vh - 64px); background: rgba(18, 18, 22, 0.99); border-left: 1px solid var(--border); padding: 30px 24px; transition: right 0.3s ease; z-index: 10000; box-shadow: -4px 0 20px rgba(0,0,0,0.5); }
.mobile-menu.active { right: 0; }
.mobile-menu .nav-links { flex-direction: column; gap: 4px; align-items: flex-start; }
.mobile-menu .nav-links a { font-size: 16px; width: 100%; padding: 14px 12px; border-radius: 10px; color: var(--text-muted) !important; display: block !important; visibility: visible !important; opacity: 1 !important; transition: all 0.2s; }
.mobile-menu .nav-links a:hover { color: var(--text-main) !important; background: rgba(255,255,255,0.04); }
.mobile-menu .nav-links .nav-btn { text-align: center !important; margin-top: 12px; padding: 13px 20px; width: 100%; border-radius: 10px; display: block; color: #000000 !important; }
.nav-btn.mobile-link { color: #000000 !important; }
.mobile-menu .nav-links a.nav-track { color: var(--primary) !important; background: rgba(0,230,118,0.1); border: 1.5px solid rgba(0,230,118,0.4); padding: 13px 16px; margin-top: 6px; display: flex !important; align-items: center; gap: 8px; font-weight: 700 !important; border-radius: 10px; animation: none !important; }
.mobile-menu .nav-links a.nav-track:hover { background: rgba(0,230,118,0.18) !important; color: var(--primary) !important; border-color: var(--primary) !important; }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 30px; border-radius: 50px; font-weight: 700; font-size: 15px;
    text-decoration: none; cursor: pointer; transition: background 0.25s ease, box-shadow 0.25s ease; border: none;
    min-height: 48px;
}
.btn-primary { background: var(--primary); color: var(--bg-dark); box-shadow: 0 4px 20px var(--primary-glow), 0 0 0 0 transparent; }
.btn-primary:hover { background: #00c853; box-shadow: 0 6px 30px rgba(0, 230, 118, 0.65); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; transition: background 0.25s ease, color 0.25s ease; }
.btn-outline:hover { background: var(--primary); color: var(--bg-dark); }
.w-100 { width: 100%; }

/* --- Hero Section --- */
.hero {
    min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 120px 20px 80px;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,230,118,0.06) 0%, transparent 70%), var(--bg-dark);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(0,230,118,0.03) 1px, transparent 1px);
    background-size: 40px 40px; pointer-events: none;
}
.hero-content { max-width: 820px; position: relative; z-index: 1; }
.trust-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0, 230, 118, 0.08); border: 1px solid rgba(0, 230, 118, 0.25);
    padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
    font-size: 13px; color: var(--text-muted); font-weight: 500;
}
.hero h1 { font-size: 62px; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; }
.highlight { color: var(--primary); }
.hero > .hero-content > p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

/* Hero Stats */
.hero-stats {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0;
    background: rgba(255,255,255,0.025); border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--radius-lg); padding: 22px 40px; max-width: 780px; margin: 0 auto;
    box-shadow: 0 0 40px rgba(0, 230, 118, 0.1), inset 0 0 40px rgba(0, 230, 118, 0.03);
    position: relative; z-index: 1;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; padding: 0 28px; }
.hero-stat-num { font-size: 24px; font-weight: 700; color: var(--primary); line-height: 1; }
.hero-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 4px; text-align: center; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-stat-divider { width: 1px; height: 36px; background: var(--border); }

@media(max-width: 600px) {
    .hero h1 { font-size: 38px; }
    .hero-stats { padding: 18px 16px; gap: 12px; }
    .hero-stat { padding: 0 12px; }
    .hero-stat-divider { display: none; }
    .hero-stat-num { font-size: 20px; }
}

/* --- Info Strip --- */
.urgency-strip {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 20px; background: rgba(0, 230, 118, 0.03);
    border-top: 1px solid rgba(0, 230, 118, 0.1); border-bottom: 1px solid rgba(0, 230, 118, 0.1);
    padding: 13px 20px; font-size: 13px; font-weight: 600; color: var(--text-muted);
}
.urgency-strip span { display: flex; align-items: center; gap: 7px; }
.urgency-strip i { color: var(--primary); }
@media(max-width: 480px) {
    .urgency-strip { gap: 12px; padding: 10px 16px; font-size: 12px; }
    .urgency-strip span:first-child { display: none; }
}

/* --- Sections --- */
.section { padding: 90px 20px; }
#services { padding-bottom: 110px; }
.dark-bg { background-color: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title { text-align: center; font-size: 34px; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-title::after { content: ''; display: block; width: 48px; height: 3px; background: var(--primary); margin: 14px auto 0; border-radius: 2px; box-shadow: 0 0 12px rgba(0, 230, 118, 0.7); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); margin-bottom: 50px; font-size: 15px; }

/* --- Service Cards --- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.card {
    background: var(--bg-card); padding: 36px 28px; border-radius: var(--radius);
    border: 1px solid var(--border); text-align: center;
    transition: border-color 0.35s ease, background 0.35s ease;
    display: flex; flex-direction: column; align-items: center;
    position: relative; overflow: hidden;
}
.card:hover {
    border-color: rgba(0, 230, 118, 0.4);
    background: var(--bg-light);
}
.card-icon-wrap {
    width: 68px; height: 68px;
    background: rgba(0, 230, 118, 0.08);
    border: 1.5px solid rgba(0, 230, 118, 0.2);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.card:hover .card-icon-wrap {
    background: rgba(0, 230, 118, 0.13);
    border-color: rgba(0, 230, 118, 0.4);
    transform: scale(1.08);
}
.card-icon { font-size: 28px; color: var(--primary); transition: transform 0.35s ease; }
.card:hover .card-icon { transform: scale(1.1); }
.card h3 { margin-bottom: 10px; font-size: 18px; color: var(--text-main); }
.card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

@media(max-width: 768px) {
    .cards { grid-template-columns: 1fr 1fr; gap: 14px; }
    .card { padding: 24px 18px; }
    .card-icon-wrap { width: 56px; height: 56px; border-radius: 12px; }
    .card-icon { font-size: 22px; }
    .card h3 { font-size: 15px; }
    .card p { font-size: 13px; }
}
@media(max-width: 480px) {
    .cards { grid-template-columns: 1fr; }
}

/* --- Before/After Stats --- */
.comparison { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.stat-card { background: var(--bg-card); padding: 36px; border-radius: var(--radius); width: 380px; text-align: left; border: 1px solid var(--border); position: relative; overflow: hidden; }
.status-badge { position: absolute; top: 20px; right: -45px; background: #333; padding: 8px 0; width: 170px; font-size: 11px; font-weight: bold; transform: rotate(45deg); text-align: center; letter-spacing: 0.5px; display: flex; align-items: center; justify-content: center; }
.danger { background: var(--danger); color: white; }
.success { background: var(--primary); color: var(--bg-dark); }
.stat-icon { font-size: 44px; margin-bottom: 20px; text-align: center; display: block; }
.before .stat-icon { color: var(--danger); }
.after .stat-icon { color: var(--primary); }
.stat-row { display: flex; justify-content: space-between; font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.temp-hot { color: var(--danger); }
.temp-cool { color: var(--primary); }
.stat-desc { color: var(--text-muted); margin-top: 18px; font-size: 13px; text-align: center; }
.disclaimer { font-size: 11px; color: var(--text-muted); font-style: italic; opacity: 0.7; }
.bar-bg { width: 100%; height: 7px; background: var(--bg-dark); border-radius: 4px; margin-bottom: 10px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; }
.bg-danger { background: var(--danger); }
.bg-success { background: var(--primary); }

/* --- Why Us Row --- */
.why-us-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 1100px; margin: 60px auto 0; }
.why-us-item {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    background: rgba(255,255,255,0.02); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 22px; width: 210px;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, transform 0.35s ease;
}
.why-us-item:hover { border-color: rgba(0, 230, 118, 0.35); box-shadow: 0 0 20px rgba(0,230,118,0.1); background: var(--bg-light); transform: translateY(-4px); }
.why-us-item i { font-size: 26px; color: var(--primary); margin-bottom: 10px; }
.why-us-item strong { font-size: 14px; color: var(--text-main); margin-bottom: 6px; display: block; }
.why-us-item span { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

@media(max-width: 768px) {
    .why-us-item { width: calc(50% - 8px); }
    .stat-card { width: 100%; }
}
@media(max-width: 480px) {
    .why-us-item { width: 100%; }
}

/* --- Pricing --- */
.pricing-group-label {
    text-align: center; font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--text-muted); margin-bottom: 28px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.pricing-group-label::before, .pricing-group-label::after { content: ''; flex: 1; max-width: 180px; height: 1px; background: var(--border); }
.pricing-group-label i { color: var(--primary); font-size: 13px; }

.pricing-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; align-items: stretch; max-width: 1300px; margin: auto; }
.price-card {
    background: var(--bg-card); padding: 36px 28px; width: 290px; border-radius: var(--radius-lg);
    border: 1px solid var(--border); text-align: center; position: relative;
    display: flex; flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { box-shadow: 0 8px 36px rgba(0, 230, 118, 0.22); border-color: rgba(0, 230, 118, 0.5); }
.price-card.popular { border-color: var(--primary); box-shadow: 0 0 40px rgba(0, 230, 118, 0.18); background: linear-gradient(160deg, #1a1a20, #0c1f14); }
.price-card.premium { border-color: var(--gaming); box-shadow: 0 0 40px rgba(255, 179, 0, 0.18); background: linear-gradient(160deg, #1a1a20, #1f1a0c); }
.price-card.office-popular { border-color: var(--primary); box-shadow: 0 0 40px rgba(0, 230, 118, 0.2); background: linear-gradient(160deg, #1a1a20, #0c1f14); }

.ribbon { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--primary); color: var(--bg-dark); padding: 5px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.premium-ribbon { background: var(--gaming); color: #000; }
.office-ribbon { background: var(--primary) !important; color: var(--bg-dark) !important; }

.category-tag {
    display: inline-block; padding: 5px 14px; border-radius: 50px;
    background: rgba(0, 230, 118, 0.08); color: var(--primary);
    font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 800;
    margin-bottom: 16px; border: 1px solid rgba(0, 230, 118, 0.2);
}
.category-tag.gaming-tag { background: rgba(255, 179, 0, 0.1); color: #ffb300; border-color: rgba(255, 179, 0, 0.25); }

.price { font-size: 34px; font-weight: 700; margin: 12px 0 22px 0; }
.old-price { text-decoration: line-through; color: var(--text-muted); font-size: 18px; font-weight: 400; margin-right: 6px; opacity: 0.6; }
.popular .price { color: var(--primary); }
.premium .price { color: var(--gaming); }
.price-card ul { list-style: none; text-align: left; margin-bottom: 28px; flex-grow: 1; }
.price-card ul li { margin: 10px 0; color: var(--text-muted); display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.5; }
.price-card ul li i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.premium ul li i { color: var(--gaming); }

/* Plan Buttons */
.btn-book-plan {
    margin-top: auto; width: 100%; padding: 13px; font-size: 14px; font-weight: 700;
    border-radius: 50px; border: none; cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    background: var(--primary); color: var(--bg-dark); min-height: 48px;
}
.btn-book-plan:hover { background: #00c853; box-shadow: 0 4px 20px rgba(0, 230, 118, 0.45); }
.price-card.premium .btn-book-plan, .price-card.popular .btn-book-plan { background: var(--gaming); }
.price-card.premium .btn-book-plan:hover, .price-card.popular .btn-book-plan:hover { background: #e6a500; box-shadow: 0 4px 20px rgba(255, 179, 0, 0.45); }

/* Pricing helper text */
.pricing-helper {
    text-align: center; margin-top: 30px; font-size: 14px; color: var(--text-muted);
}
.pricing-helper a { color: var(--primary); text-decoration: none; font-weight: 600; }
.pricing-helper a:hover { text-decoration: underline; }

@media(max-width: 768px) {
    .price-card { width: 100%; max-width: 380px; }
}

/* Dropdown Highlight */
@keyframes highlight-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(0, 230, 118, 0); border-color: var(--primary); }
}
.highlight-select { animation: highlight-pulse 1s ease 2; }

/* --- FAQ --- */
.faq-container { max-width: 780px; margin: auto; }
.faq-item {
    background: var(--bg-card); margin-bottom: 12px;
    border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover { border-color: rgba(0, 230, 118, 0.3); }
.faq-item.active { border-color: rgba(0, 230, 118, 0.55); box-shadow: 0 4px 28px rgba(0, 230, 118, 0.12); }
.faq-question {
    width: 100%; text-align: left; padding: 20px 22px; background: none; border: none;
    color: var(--text-main); font-size: 15px; font-weight: 600; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    transition: all 0.3s; min-height: 48px;
}
.faq-question:hover { background: rgba(0, 230, 118, 0.04); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-question i { transition: transform 0.3s ease, color 0.3s ease; font-size: 16px; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer-wrapper { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-in-out; }
.faq-item.active .faq-answer-wrapper { grid-template-rows: 1fr; }
.faq-answer { overflow: hidden; }
.faq-answer p { padding: 0 22px 20px; color: var(--text-muted); font-size: 14px; margin: 0; line-height: 1.7; }

/* --- Contact Form --- */
#contact .section-title { margin-bottom: 12px; }

/* Booking Wrapper */
.booking-wrapper {
    max-width: 680px; margin: 0 auto;
}

/* Progress Steps */
.booking-progress {
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 40px; gap: 0;
}
.bp-step {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    position: relative; z-index: 1;
}
.bp-circle {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--bg-card); border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--text-muted);
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.bp-step span {
    font-size: 11px; color: var(--text-muted); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
    transition: color 0.35s ease;
}
.bp-step.active .bp-circle {
    background: var(--primary); border-color: var(--primary);
    color: var(--bg-dark); box-shadow: 0 0 20px rgba(0,230,118,0.45);
}
.bp-step.active span { color: var(--primary); }
.bp-step.done .bp-circle {
    background: rgba(0,230,118,0.15); border-color: var(--primary);
    color: var(--primary);
}
.bp-step.done span { color: var(--text-muted); }
.bp-line {
    flex: 1; height: 2px; background: var(--border);
    margin: 0 8px; margin-bottom: 26px; max-width: 80px;
    transition: background 0.35s ease;
}
.bp-line.done { background: var(--primary); }

/* Form card */
#bookingForm {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}

/* Step header */
.bf-step-header { padding: 32px 36px 0; margin-bottom: 28px; }
.bf-step-num {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--primary); display: block; margin-bottom: 6px;
}
.bf-step-header h3 { font-size: 22px; color: var(--text-main); margin: 0; }

/* Step body padding */
.bf-step { padding-bottom: 32px; }
.bf-step .floating-group,
.bf-step .bf-choice-group,
.bf-step .bf-service-list,
.bf-step .bf-fields-grid,
.bf-step .bf-price-preview,
.bf-step .bf-trust-row,
.bf-step .bf-summary,
.bf-step .bf-nav-row,
.bf-step > .btn,
.bf-step .form-note { padding-left: 36px; padding-right: 36px; }
.bf-step .floating-group { padding-top: 0; }
.bf-step > .btn { margin-top: 24px; display: flex; }

.bf-step-hint {
    font-size: 12px; color: var(--text-muted); margin-top: 6px; font-weight: 400;
}

.bf-laptop-context {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 10px; padding: 6px 14px; border-radius: 50px;
    background: rgba(0,230,118,0.08); border: 1px solid rgba(0,230,118,0.2);
    font-size: 12px; font-weight: 600; color: var(--primary);
}
.bf-laptop-context i { font-size: 11px; }
.bf-choice-group {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    margin-bottom: 0;
}
.bf-choice input { display: none; }
.bf-choice-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; padding: 24px 16px; border-radius: var(--radius);
    border: 1.5px solid var(--border); background: var(--bg-alt);
    cursor: pointer; text-align: center;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.bf-choice-card i { font-size: 28px; color: var(--text-muted); transition: color 0.3s ease; }
.bf-choice-card strong { font-size: 14px; color: var(--text-main); display: block; }
.bf-choice-card span { font-size: 11px; color: var(--text-muted); line-height: 1.5; }
.bf-choice:hover .bf-choice-card { border-color: rgba(0,230,118,0.4); background: var(--bg-light); }
.bf-choice input:checked + .bf-choice-card {
    border-color: var(--primary); background: rgba(0,230,118,0.07);
}
.bf-choice input:checked + .bf-choice-card i { color: var(--primary); }

/* Service list */
.bf-service-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.bf-service-item input { display: none; }
.bf-service-card {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px; border-radius: var(--radius);
    border: 1.5px solid var(--border); background: var(--bg-alt);
    cursor: pointer; position: relative; overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.bf-service-card:hover { border-color: rgba(0,230,118,0.35); background: var(--bg-light); }
.bf-service-item input:checked + .bf-service-card {
    border-color: var(--primary); background: rgba(0,230,118,0.07);
    box-shadow: 0 4px 20px rgba(0,230,118,0.15);
}
.bf-service-left { display: flex; align-items: center; gap: 14px; }
.bf-service-left i { font-size: 20px; color: var(--text-muted); width: 24px; text-align: center; transition: color 0.3s; }
.bf-service-item input:checked + .bf-service-card .bf-service-left i { color: var(--primary); }
.bf-service-left strong { font-size: 14px; color: var(--text-main); display: block; }
.bf-service-left span { font-size: 12px; color: var(--text-muted); }
.bf-service-price {
    font-size: 15px; font-weight: 700; color: var(--primary);
    white-space: nowrap; flex-shrink: 0;
}
.bf-service-badge {
    position: absolute; top: 0; right: 0;
    background: var(--primary); color: var(--bg-dark);
    font-size: 10px; font-weight: 700; padding: 3px 10px;
    border-bottom-left-radius: 8px; letter-spacing: 0.5px;
}
.bf-service-badge.best { background: var(--gaming); }

/* Price preview */
.bf-price-preview {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; background: rgba(0,230,118,0.07);
    border-left: 3px solid var(--primary); border-radius: 0 8px 8px 0;
    font-size: 13px; color: var(--text-main); margin-bottom: 20px;
    animation: fadeSlideIn 0.3s ease;
}
.bf-price-preview i { color: var(--primary); }
.bf-price-preview strong { color: var(--primary); }

/* Summary pill */
.bf-summary {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 24px;
}
.bf-summary-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(0,230,118,0.08); border: 1px solid rgba(0,230,118,0.2);
    padding: 6px 14px; border-radius: 50px;
    font-size: 12px; font-weight: 600; color: var(--primary);
}
.bf-summary-pill i { font-size: 11px; }

/* Fields grid */
.bf-fields-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    margin-bottom: 20px;
}
.bf-fields-grid .full-width { grid-column: 1 / -1; }
.bf-fields-grid .floating-group { padding: 0; }

/* Trust row */
.bf-trust-row {
    display: flex; flex-wrap: wrap; gap: 16px;
    margin-bottom: 24px; font-size: 12px; font-weight: 600; color: var(--text-muted);
}
.bf-trust-row span { display: flex; align-items: center; gap: 6px; }
.bf-trust-row i { color: var(--primary); }

/* Nav row */
.bf-nav-row {
    display: flex; gap: 12px; align-items: center;
    margin-bottom: 0;
}
.bf-nav-row .btn { flex: 1; }
.bf-nav-row .btn-outline { flex: 0 0 auto; padding: 14px 20px; }

/* Form note */
.form-note {
    text-align: center; font-size: 12px; color: var(--text-muted);
    margin-top: 16px; padding-bottom: 0 !important;
}
.form-note i { margin-right: 4px; }

.bf-step { animation: bfFadeIn 0.3s ease; }
@keyframes bfFadeIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
.bf-step.going-back { animation: bfFadeInBack 0.3s ease; }
@keyframes bfFadeInBack { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Floating inputs inside form */
.floating-group { position: relative; }
.field-hint { display: block; font-size: 11px; color: var(--text-muted); margin-top: 5px; padding-left: 4px; }

#bookingForm .floating-group input,
#bookingForm .floating-group textarea {
    width: 100%; padding: 16px 16px 8px 16px;
    background: rgba(255,255,255,0.04); border: 1.5px solid var(--border);
    border-radius: 10px; color: var(--text-main); font-size: 15px;
    outline: none; transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Poppins', sans-serif; min-height: 52px;
}
#bookingForm .floating-group textarea { resize: none; min-height: 100px; padding-top: 24px; overflow: hidden; }
#bookingForm .floating-group label {
    position: absolute; left: 16px; top: 16px; color: var(--text-muted);
    font-size: 14px; pointer-events: none; transition: all 0.3s ease;
    transform-origin: left top;
}
#bookingForm .floating-group textarea + label { top: 22px; }
#bookingForm .floating-group input:focus,
#bookingForm .floating-group textarea:focus {
    border-color: var(--primary); background: rgba(0,230,118,0.04);
    box-shadow: 0 0 0 3px rgba(0,230,118,0.15), 0 0 16px rgba(0,230,118,0.1);
}
#bookingForm .floating-group input:focus + label,
#bookingForm .floating-group input:not(:placeholder-shown) + label,
#bookingForm .floating-group textarea:focus + label,
#bookingForm .floating-group textarea:not(:placeholder-shown) + label {
    transform: translateY(-18px) scale(0.8); color: var(--primary);
}

/* Autofill override */
#bookingForm .floating-group input:-webkit-autofill,
#bookingForm .floating-group input:-webkit-autofill:hover,
#bookingForm .floating-group input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 9999px #1a1a20 inset !important;
    box-shadow: 0 0 0 9999px #1a1a20 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff;
}

/* Submit loading */
#submitBtn.loading { opacity: 0.75; pointer-events: none; cursor: not-allowed; }
#submitBtn.loading::after { content: ''; display: inline-block; width: 14px; height: 14px; border: 2px solid #000; border-top-color: transparent; border-radius: 50%; animation: spin 0.7s linear infinite; margin-left: 10px; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shakeInput { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-6px)} 40%{transform:translateX(6px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(4px)} }

@media(max-width: 768px) {
    .bf-step-header { padding: 24px 20px 0; }
    .bf-step .floating-group,
    .bf-step .bf-choice-group,
    .bf-step .bf-service-list,
    .bf-step .bf-fields-grid,
    .bf-step .bf-price-preview,
    .bf-step .bf-trust-row,
    .bf-step .bf-summary,
    .bf-step .bf-nav-row,
    .bf-step > .btn,
    .bf-step .form-note { padding-left: 20px; padding-right: 20px; }
    .bf-choice-group { grid-template-columns: 1fr 1fr; gap: 10px; }
    .bf-fields-grid { grid-template-columns: 1fr; }
    .bf-fields-grid .full-width { grid-column: 1; }
    .bp-line { max-width: 40px; }
    .bf-step-header h3 { font-size: 18px; }
    .bf-nav-row .btn-outline { padding: 14px 14px; font-size: 13px; }
    .bf-trust-row { gap: 10px; font-size: 11px; }
    /* Sticky continue button on mobile for step 2 */
    #bfStep2 .bf-nav-row {
        position: sticky; bottom: 0; background: var(--bg-card);
        padding: 12px 20px; margin: 0 -20px;
        border-top: 1px solid var(--border);
        z-index: 10;
    }
}

/* --- Feedback Section --- */
#feedback .section-title { margin-bottom: 12px; }

.reviews-row {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
    max-width: 1100px; margin: 0 auto 50px;
}
.review-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 22px; width: 320px; text-align: left;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column; gap: 10px;
}
.review-card:hover { border-color: rgba(0, 230, 118, 0.35); box-shadow: 0 0 20px rgba(0,230,118,0.1); }

/* Review card header: avatar + name + badge */
.review-card-header { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.review-avatar-img {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    object-fit: cover; border: 2px solid var(--border);
}
.review-meta { display: flex; flex-direction: column; gap: 2px; }
.review-author { font-size: 13px; font-weight: 700; color: var(--text-main); }
.review-verified { font-size: 10px; color: #4285f4; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.review-verified i { font-size: 10px; }

.review-stars { color: #ffb300; font-size: 14px; letter-spacing: 2px; margin: 0; }
.review-text { color: var(--text-muted); font-size: 13px; line-height: 1.65; font-style: italic; flex-grow: 1; margin: 0; }
.review-service { font-size: 11px; color: var(--primary); margin: 0; }

@media(max-width: 1024px) {
    .review-card { width: calc(50% - 8px); }
}
@media(max-width: 600px) {
    .reviews-row { gap: 12px; }
    .review-card { width: 100%; }
}

.feedback-section {
    background: var(--bg-card); backdrop-filter: blur(20px);
    padding: 44px 40px; border-radius: var(--radius-lg); max-width: 520px;
    margin: 0 auto; border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
#feedbackForm { display: flex; flex-direction: column; gap: 22px; }

.rating-stars {
    display: flex; justify-content: center; gap: 12px;
    margin: 6px 0 16px 0; font-size: 38px;
}
.rating-stars i { color: var(--border); cursor: pointer; transition: all 0.25s ease; }
.rating-stars i:hover { transform: scale(1.15); color: #ffb300; }
.rating-stars i.active { color: #ffb300; text-shadow: 0 0 12px rgba(255, 179, 0, 0.5); }

#feedbackForm .floating-group input,
#feedbackForm .floating-group textarea {
    width: 100%; padding: 16px 16px 8px 16px;
    background: rgba(255,255,255,0.04); border: 1.5px solid var(--border);
    border-radius: 10px; color: var(--text-main); font-size: 15px;
    outline: none; transition: all 0.3s ease; font-family: 'Poppins', sans-serif;
}
#feedbackForm .floating-group textarea { resize: none; min-height: 100px; padding-top: 24px; overflow: hidden; }
#feedbackForm .floating-group label { position: absolute; left: 16px; top: 16px; color: var(--text-muted); font-size: 14px; pointer-events: none; transition: all 0.3s ease; transform-origin: left top; }
#feedbackForm .floating-group textarea + label { top: 22px; }
#feedbackForm .floating-group input:focus,
#feedbackForm .floating-group textarea:focus { border-color: var(--primary); background: rgba(0, 230, 118, 0.04); box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.18), 0 0 16px rgba(0, 230, 118, 0.12); }
#feedbackForm .floating-group input:focus + label,
#feedbackForm .floating-group input:not(:placeholder-shown) + label,
#feedbackForm .floating-group textarea:focus + label,
#feedbackForm .floating-group textarea:not(:placeholder-shown) + label { transform: translateY(-18px) scale(0.8); color: var(--primary); }
#feedbackForm button[type="submit"] { padding: 16px; border-radius: 50px; transition: all 0.3s ease; min-height: 52px; }

@media(max-width: 768px) {
    .feedback-section { padding: 32px 22px; }
    .rating-stars { font-size: 44px; gap: 14px; }
}

/* --- Promo Popup --- */
.promo-popup {
    position: fixed; bottom: 20px; left: 20px; width: 310px;
    background: rgba(26, 26, 32, 0.97);
    border: 1px solid rgba(0, 230, 118, 0.25); border-radius: var(--radius-lg);
    padding: 24px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 999; opacity: 0; transform: translateX(-340px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.promo-popup.show { opacity: 1; transform: translateX(0); }
.promo-popup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.promo-popup-header h3 { color: var(--primary); font-size: 17px; margin: 0; }
.promo-close { background: none; border: none; color: var(--text-muted); font-size: 18px; cursor: pointer; transition: all 0.3s; min-width: 32px; min-height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.promo-close:hover { color: var(--primary); transform: rotate(90deg); background: rgba(255,255,255,0.06); }
.promo-popup-content { color: var(--text-muted); font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.promo-popup-content strong { color: var(--gaming); font-size: 18px; }
.promo-popup-btn { width: 100%; padding: 12px; background: var(--primary); color: var(--bg-dark); border: none; border-radius: 50px; font-weight: 700; font-size: 14px; cursor: pointer; transition: all 0.3s ease; min-height: 44px; }
.promo-popup-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 230, 118, 0.4); background: #00c853; }
@media(max-width: 768px) { .promo-popup { display: none !important; } }

/* --- Footer --- */
footer { background: var(--bg-dark); border-top: 1px solid var(--border); padding: 0; }
.footer-top {
    display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between;
    max-width: 1100px; margin: 0 auto; padding: 56px 30px 40px;
}
.footer-brand { max-width: 280px; }
.footer-brand .logo { font-size: 20px; color: var(--primary); font-weight: 700; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; text-decoration: none; }
.footer-tagline { color: #b0b0bc; font-size: 13px; line-height: 1.7; margin-bottom: 10px; }
.footer-areas { color: #b0b0bc; font-size: 11px; line-height: 1.6; opacity: 0.85; }
.footer-links h4, .footer-contact-block h4 { color: var(--text-main); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.25s; }
.footer-links ul li a:hover { color: var(--primary); }
.footer-contact-block { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text-main); text-decoration: none; font-size: 15px; font-weight: 600; transition: color 0.2s; }
.footer-contact-link:hover { color: var(--primary); }
.footer-contact-link i { color: var(--primary); font-size: 18px; }
.footer-location { color: #b0b0bc; font-size: 13px; display: flex; align-items: center; gap: 6px; }
.footer-location i { color: var(--primary); }
.footer-terms { color: #b0b0bc; font-size: 12px; text-decoration: none; transition: color 0.2s; margin-top: 4px; }
.footer-terms:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); text-align: center; padding: 18px; }
.footer-bottom .copyright { color: #b0b0bc; font-size: 12px; margin: 0; }
.social-icons { margin: 14px 0; display: flex; gap: 12px; }
.social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 50%; color: var(--text-muted); font-size: 16px; text-decoration: none; transition: all 0.3s ease; }
.social-icons a:hover { background: var(--primary); color: var(--bg-dark); border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 5px 15px var(--primary-glow); }
@media(max-width: 768px) { .footer-top { flex-direction: column; padding: 36px 20px 28px; gap: 28px; } .footer-brand { max-width: 100%; } }

/* --- Chatbot Widget --- */
.floating-wa {
    position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px;
    background-color: var(--primary); color: var(--bg-dark); border-radius: 50%;
    display: flex; justify-content: center; align-items: center; font-size: 26px;
    box-shadow: 0 0 0 0 rgba(0,230,118,0.4), 0 4px 20px rgba(0, 230, 118, 0.5); z-index: 1000; cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease; border: none; outline: none;
}
.floating-wa:hover { background-color: #00c853; box-shadow: 0 0 28px rgba(0, 230, 118, 0.7), 0 4px 20px rgba(0, 230, 118, 0.5); }

.chat-widget {
    position: fixed; bottom: 98px; right: 28px; width: 340px; max-width: calc(100vw - 32px);
    background: rgba(22, 22, 28, 0.98);
    border: 1.5px solid rgba(0, 230, 118, 0.35); border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    display: none; flex-direction: column; z-index: 1001;
    max-height: calc(100vh - 160px);
    opacity: 1; transform: none;
}
.chat-widget.show { display: flex; }

.chat-header {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.18), rgba(0, 230, 118, 0.04));
    padding: 16px 18px; border-bottom: 1px solid rgba(0, 230, 118, 0.15);
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; color: var(--primary); font-size: 14px;
    flex-shrink: 0;
}
.chat-header button { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 16px; transition: all 0.3s; min-width: 32px; min-height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.chat-header button:hover { color: var(--primary); transform: rotate(90deg); background: rgba(255,255,255,0.06); }

.chat-body { padding: 18px; height: 220px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; background: rgba(10, 10, 12, 0.4); }
.chat-msg { padding: 11px 15px; border-radius: 16px; font-size: 13px; max-width: 88%; line-height: 1.55; animation: slideIn 0.3s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }
.bot-msg { background: rgba(0, 230, 118, 0.1); color: var(--text-main); align-self: flex-start; border-bottom-left-radius: 4px; border: 1px solid rgba(0, 230, 118, 0.15); }
.user-msg { background: linear-gradient(135deg, var(--primary), #00c853); color: var(--bg-dark); align-self: flex-end; border-bottom-right-radius: 4px; font-weight: 600; box-shadow: 0 4px 12px rgba(0, 230, 118, 0.25); }

/* Typing indicator */
.typing-indicator { display: flex; gap: 5px; align-items: center; padding: 12px 16px; background: rgba(0, 230, 118, 0.08); border-radius: 16px; border-bottom-left-radius: 4px; align-self: flex-start; border: 1px solid rgba(0, 230, 118, 0.12); }
.typing-indicator span { width: 7px; height: 7px; background: var(--primary); border-radius: 50%; animation: typingDot 1.2s infinite; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-6px); opacity: 1; } }

.chat-options { padding: 14px; background: rgba(22, 22, 28, 0.6); border-top: 1px solid rgba(0, 230, 118, 0.12); display: flex; flex-direction: column; gap: 7px; flex-shrink: 0; max-height: 180px; overflow-y: auto; }
.chat-chip { background: rgba(0, 230, 118, 0.07); border: 1px solid rgba(0, 230, 118, 0.2); color: var(--text-muted); padding: 10px 14px; border-radius: 20px; font-size: 12px; cursor: pointer; transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease; text-align: left; min-height: 40px; }
.chat-chip:hover { border-color: var(--primary); color: var(--primary); background: rgba(0, 230, 118, 0.1); }

.chat-inline-btn { background: var(--primary); color: var(--bg-dark); border: none; padding: 8px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; cursor: pointer; margin-top: 8px; transition: all 0.3s ease; display: inline-block; }
.chat-inline-btn:hover { background: #00c853; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 230, 118, 0.4); }

/* Chat Toast */
.chat-toast {
    position: fixed; bottom: 98px; right: 28px;
    background: rgba(22, 22, 28, 0.97); border: 1.5px solid var(--primary);
    color: var(--text-main); padding: 11px 18px; border-radius: 24px;
    font-size: 13px; font-weight: 600; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 24px rgba(0, 230, 118, 0.3);
    z-index: 999; opacity: 0; transform: translateY(10px); pointer-events: none;
    transition: all 0.4s ease; overflow: visible;
}
.chat-toast::after {
    content: '' !important; display: block !important; position: absolute !important;
    bottom: -7px !important; right: 26px !important; width: 14px !important; height: 14px !important;
    background-color: #16161a !important; border-bottom: 2px solid #00e676 !important;
    border-right: 2px solid #00e676 !important; border-top: none !important; border-left: none !important;
    transform: rotate(45deg) !important; z-index: 10 !important; pointer-events: none !important;
}
.chat-toast.active { opacity: 1; transform: translateY(0); }

@media(max-width: 768px) {
    .chat-widget { width: calc(100% - 32px); right: 16px; bottom: 72px; max-height: 60vh; }
    .floating-wa { display: none !important; }
    .chat-toast { display: none !important; }
    .chat-body { height: 200px; }
    .chat-options { max-height: 140px; }
}

/* --- Scroll Animations --- */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.25s ease, transform 0.25s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Scroll to Top */
.scroll-top {
    position: fixed; bottom: 28px; left: 28px; width: 46px; height: 46px;
    background: var(--bg-card); border: 1.5px solid var(--primary); color: var(--primary);
    border-radius: 50%; display: none; justify-content: center; align-items: center;
    font-size: 18px; cursor: pointer; transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease; z-index: 999;
    box-shadow: 0 0 16px rgba(0, 230, 118, 0.3);
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--primary); color: var(--bg-dark); box-shadow: 0 0 28px rgba(0, 230, 118, 0.6); }
@media(max-width: 768px) { .scroll-top { display: none !important; } }

/* --- Mobile CTA Bar --- */
.mobile-cta-bar {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(13, 13, 15, 0.98);
    padding: 10px 16px; border-top: 1px solid rgba(0, 230, 118, 0.15);
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.4); z-index: 998;
    gap: 10px;
}
.mobile-cta-bar .btn { flex: 1; padding: 13px; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.mobile-cta-bar .btn-chat-mobile { background: var(--bg-card); color: var(--primary); border: 1.5px solid rgba(0,230,118,0.3); flex: 0 0 auto; width: 48px; padding: 13px 0; border-radius: 50px; font-size: 18px; }
@media(max-width: 768px) { .mobile-cta-bar { display: flex; } body { padding-bottom: 72px; } }

/* --- Page Hero (inner pages) --- */
.page-hero {
    min-height: 44vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 130px 20px 60px;
    background: radial-gradient(ellipse at top, rgba(0,230,118,0.06) 0%, transparent 65%), var(--bg-dark);
    border-bottom: 1px solid var(--border);
}
.page-hero-content { max-width: 680px; }
.page-hero-content h1 { font-size: 46px; line-height: 1.2; margin: 16px 0; letter-spacing: -0.5px; }
.page-hero-content p { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; }
@media(max-width: 768px) { .page-hero-content h1 { font-size: 30px; } .page-hero { padding: 110px 20px 50px; } }

/* --- CTA Section --- */
.cta-section { padding: 80px 20px; }
.cta-box {
    max-width: 680px; margin: 0 auto; text-align: center;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.07), rgba(0, 230, 118, 0.02));
    border: 1px solid rgba(0, 230, 118, 0.18); border-radius: 24px; padding: 56px 40px;
}
.cta-box h2 { font-size: 28px; margin-bottom: 12px; }
.cta-box p { color: var(--text-muted); margin-bottom: 28px; font-size: 15px; }
@media(max-width: 768px) { .cta-box { padding: 40px 24px; } .cta-box h2 { font-size: 22px; } }

/* --- Results Gallery --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto; }
.gallery-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.gallery-card:hover { border-color: rgba(0, 230, 118, 0.45); box-shadow: 0 8px 36px rgba(0, 230, 118, 0.18); }
.gallery-img { width: 100%; height: 280px; object-fit: cover; border-bottom: 2px solid var(--border); }
.split-img { display: flex; height: 280px; }
.split-img img { width: 50%; height: 100%; object-fit: cover; }
.split-img img:first-child { border-right: 2px solid var(--danger); }
.split-img img:last-child { border-left: 2px solid var(--primary); }
.split-img-vertical { display: flex; flex-direction: column; height: 320px; }
.split-img-vertical img { width: 100%; height: 50%; object-fit: cover; object-position: center; }
.split-img-vertical img:first-child { border-bottom: 2px solid var(--danger); }
.split-img-vertical img:last-child { border-top: 2px solid var(--primary); }
.gallery-info { padding: 24px; }
.gallery-info h3 { color: var(--primary); margin-bottom: 12px; font-size: 18px; }
.gallery-info p { color: var(--text-muted); font-size: 13px; margin-bottom: 8px; line-height: 1.6; }
.gallery-info strong { color: var(--text-main); }
@media(max-width: 768px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Results stats row */
.results-stats-row {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
    max-width: 900px; margin: 0 auto 60px;
}
.results-stat-item {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px 28px; text-align: center; min-width: 160px;
    transition: border-color 0.2s ease;
}
.results-stat-item:hover { border-color: rgba(0, 230, 118, 0.3); }
.results-stat-num { font-size: 28px; font-weight: 700; color: var(--primary); display: block; }
.results-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* --- Tutorial Page --- */
.tutorial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; max-width: 1200px; margin: 0 auto; }
.tutorial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.tutorial-card:hover { border-color: rgba(0, 230, 118, 0.45); box-shadow: 0 8px 36px rgba(0, 230, 118, 0.18); }
.tutorial-icon { width: 72px; height: 72px; background: rgba(0, 230, 118, 0.08); border: 1.5px solid rgba(0, 230, 118, 0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 30px; color: var(--primary); }
.tutorial-card h3 { text-align: center; color: var(--primary); margin-bottom: 12px; font-size: 20px; }
.tutorial-intro { text-align: center; color: var(--text-muted); font-size: 13px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.tutorial-content { text-align: left; }
.tutorial-content h4 { color: var(--text-main); margin: 18px 0 8px; font-size: 15px; }
.tutorial-content ul { list-style: none; padding-left: 0; margin-bottom: 12px; }
.tutorial-content ul li { color: var(--text-muted); padding: 7px 0; font-size: 13px; line-height: 1.6; border-bottom: 1px solid rgba(42, 42, 53, 0.3); }
.tutorial-content ul li:last-child { border-bottom: none; }
.tutorial-content ul li strong { color: var(--primary); font-weight: 600; }
.tutorial-content p { color: var(--text-muted); font-size: 13px; line-height: 1.7; margin: 12px 0; }
.warning-note, .info-note { background: rgba(255, 170, 0, 0.08); border-left: 3px solid #ffaa00; padding: 14px; margin: 16px 0; border-radius: 8px; font-size: 12px; line-height: 1.6; color: var(--text-muted); }
.info-note { background: rgba(0, 230, 118, 0.07); border-left-color: var(--primary); }
.warning-note i, .info-note i { margin-right: 6px; }
@media(max-width: 768px) { .tutorial-grid { grid-template-columns: 1fr; } }

/* --- Misc --- */
.site-logo { width: 28px; height: auto; object-fit: contain; }
.site-logo-svg { height: 56px; width: auto; object-fit: contain; display: block; }
.footer-brand .site-logo-svg { height: 70px; }
@media(max-width: 768px) { .site-logo-svg { height: 46px; } .footer-brand .site-logo-svg { height: 58px; } }
.disabled { color: var(--text-muted) !important; text-decoration: line-through; }
.disabled i { color: var(--danger) !important; }

/* --- Responsive Global --- */
@media(max-width: 768px) {
    .navbar { padding: 14px 18px; }
    .hamburger { display: block; z-index: 10001 !important; }
    .nav-links { display: none; }
    .mobile-menu { display: block; }
    .mobile-menu .nav-links { display: flex !important; }
    .mobile-menu .nav-links li { display: block; width: 100%; }
    .section { padding: 60px 16px; }
    .section-title { font-size: 26px; }
    .comparison { flex-direction: column; align-items: center; }
    .stat-card { width: 100%; }
}

/* --- Terms Page --- */
.terms-page { max-width: 800px; margin: 0 auto; padding: 40px 20px; }
.terms-page h1 { color: var(--primary); margin-bottom: 6px; font-size: 32px; }
.terms-page .terms-date { color: var(--text-muted); font-size: 13px; margin-bottom: 40px; }
.terms-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 16px; }
.terms-section h3 { color: var(--text-main); margin-bottom: 12px; font-size: 16px; display: flex; align-items: center; gap: 10px; }
.terms-section h3 i { color: var(--primary); font-size: 14px; }
.terms-section p { color: var(--text-muted); font-size: 14px; line-height: 1.8; }
.terms-section strong { color: var(--text-main); }
.terms-back { display: block; text-align: center; margin-top: 40px; }

/* --- Invoice Page Overlay --- */
.login-overlay {
    position: fixed; inset: 0; background: rgba(13, 13, 15, 0.97);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999; backdrop-filter: blur(10px);
}
.login-box {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 48px 40px; max-width: 400px; width: 90%; text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.login-box h2 { color: var(--primary); margin-bottom: 8px; font-size: 22px; }
.login-box p { color: var(--text-muted); font-size: 13px; margin-bottom: 28px; }
.login-input {
    width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.05);
    border: 1.5px solid var(--border); border-radius: 10px; color: var(--text-main);
    font-size: 15px; outline: none; transition: all 0.3s; font-family: 'Poppins', sans-serif;
    margin-bottom: 16px; text-align: center; letter-spacing: 2px;
}
.login-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.1); }
.login-btn { width: 100%; padding: 14px; background: var(--primary); color: var(--bg-dark); border: none; border-radius: 50px; font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.3s; min-height: 50px; }
.login-btn:hover { background: #00c853; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 230, 118, 0.4); }
.login-error { color: var(--danger); font-size: 13px; margin-top: 10px; display: none; }

/* ============================================================
   FINAL OVERRIDES — Single source of truth, no conflicts
   ============================================================ */

/* --- Nuke Neon Glows --- */
:root { --primary-glow: rgba(0, 0, 0, 0.3); }
.btn-primary, .floating-wa, .chat-toast,
.price-card.popular, .price-card.premium,
.bp-step.active .bp-circle { box-shadow: none !important; }

/* --- Card Hover: subtle only --- */
.price-card:hover, .card:hover, .tutorial-card:hover,
.gallery-card:hover, .why-us-item:hover, .review-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.6) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}
.btn-primary:hover, .floating-wa:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.5) !important; }

/* --- Before/After Image Labels --- */
.split-img, .split-img-vertical { position: relative !important; }
.split-img::before, .split-img-vertical::before { content: 'BEFORE'; position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,0.8); color: #fff; padding: 4px 10px; font-size: 11px; font-weight: 700; border-radius: 4px; z-index: 2; letter-spacing: 1px; }
.split-img::after { content: 'AFTER'; position: absolute; top: 12px; right: 12px; background: var(--primary); color: var(--bg-dark); padding: 4px 10px; font-size: 11px; font-weight: 700; border-radius: 4px; z-index: 2; letter-spacing: 1px; }
.split-img-vertical::after { content: 'AFTER'; position: absolute; bottom: 12px; left: 12px; background: var(--primary); color: var(--bg-dark); padding: 4px 10px; font-size: 11px; font-weight: 700; border-radius: 4px; z-index: 2; letter-spacing: 1px; }

/* --- Chatbot: single definitive sizing --- */
.chat-widget {
    max-height: 80vh !important;
    height: auto !important;
    flex-direction: column !important;
    overflow: hidden !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}
.chat-widget.show { display: flex !important; }
.chat-header { flex-shrink: 0 !important; position: sticky !important; top: 0 !important; z-index: 100 !important; }
.chat-body { flex-grow: 1 !important; height: auto !important; overflow-y: auto !important; }
.chat-options { max-height: none !important; overflow: visible !important; }
@media (max-width: 768px) {
    .chat-widget { max-height: 60vh !important; bottom: 72px !important; }
}

/* --- Booking Form Selected States --- */
.bf-choice input:checked + .bf-choice-card,
.bf-service-item input:checked + .bf-service-card {
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}
.bf-choice input:checked + .bf-choice-card i,
.bf-service-item input:checked + .bf-service-card .bf-service-left i { color: #ffffff !important; }

/* --- FAQ & Popup Borders --- */
.faq-item.active { border-color: rgba(255, 255, 255, 0.2) !important; }
.promo-popup { border-color: rgba(255, 255, 255, 0.1) !important; }

/* --- Hide auto-advance next buttons --- */
#bfStep1 .bf-next, #bfStep2 .bf-next { display: none !important; }
#bfStep2 .bf-nav-row { justify-content: center; }
#bfStep2 .bf-nav-row .btn-outline { width: 100%; }

/* --- Mobile: contact section clears CTA bar --- */
@media (max-width: 768px) {
    #contact { padding-bottom: 80px !important; }
    .booking-wrapper { margin-bottom: 40px !important; }
    #bfStep3 { padding-bottom: 140px !important; }
    .chat-toast { display: none !important; pointer-events: none !important; }
}

/* --- Promo Popup: desktop bottom-left, mobile centered --- */
@media (max-width: 768px) {
    .promo-popup {
        display: block !important;
        pointer-events: auto !important;
        top: 50% !important;
        left: 50% !important;
        bottom: auto !important;
        width: 85% !important;
        max-width: 320px !important;
        transform: translate(-50%, -60%) scale(0.9) !important;
        z-index: 9999 !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    .promo-popup.show {
        opacity: 1 !important;
        transform: translate(-50%, -50%) scale(1) !important;
        pointer-events: auto !important;
    }
}

/* --- BULLETPROOF FORM UI --- */
/* Flexbox column order: label → input → hint. No floating, no overlap. */
#bookingForm .floating-group {
    display: flex !important;
    flex-direction: column !important;
    position: relative;
    padding: 0 !important;
}
#bookingForm .floating-group label {
    order: 1 !important;
    position: static !important;
    transform: none !important;
    color: #e0e0e5 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    pointer-events: auto !important;
    height: auto !important;
    z-index: 1 !important;
}
#bookingForm .floating-group input,
#bookingForm .floating-group textarea {
    order: 2 !important;
    position: static !important;
    width: 100% !important;
    height: 52px !important;
    max-height: 52px !important;
    padding: 14px 16px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    z-index: 10 !important;
    pointer-events: auto !important;
    transition: border-color 0.2s ease, background 0.2s ease !important;
}
#bookingForm .floating-group textarea {
    height: auto !important;
    max-height: none !important;
    min-height: 100px !important;
}
#bookingForm .floating-group .field-hint {
    order: 3 !important;
    position: static !important;
    margin-top: 8px !important;
    opacity: 0.8;
}
.bf-fields-grid { align-items: start !important; }

/* Phone-split inside booking form — matches input height & style */
#bookingForm .floating-group .phone-split {
    order: 2 !important;
    margin-bottom: 0 !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,0.04) !important;
    min-height: 52px !important;
    transition: border-color 0.2s ease, background 0.2s ease !important;
}
#bookingForm .floating-group .phone-split:focus-within {
    border-color: var(--primary) !important;
    background: rgba(0,230,118,0.04) !important;
    box-shadow: 0 0 0 3px rgba(0,230,118,0.15) !important;
}
#bookingForm .floating-group .phone-split .phone-cc {
    font-size: 14px !important;
    padding: 0 28px 0 14px !important;
    min-height: 50px !important;
    border-right: 1px solid var(--border) !important;
}
#bookingForm .floating-group .phone-split .phone-num {
    font-size: 15px !important;
    padding: 14px 16px !important;
    min-height: 50px !important;
}

/* Focus state */
#bookingForm .floating-group input:focus,
#bookingForm .floating-group textarea:focus {
    border-color: #00e676 !important;
    background: rgba(0, 230, 118, 0.05) !important;
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15) !important;
    outline: none !important;
}

/* Chrome/Safari autofill fix */
#bookingForm .floating-group input:-webkit-autofill,
#bookingForm .floating-group input:-webkit-autofill:hover,
#bookingForm .floating-group input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #1a1a20 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

/* Phone split inputs — force white text */
#bookingForm .floating-group .phone-split .phone-cc,
#bookingForm .floating-group .phone-split .phone-num {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
#bookingForm .floating-group .phone-split .phone-num:-webkit-autofill,
#bookingForm .floating-group .phone-split .phone-num:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #1a1a20 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

/* --- Mobile Tap Target Fixes --- */
/* Prevent ghost taps and misclicks on booking form radio cards */
.bf-choice,
.bf-service-item {
    display: block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
/* Ensure the visible card fills the full label tap area */
.bf-choice-card,
.bf-service-card {
    -webkit-tap-highlight-color: transparent;
}
/* Prevent text selection on tap */
.bf-choice-card strong,
.bf-choice-card span,
.bf-service-left strong,
.bf-service-left span {
    user-select: none;
    pointer-events: none;
}
/* Mobile CTA bar: ensure it never overlaps interactive content */
@media (max-width: 768px) {
    .mobile-cta-bar {
        z-index: 997 !important;
    }
    /* Booking form inputs: large enough tap targets */
    #bookingForm .floating-group input,
    #bookingForm .floating-group textarea {
        min-height: 52px !important;
        font-size: 16px !important; /* Prevents iOS zoom on focus */
    }
}

/* ── Select / Option dark theme fix ── */
select,
select option {
    background-color: #16161e;
    color: #f0f0f5;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0a0aa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px !important;
}

/* ── Split Phone Input ── */
.phone-split {
    display: flex;
    align-items: stretch;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.25s;
    margin-bottom: 14px;
}
.phone-split:focus-within { border-color: var(--primary); }
.phone-split .phone-cc {
    background: rgba(255,255,255,0.04);
    border: none;
    color: var(--text-main);
    border-right: 1px solid var(--border);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 0 12px;
    outline: none;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a0a0aa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 26px;
}
.phone-split .phone-cc option { background: #16161e; color: #f0f0f5; }
.phone-split .phone-num {
    flex: 1;
    background: transparent;
    color: var(--text-main);
    border: none;
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    padding: 14px 16px;
    outline: none;
    min-width: 0;
}
.phone-split .phone-num::placeholder { color: var(--text-muted); }
.phone-split .phone-num:disabled { opacity: 0.5; }

/* ============================================================
   480px BREAKPOINT — Small phones (iPhone SE, Galaxy A series)
   ============================================================ */
@media(max-width: 480px) {
    /* Global */
    body { overflow-x: hidden; }

    /* Sections */
    .section { padding: 50px 14px; }
    .section-title { font-size: 22px; }

    /* Hero */
    .hero { padding: 100px 14px 60px; }
    .hero h1 { font-size: 30px; letter-spacing: -0.5px; }
    .hero > .hero-content > p { font-size: 15px; }
    .hero-actions { gap: 10px; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    /* Cards */
    .card { padding: 18px 14px; }
    .cards { grid-template-columns: 1fr; gap: 12px; }

    /* Pricing */
    .price-card { width: 100%; max-width: 100%; padding: 28px 18px; }
    .pricing-cards { gap: 14px; }

    /* Stat cards */
    .stat-card { padding: 22px 16px; }

    /* Why us */
    .why-us-item { width: 100%; }
    .why-us-row { gap: 10px; }

    /* Reviews */
    .review-card { width: 100%; padding: 16px; }
    .reviews-row { gap: 10px; }

    /* Feedback section */
    .feedback-section { padding: 28px 16px; }

    /* Booking form */
    .bf-fields-grid { grid-template-columns: 1fr; gap: 14px; }
    .bf-fields-grid .full-width { grid-column: 1; }
    .bf-choice-group { grid-template-columns: 1fr; }
    .bf-step .floating-group,
    .bf-step .bf-choice-group,
    .bf-step .bf-service-list,
    .bf-step .bf-fields-grid,
    .bf-step .bf-price-preview,
    .bf-step .bf-trust-row,
    .bf-step .bf-summary,
    .bf-step .bf-nav-row,
    .bf-step > .btn,
    .bf-step .form-note { padding-left: 16px; padding-right: 16px; }
    .bf-step-header { padding: 20px 16px 0; }
    .bf-step-header h3 { font-size: 18px; }
    .booking-progress { gap: 0; }
    .bp-circle { width: 38px; height: 38px; font-size: 14px; }
    .bp-step span { font-size: 9px; }
    .bp-line { max-width: 40px; }

    /* Page hero */
    .page-hero-content h1 { font-size: 24px; }
    .page-hero { padding: 100px 14px 40px; }

    /* Footer */
    .footer-top { padding: 28px 14px 20px; gap: 20px; }

    /* Gallery */
    .gallery-grid { gap: 16px; }
    .gallery-img, .split-img { height: 200px; }

    /* Tutorial */
    .tutorial-card { padding: 24px 16px; }

    /* CTA box */
    .cta-box { padding: 28px 16px; }
    .cta-box h2 { font-size: 20px; }

    /* Dashboard grid */
    .dash-grid { grid-template-columns: 1fr; }

    /* Navbar */
    .navbar { padding: 12px 14px; }

    /* Mobile CTA bar */
    .mobile-cta-bar { padding: 8px 12px; }
    .mobile-cta-bar .btn { font-size: 13px; padding: 11px; }
}
