
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: el messiri, 'Segoe UI', 'Tahoma', system-ui, sans-serif;
    }

    /* ===== COLOR VARIABLES (from your styles.css) ===== */
    :root {
        --primary: #e97a43;
        --secondary: #c9a737;
        --accent: #fca77d;
        --dark: #2b2d42;
        --light: #ffd8c4;
        --info: #6c757d;
        --success: #4cc9f0;
        --warning: #f72585;
        --radius: 12px;
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
        
        /* Light Mode */
        --bg-body: linear-gradient(135deg, #f6f9fc 0%, #e8f1f8 100%);
        --bg-container: #ffffff;
        --text-main: #2b2d42;
        --text-muted: #6c757d;
        --card-bg: #ffffff;
        --border-color: #f0f2f5;
        --table-header-bg: linear-gradient(120deg, var(--primary), var(--accent));
        --table-row-bg: #ffffff;
        --table-row-hover: #f9fafc;
        --location-pill-bg: #ffffff;
        --contact-bg: #2b2d42;
        --navbar-bg: rgba(255, 255, 255, 0.95);
        --navbar-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        --mobile-menu-bg: #ffffff;
    }
    
    [data-theme="dark"] {
        --bg-body: linear-gradient(135deg, #1a1c2e 0%, #2b2d42 100%);
        --bg-container: #2b2d42;
        --text-main: #ffffff;
        --text-muted: #a3a8b8;
        --card-bg: #3f4156;
        --border-color: #4e5066;
        --table-row-bg: #3f4156;
        --table-row-hover: #4e5066;
        --location-pill-bg: #3f4156;
        --contact-bg: #1a1c2e;
        --navbar-bg: rgba(43, 45, 66, 0.95);
        --navbar-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        --mobile-menu-bg: #2b2d42;
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    body {
        font-family: 'Segoe UI', 'Tahoma', 'El Messiri', system-ui, sans-serif;
        background: var(--bg-body);
        color: var(--text-main);
        scroll-behavior: smooth;
        transition: background 0.3s ease, color 0.3s ease;
        min-height: 100vh;
    }
    
    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }
    
    /* ===== THEME TOGGLE ===== */
    .theme-toggle-wrapper {
        z-index: 1002;
    }
    
    .theme-toggle-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #ffffff00;
        border: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--text-main);
        transition: all 0.3s;
        font-size: 2rem;
        box-shadow: var(--shadow);
    }
    
    .theme-toggle-btn:hover {
        background: var(--primary);
        color: white;
        transform: scale(1.05);
    }
    
    /* ===== RESPONSIVE NAVBAR with Hamburger ===== */
    .navbar-wrapper {
        position: sticky;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
        background: transparent;
    }
    
    .navbar-wrapper.scrolled {
        background: var(--navbar-bg);
        backdrop-filter: blur(12px);
        box-shadow: var(--navbar-shadow);
    }
    
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        transition: padding 0.3s ease;
    }
    
    .navbar-wrapper.scrolled .navbar {
        padding: 12px 0;
    }
    
    .logo-area {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .logo-img {
        width: 55px;
        height: 55px;
        object-fit: contain;
        transition: all 0.3s;
    }
    
    .navbar-wrapper.scrolled .logo-img {
        width: 48px;
        height: 48px;
    }
    
    .logo-text h1 {
        font-size: 1.8rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        transition: font-size 0.3s;
    }
    
    .navbar-wrapper.scrolled .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .logo-text span {
        font-size: 0.75rem;
        color: var(--text-muted);
    }
    
    /* Desktop Navigation */
    .nav-links {
        display: flex;
        gap: 32px;
        align-items: center;
    }
    
    .nav-links a {
        text-decoration: none;
        font-weight: 600;
        color: var(--text-main);
        transition: 0.2s;
        font-size: 1.05rem;
        position: relative;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        right: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
    }
    
    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 100%;
    }
    
    .btn-outline {
        border: 2px solid var(--primary);
        padding: 8px 22px;
        border-radius: 40px;
        background: transparent;
        font-weight: bold;
        color: var(--info);
        transition: all 0.3s ease;
    }
    
    .btn-outline::after {
        display: none;
    }
    
    .btn-outline:hover {
       background-color: var(--primary);
        border-color: var(--primary);
        transform: translateY(-2px);
    }
    
    /* Hamburger Menu Button */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        background: transparent;
        border: none;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 30px;
        height: 3px;
        background: var(--text-main);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 3px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--mobile-menu-bg);
        backdrop-filter: blur(20px);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
        z-index: 999;
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 25px;
        overflow-y: auto;
    }
    
    .mobile-menu.open {
        right: 0;
    }
    
    .mobile-menu a {
        text-decoration: none;
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--text-main);
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
        transition: 0.2s;
    }
    
    .mobile-menu a:hover {
        color: var(--primary);
        padding-right: 10px;
    }
    
    .mobile-menu .btn-outline {
        display: inline-block;
        text-align: center;
        margin-top: 10px;
    }
    
    /* Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Responsive Breakpoints */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }
        
        .hamburger {
            display: flex;
        }
        
        .navbar {
            padding: 15px 0;
        }
        
        .logo-text h1 {
            font-size: 1.4rem;
        }
        
        .logo-img {
            width: 45px;
            height: 45px;
        }
    }
    
    /* ===== HERO SECTION ===== */
    .hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        margin: 50px 0 70px;
    }
    
    .hero-content {
        flex: 1;
    }
    
    .hero-content h2 {
        font-size: clamp(1.8rem, 5vw, 3rem);
        line-height: 1.3;
        margin-bottom: 20px;
        color: var(--text-main);
    }
    
    .hero-highlight {
        color: var(--primary);
        border-bottom: 3px solid var(--secondary);
        display: inline-block;
    }
    
    .hero-content p {
        font-size: clamp(1rem, 3vw, 1.2rem);
        color: var(--text-muted);
        margin-bottom: 30px;
        max-width: 550px;
    }
    
    .hero-image {
        flex: 1;
        text-align: center;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
        border-radius: 40px;
        filter: drop-shadow(var(--shadow));
        transition: transform 0.3s;
    }
    
    .hero-image img:hover {
        transform: scale(1.02);
    }
    
    @media (max-width: 768px) {
        .hero {
            flex-direction: column;
            text-align: center;
            margin: 30px 0 50px;
        }
        .hero-content p {
            margin-left: auto;
            margin-right: auto;
        }
        .hero-content {
            text-align: center;
        }
    }
    
    /* ===== BUTTONS ===== */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--primary);
        border: none;
        padding: 14px 35px;
        font-size: 1.1rem;
        font-weight: bold;
        border-radius: 50px;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        box-shadow: 0 8px 18px rgba(233, 122, 67, 0.3);
    }
    
    .btn-primary:hover {
        background: var(--secondary);
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(201, 167, 55, 0.3);
    }
    
    .btn-primary:active {
        transform: translateY(0);
    }
    
    .hotspot-btn {
        background: var(--dark);
        box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    }
    
    .hotspot-btn:hover {
        background: var(--primary);
    }
    
    .whatsapp-btn {
        background: #25D366;
    }
    
    .whatsapp-btn:hover {
        background: #128C7E;
    }
    
    /* ===== FEATURE CARDS ===== */
    .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
        margin: 80px 0;
    }
    
    .feature-card {
        background: var(--card-bg);
        padding: 30px 20px;
        border-radius: var(--radius);
        text-align: center;
        box-shadow: var(--shadow);
        transition: all 0.3s;
        border: 1px solid var(--border-color);
    }
    
    .feature-card i {
        font-size: 48px;
        color: var(--primary);
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        margin-bottom: 12px;
        color: var(--text-main);
    }
    
    .feature-card p {
        color: var(--text-muted);
    }
    
    .feature-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: var(--shadow-lg);
    }
    
    /* ===== SECTION TITLE ===== */
    .section-title {
        text-align: center;
        font-size: clamp(1.8rem, 4vw, 2.3rem);
        margin: 60px 0 30px;
        position: relative;
        color: var(--text-main);
    }
    
    .section-title:after {
        content: "";
        width: 80px;
        height: 4px;
        background: var(--secondary);
        display: block;
        margin: 15px auto 0;
        border-radius: 4px;
    }
    
    /* ===== PRICING TABLE - FULLY RESPONSIVE ===== */
    .pricing-wrapper {
        background: var(--card-bg);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        margin: 30px 0;
        overflow-x: auto;
    }
    
    .price-table {
        width: 100%;
        border-collapse: collapse;
        text-align: center;
        min-width: 350px;
    }
    
    .price-table th {
        background: var(--table-header-bg);
        color: white;
        padding: 18px 12px;
        font-size: 1rem;
        font-weight: 700;
    }
    
    .price-table td {
        padding: 14px 12px;
        border-bottom: 1px solid var(--border-color);
        font-weight: 500;
        color: var(--text-main);
        background: var(--table-row-bg);
    }
    
    .price-table tr:hover td {
        background: var(--table-row-hover);
    }
    
    .badge-new {
        background: var(--primary);
        color: white;
        border-radius: 50px;
        padding: 4px 10px;
        font-size: 0.7rem;
        margin-right: 8px;
        white-space: nowrap;
    }
    
    .price-highlight {
        font-weight: 800;
        color: var(--primary);
        font-size: 1rem;
    }
    
    @media (max-width: 600px) {
        .price-table th,
        .price-table td {
            padding: 12px 8px;
            font-size: 0.85rem;
        }
        .badge-new {
            font-size: 0.6rem;
            padding: 2px 8px;
        }
        .price-highlight {
            font-size: 0.9rem;
        }
    }
    
    /* ===== LOCATIONS SECTION ===== */
    .locations-showcase {
        background: var(--card-bg);
        border-radius: 48px;
        padding: 40px 30px;
        margin: 70px 0;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-color);
    }
    
    .locations-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
        margin-top: 25px;
    }
    
    .location-pill {
        background: var(--location-pill-bg);
        padding: 12px 25px;
        border-radius: 60px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        box-shadow: var(--shadow);
        transition: all 0.2s;
        color: var(--text-main);
        border: 1px solid var(--border-color);
        cursor: default;
    }
    
    .location-pill i {
        color: var(--secondary);
        font-size: 1.2rem;
    }
    
    .location-pill:hover {
        transform: translateY(-3px);
        background: var(--primary);
        color: white;
    }
    
    .location-pill:hover i {
        color: white;
    }
    
    /* ===== CONTACT CARD ===== */
    .contact-card {
        background: var(--contact-bg);
        color: white;
        border-radius: 40px;
        padding: 40px;
        text-align: center;
        margin: 50px 0;
    }
    
    .contact-card h3 {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 16px;
    }
    
    .contact-number {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        font-weight: bold;
        direction: ltr;
        display: inline-block;
        background: rgba(255,255,255,0.15);
        padding: 10px 30px;
        border-radius: 60px;
        margin: 20px 0;
        letter-spacing: 2px;
    }
    
    .contact-buttons {
        margin-top: 20px;
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* ===== REMINDER SECTION ===== */
    .reminder-card {
        background: var(--card-bg);
        padding: 25px;
        border-radius: 60px;
        text-align: center;
        margin: 30px 0;
        border: 1px solid var(--border-color);
    }
    
    /* ===== FOOTER ===== */
    .footer {
        text-align: center;
        padding: 40px 20px;
        border-top: 1px solid var(--border-color);
        margin-top: 40px;
        color: var(--text-muted);
    }
    
    .footer a {
        color: var(--primary);
        text-decoration: none;
    }
    
    .footer a:hover {
        text-decoration: underline;
    }
    
    /* ===== TERMS MODAL ===== */
    .terms-modal {
        font-family: inherit;
    }
    
    .terms-modal > div {
        background: var(--bg-container);
        color: var(--text-main);
    }
    
    /* ===== FADE UP ANIMATION ===== */
    .fade-up {
        opacity: 0;
        transform: translateY(25px);
        transition: all 0.7s ease;
    }
    
    .fade-up.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: var(--border-color);
    }
    ::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 4px;
    }

/* Fox landing refresh: clearer hierarchy, touch-friendly controls, and compact mobile layouts. */
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body.fx-landing-body { overflow-x: hidden; }
body.fx-landing-body .container { width: min(100% - 32px, 1220px); padding-inline: 0; }
body.fx-landing-body section[id] { scroll-margin-top: 94px; }

.navbar-wrapper { border-bottom: 1px solid transparent; }
.navbar-wrapper.scrolled { border-color: var(--border-color); }
.navbar { gap: 16px; }
.logo-area { min-width: 0; }
.logo-text h1 { white-space: nowrap; }
.nav-links { gap: clamp(15px, 2.2vw, 30px); }
.nav-links .btn-outline { color: var(--text-main); white-space: nowrap; }
.theme-toggle-btn { flex: 0 0 44px; width: 44px; height: 44px; font-size: 1.05rem; }
.hamburger { padding: 8px; border-radius: 12px; }
.hamburger:focus-visible, .theme-toggle-btn:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--secondary); outline-offset: 3px; }

.hero {
    position: relative;
    overflow: hidden;
    gap: clamp(24px, 5vw, 72px);
    margin: 28px 0 52px;
    padding: clamp(26px, 5vw, 66px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    background: radial-gradient(ellipse at 88% 4%, rgba(233, 122, 67, .13), transparent 43%), var(--card-bg);
    box-shadow: var(--shadow-lg);
}
.hero::after { position: absolute; inset: auto auto -90px -70px; width: 220px; height: 220px; border: 1px solid rgba(233, 122, 67, .18); border-radius: 50%; content: ""; pointer-events: none; }
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 15px; padding: 8px 13px; border: 1px solid rgba(233,122,67,.25); border-radius: 999px; color: var(--primary); background: rgba(233,122,67,.08); font-size: .88rem; font-weight: 800; }
.hero-content h2 { margin-bottom: 14px; font-size: clamp(2rem, 4.2vw, 3.8rem); line-height: 1.22; }
.hero-content p { max-width: 590px; margin-bottom: 22px; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-actions .btn-primary, .hero-actions .btn-secondary { min-height: 50px; padding: 13px 23px; }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 20px; border: 1px solid var(--border-color); border-radius: 999px; color: var(--text-main); background: var(--card-bg); font-weight: 800; text-decoration: none; transition: .2s ease; }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 9px 16px; margin-top: 23px; color: var(--text-muted); font-size: .84rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust i { color: var(--secondary); }
.hero-image { position: relative; z-index: 1; }
.hero-image img { width: min(100%, 390px); max-height: 360px; object-fit: contain; filter: drop-shadow(0 22px 28px rgba(43,45,66,.14)); }

.features { gap: 16px; margin: 38px 0 70px; }
.feature-card { min-height: 205px; padding: 25px 20px; border-radius: 22px; }
.feature-card i { display: inline-grid; width: 62px; height: 62px; place-items: center; margin-bottom: 14px; border-radius: 20px; background: rgba(233,122,67,.11); font-size: 27px; }
.feature-card p { line-height: 1.8; }
.section-title { margin: 56px 0 25px; font-weight: 900; }
.pricing-wrapper { border: 1px solid var(--border-color); border-radius: 22px; }
.price-table tr { scroll-margin-top: 96px; }
.price-table td:first-child { font-weight: 900; }
.price-table td small { color: var(--text-muted); font-size: .75em; }
.pricing-cta { display: inline-flex; align-items: center; gap: 9px; min-height: 46px; margin-top: 12px; padding: 11px 19px; border-radius: 999px; color: #fff; background: #169b58; font-weight: 800; text-decoration: none; box-shadow: 0 8px 20px rgba(22,155,88,.2); }
.pricing-cta:hover { background: #118249; }
.locations-showcase { margin: 58px 0; padding: clamp(22px, 4vw, 42px); border-radius: 28px; }
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 12px; }
.location-pill { min-height: 54px; justify-content: flex-start; padding: 13px 16px; border-radius: 16px; box-shadow: none; }
.contact-card { margin: 46px 0; padding: clamp(24px, 5vw, 48px); border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: radial-gradient(circle at 10% 0%, rgba(233,122,67,.3), transparent 38%), var(--contact-bg); box-shadow: var(--shadow-lg); }
.contact-card p { color: rgba(255,255,255,.78); line-height: 1.8; }
.contact-number { text-decoration: none; transition: .2s ease; }
.contact-number:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.contact-buttons .btn-primary { min-height: 50px; }
.reminder-card { border-radius: 22px; color: var(--text-muted); line-height: 1.9; }
.footer { line-height: 1.9; }

@media (max-width: 960px) {
    .fox-service-sidebar { display: none !important; }
    body.fx-landing-body.fx-has-sidebar { padding-inline-start: 0 !important; padding-bottom: 0 !important; }
}

@media (max-width: 768px) {
    body.fx-landing-body .container { width: min(100% - 28px, 680px); }
    .navbar { padding: 10px 0; }
    .navbar-wrapper.scrolled .navbar { padding: 8px 0; }
    .logo-area { gap: 9px; }
    .logo-img { width: 42px; height: 42px; }
    .logo-text h1, .navbar-wrapper.scrolled .logo-text h1 { font-size: 1.18rem; }
    .theme-toggle-btn { width: 42px; height: 42px; flex-basis: 42px; }
    .hamburger { padding: 7px; }
    .hamburger span { width: 25px; }
    .mobile-menu { width: min(88vw, 360px); height: 100dvh; padding: calc(84px + env(safe-area-inset-top)) 24px calc(24px + env(safe-area-inset-bottom)); gap: 7px; }
    .mobile-menu a { min-height: 52px; display: flex; align-items: center; gap: 12px; padding: 12px 4px; font-size: 1.05rem; }
    .mobile-menu .btn-outline { justify-content: center; margin-top: 12px; padding: 13px 16px; }
    .hero { gap: 10px; margin: 16px 0 36px; padding: 26px 20px 20px; border-radius: 25px; }
    .hero-content h2 { font-size: clamp(1.95rem, 8vw, 2.8rem); }
    .hero-content p { font-size: 1rem; line-height: 1.85; }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; }
    .hero-trust { justify-content: center; gap: 8px 12px; font-size: .76rem; }
    .hero-image img { width: min(68vw, 260px); max-height: 220px; }
    .features { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin: 28px 0 46px; }
    .feature-card { min-height: 0; padding: 19px 13px; border-radius: 18px; }
    .feature-card i { width: 50px; height: 50px; border-radius: 16px; font-size: 22px; }
    .feature-card h3 { font-size: 1rem; }
    .feature-card p { font-size: .86rem; line-height: 1.7; }
    .section-title { margin: 42px 0 20px; font-size: 1.7rem; }
    .pricing-wrapper { margin: 18px 0; overflow: visible; border: 0; background: transparent; box-shadow: none; }
    .price-table, .price-table tbody { display: grid; width: 100%; min-width: 0; gap: 10px; }
    .price-table thead { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
    .price-table tr { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 12px; padding: 13px 15px; border: 1px solid var(--border-color); border-radius: 17px; background: var(--card-bg); box-shadow: var(--shadow); }
    .price-table td { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-width: 0; padding: 7px 0; border: 0; background: transparent; text-align: left; font-size: .93rem; }
    .price-table td::before { content: attr(data-label); color: var(--text-muted); font-size: .76rem; font-weight: 600; }
    .price-table td:first-child { grid-column: 1 / -1; justify-content: flex-start; color: var(--primary); font-size: 1.16rem; }
    .price-table td:first-child::before { margin-inline-end: auto; color: var(--text-muted); font-size: .8rem; }
    .price-table td:nth-child(2) { grid-column: 1 / -1; border-top: 1px solid var(--border-color); }
    .price-table td:last-child { border-top: 1px solid var(--border-color); }
    .price-highlight { font-size: 1rem; }
    .badge-new { margin-inline-start: 5px; font-size: .67rem; }
    .locations-showcase { margin: 42px 0; padding: 22px 16px; border-radius: 22px; }
    .locations-showcase h3 { font-size: 1.45rem !important; }
    .location-pill { min-height: 50px; }
    .contact-buttons { display: grid; grid-template-columns: 1fr; }
    .contact-buttons .btn-primary { width: 100%; }
    .contact-number { padding: 10px 16px; letter-spacing: 1px; }
    .terms-modal > div { width: calc(100% - 24px) !important; max-height: 86dvh !important; padding: 18px !important; border-radius: 22px !important; }
}

@media (max-width: 380px) {
    body.fx-landing-body .container { width: min(100% - 22px, 680px); }
    .features { grid-template-columns: 1fr; }
    .hero { padding-inline: 16px; }
    .hero-trust { display: grid; grid-template-columns: 1fr 1fr; text-align: start; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .fade-up { opacity: 1; transform: none; }
}
