@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

/* =============================================
   COLOR VARIABLES - Red & White Theme
   ============================================= */
:root {
    --primary:       #dc2626; /* Vibrant red */
    --primary-dark:  #991b1b; /* Dark red */
    --primary-light: #ef4444; /* Light red */
    --primary-glow:  rgba(220, 38, 38, 0.15);

    --bg-page:    #f8fafc; /* Slate-50 light background */
    --bg-card:    #ffffff; /* White card */
    --bg-sidebar: #ffffff; /* White sidebar */
    --bg-topbar:  #ffffff; /* White topbar */

    --text-dark:  #0f172a; /* Slate-900 heading text */
    --text-body:  #334155; /* Slate-700 body text */
    --text-muted: #64748b; /* Slate-500 muted text */
    --text-light: #ffffff;

    --border:      #cbd5e1; /* Slate-300 light border */
    --border-focus: #dc2626;

    --success: #10b981;
    --warning: #f59e0b;
    --danger:  #ef4444;
    --info:    #3b82f6;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-mono:    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;

    /* Legacy aliases for old templates */
    --bg-darker:    var(--bg-page);
    --bg-dark:      var(--bg-page);
    --cyan:         var(--primary);
    --cyan-glow:    var(--primary-glow);
    --gold:         #d97706; /* Darker gold for text contrast */
    --gold-glow:    rgba(217,119,6,0.1);
    --border-color: var(--border);
    --border-hover: var(--primary);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-page);
    color: var(--text-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

input, button, select, textarea, optgroup {
    font-family: inherit;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.fade-in { animation: fadeIn 0.5s ease forwards; }
.stagger-1 { animation-delay: 0.08s; }
.stagger-2 { animation-delay: 0.16s; }
.stagger-3 { animation-delay: 0.24s; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.25;
    font-weight: 700;
}

/* Legacy color helpers */
.text-gold  { color: var(--gold); }
.text-cyan  { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-light { color: #ffffff; }

/* =============================================
   CONTAINER
   ============================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =============================================
   PUBLIC NAVBAR / HEADER
   ============================================= */
header {
    background: var(--bg-topbar);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-subtext {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }

.btn-nav-book {
    background: var(--primary);
    color: #fff !important;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px var(--primary-glow);
    transition: background 0.2s, transform 0.2s;
}
.btn-nav-book:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    color: #fff !important;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border-left: 1px solid var(--border);
    padding-left: 1.25rem;
}

.nav-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
}

/* =============================================
   CARDS
   ============================================= */
.antigravity-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    transition: box-shadow 0.3s, transform 0.3s;
}
.antigravity-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #e53e3e);
}
.antigravity-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}
.glass-card:hover {
    box-shadow: var(--shadow-md);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px var(--primary-glow);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px var(--primary-glow);
    color: #fff;
}

.btn-secondary {
    background: #f3f4f6;
    color: var(--text-body);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    color: var(--text-dark);
}

.btn-gold {
    background: #b45309;
    color: #fff;
}
.btn-gold:hover {
    background: #92400e;
    transform: translateY(-1px);
    color: #fff;
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}
.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-1px);
    color: #fff;
}

.btn-sm {
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
}

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 1.25rem; }

/* =============================================
   LANDING PAGE / HOMEPAGE
   ============================================= */
.landing-shell {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0 3rem;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid rgba(220, 38, 38, 0.16);
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,247,247,0.95));
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: -20% auto auto -10%;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.24), transparent 70%);
    filter: blur(8px);
}

.hero-copy h1 {
    font-size: clamp(2.3rem, 4vw, 4rem);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-copy p {
    max-width: 640px;
    font-size: 1.04rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(220, 38, 38, 0.12);
    box-shadow: var(--shadow-sm);
}

.stat-card strong {
    display: block;
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 800;
}

.stat-card span {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-visual {
    position: relative;
    min-height: 360px;
    border-radius: 1.5rem;
    background: linear-gradient(145deg, rgba(220,38,38,0.08), rgba(15,23,42,0.04));
    border: 1px solid rgba(220,38,38,0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.hero-orb {
    position: absolute;
    inset: 8% 10% auto auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220,38,38,0.26), transparent 70%);
}

.device-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem;
    border-radius: 1.25rem;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(220,38,38,0.14);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
}

.device-card span {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #f87171);
} 

.router { top: 3rem; left: 2rem; }
.router span { border-radius: 50%; }
.tv { bottom: 2rem; left: 3rem; }
.remote { right: 1.5rem; bottom: 2.5rem; }
.remote span { border-radius: 999px; }

.connection-line {
    position: absolute;
    inset: 50% 20% auto 25%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: rotate(-10deg);
}

.section-block {
    padding: 1.25rem 0 0.25rem;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 1.5rem;
}

.section-heading h2 {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    margin-bottom: 0.6rem;
}

.section-heading p,
.contact-card p,
.coverage-card p {
    color: var(--text-muted);
}

.feature-grid,
.plan-grid,
.timeline-grid,
.testimonial-grid {
    display: grid;
    gap: 1.25rem;
}

.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plan-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.timeline-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.feature-card,
.plan-card,
.timeline-card,
.testimonial-card,
.coverage-card,
.contact-card,
.faq-item {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(220,38,38,0.12);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.feature-card,
.plan-card,
.timeline-card,
.testimonial-card {
    padding: 1.4rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.plan-card:hover,
.timeline-card:hover,
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon,
.plan-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-bottom: 0.8rem;
    background: rgba(220,38,38,0.1);
    font-size: 1.15rem;
}

.feature-card h3,
.plan-card h3,
.timeline-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.05rem;
}

.feature-card p,
.timeline-card p,
.testimonial-card p,
.plan-card p,
.coverage-card p,
.contact-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.plan-card.popular {
    border-color: rgba(220,38,38,0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(220,38,38,0.12);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.plan-speed {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.plan-meta {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.plan-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
}

.plan-price span { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }

.split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: center;
}

.benefit-list {
    display: grid;
    gap: 0.8rem;
    padding-left: 1.2rem;
    color: var(--text-body);
    margin-top: 1rem;
}

.benefit-cards {
    display: grid;
    gap: 1rem;
}

.benefit-card {
    padding: 1.2rem 1.3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(220,38,38,0.08), rgba(255,255,255,0.95));
    border: 1px solid rgba(220,38,38,0.12);
}

.benefit-card strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary);
}

.timeline-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(220,38,38,0.12);
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.coverage-card,
.contact-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.6rem;
}

.coverage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.coverage-list span {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(220,38,38,0.08);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    padding: 0.2rem 1rem 0.2rem 1rem;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    padding: 1rem 0;
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    color: var(--primary);
    font-size: 1.15rem;
}

.faq-item.active .faq-question::after {
    content: '–';
}

.faq-answer {
    display: none;
    padding-bottom: 1rem;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    display: block;
}

footer {
    margin-top: 2rem;
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(220,38,38,0.12);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover { color: var(--primary); }

.social-links {
    display: flex;
    gap: 0.7rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(220,38,38,0.08);
    color: var(--primary);
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: rgba(220,38,38,0.14);
}

@media (max-width: 992px) {
    .hero-panel,
    .split-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid { grid-template-columns: 1fr 1fr; }
    .plan-grid { grid-template-columns: 1fr 1fr; }
    .timeline-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .coverage-card,
    .contact-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .hero-panel { padding: 1.4rem; }
    .hero-stats { grid-template-columns: 1fr; }
    .feature-grid,
    .plan-grid,
    .timeline-grid { grid-template-columns: 1fr; }
    .nav-menu { gap: 0.9rem; }
    .nav-link { font-size: 0.8rem; }
}

.form-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-control {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
    background: #ffffff;
}
.form-control::placeholder { color: #5b6270; }

/* select arrow */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.5rem;
}
select.form-control option {
    background-color: var(--bg-card);
    color: var(--text-dark);
}

.password-input-container { position: relative; }
.password-toggle-btn {
    position: absolute;
    right: 0.9rem; top: 50%;
    transform: translateY(-50%);
    background: none; border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.8rem;
    display: flex; align-items: center; gap: 3px;
    transition: color 0.2s;
}
.password-toggle-btn:hover { color: var(--primary); }

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* =============================================
   ALERTS
   ============================================= */
.alert {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}
.alert-danger {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}
.alert-warning {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
}

/* =============================================
   TABLES
   ============================================= */
.table-responsive { overflow-x: auto; width: 100%; }

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}
.table th, .table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    background: #f1f5f9;
}
.table tbody tr:hover td { background: #f8fafc; }

/* =============================================
   BADGES
   ============================================= */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.badge-pending  { background: #fffbeb; color: #92400e; border: 1px solid #fcd34d; }
.badge-approved { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
.badge-cancelled { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* =============================================
   BOOKING SLOTS
   ============================================= */
.slots-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.65rem;
    margin-top: 0.75rem;
}
.slot-radio { display: none; }
.slot-label {
    display: flex; align-items: center; justify-content: center;
    background: #f9fafb;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: all 0.2s;
}
.slot-label:hover { border-color: var(--primary); color: var(--primary); background: #fef2f2; }
.slot-radio:checked + .slot-label {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px var(--primary-glow);
}
.slot-label.unavailable {
    opacity: 0.35;
    cursor: not-allowed;
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #9ca3af;
}
.slot-label.unavailable:hover {
    border-color: #e5e7eb;
    color: #9ca3af;
    background: #f3f4f6;
}

/* =============================================
   STAT CARDS (Client dashboard)
   ============================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}
.stat-icon {
    width: 46px; height: 46px;
    border-radius: 10px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.stat-number {
    font-size: 1.65rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1;
    margin-top: 0.2rem;
}

/* =============================================
   HERO (Public index page)
   ============================================= */
.hero-section {
    padding: 5rem 0 3.5rem;
    text-align: center;
    position: relative;
}
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

/* =============================================
   SERVICE CARDS (Index page)
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}
.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0.75rem 0;
    font-family: var(--font-heading);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    margin-top: auto;
    background: var(--bg-topbar);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}
.footer-content {
    display: flex; flex-direction: column;
    align-items: center; gap: 0.75rem;
}
.footer-logo {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 800;
}

/* =============================================
   ADMIN SIDEBAR / LAYOUT
   ============================================= */
html, body {
    margin: 0;
    padding: 0;
    height: auto !important;
    min-height: 100vh;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.admin-dashboard-layout {
    display: flex;
    height: 100vh;
    min-height: 0;
    width: 100%;
    background-color: #f8fafc;
    overflow: hidden;
}

/* Keep the admin application inside the viewport; page content scrolls in its pane. */
html.admin-app,
body.admin-app {
    height: 100% !important;
    min-height: 0;
    overflow: hidden !important;
}

.admin-sidebar {
    width: 250px;
    background: #0b132b;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 100;
    transition: margin-left 0.3s ease, transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.admin-sidebar.sidebar-collapsed {
    margin-left: -250px;
}

.admin-sidebar-brand {
    background: #dc2626;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.admin-sidebar-menu {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    overflow-y: auto;
}

.admin-sidebar-category {
    font-size: 0.68rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    padding-left: 0.5rem;
}

.admin-sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s;
}
.admin-sidebar-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}
.admin-sidebar-item.active {
    background: #dc2626;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
}

.admin-sidebar-profile {
    display: none;
}

/* Admin main area */
.admin-main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    height: 100vh;
    overflow: hidden;
}

.admin-topbar {
    height: 68px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 99;
}

.admin-content-pane {
    flex: 1;
    padding: 2rem 2.25rem;
    background-color: #f8fafc;
    min-height: 0;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
}

/* Dashboard is a single-screen workspace on desktop. */
.admin-dashboard-pane {
    overflow: hidden;
    padding: 0.875rem 1.25rem;
}
body.admin-dashboard-page .admin-main-wrapper > footer {
    display: none;
}


/* Admin welcome banner */
.admin-welcome-banner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-sm);
}

/* Admin KPI cards */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.1rem;
    margin-bottom: 1.75rem;
}
.admin-stat-card-horizontal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin-stat-card-horizontal:hover { 
    box-shadow: var(--shadow-md); 
}
.clickable-kpi-card:hover {
    transform: translateY(-3px);
    border-color: rgba(220, 38, 38, 0.3);
    background: rgba(220, 38, 38, 0.05);
}

.admin-stat-icon-wrapper {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.admin-stat-info { display: flex; flex-direction: column; }
.admin-stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
.admin-stat-value {
    font-size: 1.7rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.1;
}

/* =============================================
   SIDEBAR COLLAPSE
   ============================================= */
.admin-sidebar.collapsed {
    width: 0;
    overflow: hidden;
    border: none;
    padding: 0;
}

@media (max-width: 992px) {
    .admin-sidebar {
        position: absolute;
        left: 0; top: 64px;
        height: calc(100vh - 64px);
        transform: translateX(-100%);
        box-shadow: 8px 0 24px rgba(0,0,0,0.2);
    }
    .admin-sidebar.active { transform: translateX(0); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .admin-topbar { padding: 0 1rem; }
    .admin-content-pane { padding: 1.25rem 1rem; }
    .admin-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .admin-stats-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .nav-menu { gap: 0.75rem; }
}

/* =============================================
   LANDING PAGE — PUBLIC REDESIGN
   Matches reference photo: white/red modern ISP site
   ============================================= */

/* ── LP Header / Navbar ─────────────────────── */
.lp-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.lp-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
}
.lp-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}
.lp-logo-img {
    width: 40px; height: 40px;
    object-fit: contain;
}
.lp-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.lp-logo-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.02em;
}
.lp-logo-sub {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 1px;
}
.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}
.lp-nav-link {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.lp-nav-link:hover { color: var(--primary); background: rgba(220,38,38,0.05); }
.lp-nav-active { color: var(--primary) !important; }
.lp-btn-admin {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.lp-btn-admin:hover { background: var(--primary-dark); transform: translateY(-1px); color: #fff; }
.lp-btn-nav-book {
    background: var(--primary);
    color: #fff !important;
    text-decoration: none;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: background 0.2s;
}
.lp-btn-nav-book:hover { background: var(--primary-dark); }
.lp-btn-nav-logout {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(220,38,38,0.3);
    border-radius: 6px;
    transition: all 0.2s;
}
.lp-btn-nav-logout:hover { background: var(--primary); color: #fff; }
.lp-nav-user {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.lp-nav-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}
.lp-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.lp-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* ── LP Main Wrapper ────────────────────────── */
.lp-main-wrap { flex: 1; display: flex; flex-direction: column; }

/* ── LP Hero ────────────────────────────────── */
.lp-hero {
    background: linear-gradient(135deg, #fff8f8 0%, #fff 60%, #fff5f5 100%);
    position: relative;
    overflow: hidden;
}
.lp-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 420px; height: 420px;
    border-radius: 50%;
    border: 2px solid rgba(220,38,38,0.1);
    pointer-events: none;
}
.lp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding-top: 3.5rem;
    padding-bottom: 2rem;
}
.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220,38,38,0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(220,38,38,0.18);
}
.lp-hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 1rem;
}
.lp-red { color: var(--primary); }
.lp-hero-sub {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 2rem;
}
.lp-hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(220,38,38,0.25);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.lp-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220,38,38,0.35);
    color: #fff;
}
.lp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1.5px solid #d1d5db;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    cursor: pointer;
}
.lp-btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(220,38,38,0.04);
}
.lp-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.lp-hero-img-wrap {
    max-width: 520px;
    width: 100%;
}
.lp-hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s, filter 0.6s;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.12));
}
.lp-hero-img:hover {
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 25px 40px rgba(220,38,38,0.22));
}

/* ── Features Bar ───────────────────────────── */
.lp-features-bar {
    background: #fff;
    border-top: 1px solid #f1f5f9;
    padding: 1.5rem 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.lp-feature-item { display: flex; align-items: center; gap: 1rem; }
.lp-feature-item > div { display: flex; flex-direction: column; gap: 0.1rem; }
.lp-feature-item strong { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); display: block; }
.lp-feature-item span { font-size: 0.78rem; color: var(--text-muted); }
.lp-feature-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lp-icon-red { background: rgba(220,38,38,0.08); color: var(--primary); }

/* ── Plans Section ──────────────────────────── */
.lp-plans-section { padding: 4rem 0 5rem; background: #f8fafc; }
.lp-section-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}
.lp-section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}
.lp-section-divider {
    width: 48px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 0 auto 1rem;
}
.lp-section-sub {
    text-align: center;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 3rem;
    font-size: 0.95rem;
    line-height: 1.65;
}
.lp-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.lp-plan-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.25s, box-shadow 0.25s;
    overflow: hidden;
}
.lp-plan-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.lp-plan-featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 30px rgba(220,38,38,0.12);
    background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
}
.lp-plan-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}
.lp-plan-basic .lp-plan-badge    { background: #64748b; }
.lp-plan-premium .lp-plan-badge  { background: #7c3aed; }
.lp-plan-bundle .lp-plan-badge   { background: #b45309; }
.lp-plan-icon { position: absolute; top: 1rem; right: 1rem; color: var(--text-muted); opacity: 0.25; }
.lp-plan-speed {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-top: 0.25rem;
}
.lp-plan-type {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.lp-plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin: 0.5rem 0;
    flex: 1;
}
.lp-plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-body);
}
.lp-plan-features li svg { color: var(--primary); flex-shrink: 0; }
.lp-plan-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-top: 0.75rem;
}
.lp-price-currency { font-size: 1.2rem; font-weight: 700; }
.lp-price-period { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.lp-plan-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}
.lp-plan-btn:hover { background: var(--primary-dark); transform: translateY(-1px); color: #fff; }
.lp-no-plans { grid-column: 1/-1; text-align: center; padding: 3rem; color: var(--text-muted); }

/* ── Troubleshoot Section ───────────────────── */
.lp-trouble-section { padding: 4rem 0; background: #fff; }
.lp-trouble-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.lp-trouble-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
#trouble-step1 { border-left-color: var(--primary); }
#trouble-step2 { border-left-color: #d97706; }
#trouble-step3 { border-left-color: #059669; }
.lp-trouble-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.07); transform: translateY(-2px); }
.lp-trouble-step { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); }
.lp-step-gold  { color: #b45309; }
.lp-step-green { color: #059669; }
.lp-trouble-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: #0f172a; }
.lp-trouble-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.lp-trouble-note { font-size: 0.78rem; color: var(--text-muted); border-top: 1px solid #e5e7eb; padding-top: 0.75rem; margin-top: auto; }
.lp-trouble-action { margin-top: auto; padding-top: 0.5rem; }
.lp-trouble-action .lp-btn-primary,
.lp-trouble-action .lp-btn-outline { display: block; text-align: center; font-size: 0.88rem; padding: 0.6rem; width: 100%; }

/* ── Contact Banner ─────────────────────────── */
.lp-contact-banner { padding: 3rem 0; background: linear-gradient(135deg, #fff8f8, #fff); border-top: 1px solid #f1f5f9; }
.lp-contact-inner {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.lp-contact-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 800; color: #0f172a; text-transform: uppercase; margin-bottom: 0.5rem; }
.lp-contact-info { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }
.lp-contact-right { text-align: right; }
.lp-contact-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.lp-contact-phone { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 0.25rem; }
.lp-contact-fb { font-size: 0.85rem; color: var(--text-muted); }
.lp-contact-fb a { color: var(--primary); text-decoration: none; font-weight: 600; }
.lp-contact-fb a:hover { text-decoration: underline; }

/* ── LP Footer ──────────────────────────────── */
.lp-footer { background: #0f172a; color: rgba(255,255,255,0.6); padding: 2rem 0; margin-top: auto; }
.lp-footer .footer-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.lp-footer .footer-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; color: #fff; font-size: 0.9rem; }
.lp-footer p { margin: 0; font-size: 0.82rem; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1100px) {
    .lp-plans-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .lp-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .lp-badge { margin: 0 auto 1.25rem; }
    .lp-hero-btns { justify-content: center; }
    .lp-hero-visual { max-width: 480px; margin: 0 auto; }
    .lp-trouble-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .lp-hamburger { display: flex; }
    .lp-nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        padding: 0.5rem 1rem 1rem;
        z-index: 300;
    }
    .lp-nav-links.lp-nav-open { display: flex; }
    .lp-nav-links li { width: 100%; }
    .lp-nav-link, .lp-btn-admin, .lp-btn-nav-book, .lp-btn-nav-logout {
        display: block; width: 100%; padding: 0.65rem 0.75rem; text-align: left;
    }
    .lp-header { position: relative; }
    .lp-plans-grid { grid-template-columns: 1fr; }
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-hero-title { font-size: 2rem; }
    .lp-hero-br { display: none; }
    .lp-contact-inner { flex-direction: column; text-align: center; }
    .lp-contact-right { text-align: center; }
}
@media (max-width: 480px) {
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-hero-title { font-size: 1.7rem; }
}

/* ── Mobile Download Section ────────────────── */
.lp-download-section {
    padding: 5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.lp-download-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 900px) {
    .lp-download-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .lp-download-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.lp-download-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.lp-dl-feat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
}
.lp-dl-feat-item svg {
    color: #dc2626;
    flex-shrink: 0;
}
.lp-download-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Phone Mockup & Visual Decoration */
.lp-download-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.lp-visual-glow-orb {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(220,38,38,0.12) 0%, rgba(220,38,38,0) 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
    pointer-events: none;
}
.phone-mockup {
    width: 280px;
    height: 500px;
    background: #0f172a;
    border: 12px solid #1e293b;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(15,23,42,0.22), 0 0 0 1px rgba(255,255,255,0.05) inset;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: transform 0.3s ease;
}
.phone-mockup:hover {
    transform: translateY(-5px) rotate(1deg);
}
/* Camera Notch (Dynamic Island) */
.phone-notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 16px;
    background: #000;
    border-radius: 12px;
    z-index: 60;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}
/* Glass Reflection Overlay */
.phone-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 50%);
    pointer-events: none;
    z-index: 50;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    position: relative;
}
.phone-status-bar {
    height: 34px;
    background: #0f172a;
    padding: 12px 1.15rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    z-index: 40;
}
.phone-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}
.phone-app-header {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    padding: 0.9rem 1.15rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(153,27,27,0.15);
}
.phone-app-body {
    padding: 0.85rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.mock-status-pill {
    background: #f1f5f9;
    border-radius: 20px;
    padding: 0.4rem 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid #e2e8f0;
    align-self: flex-start;
}
.pulse-indicator {
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.7);
    animation: mock-pulse 1.6s infinite;
}
@keyframes mock-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34,197,94,0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(34,197,94,0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34,197,94,0);
    }
}
.mock-card {
    background: #fff;
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 4px 12px rgba(15,23,42,0.03);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}
.mock-plan-card {
    background: linear-gradient(to bottom, #ffffff, #fafafa);
    border-left: 4px solid #dc2626;
}
.mock-label {
    font-size: 0.55rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.8px;
}
.mock-plan-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0.1rem 0 0;
}
.mock-plan-badge {
    font-size: 0.55rem;
    font-weight: 800;
    color: #dc2626;
    background: rgba(220,38,38,0.08);
    padding: 3px 8px;
    border-radius: 12px;
}
.mock-progress-bar {
    width: 100%;
    height: 5px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-top: 0.5rem;
    overflow: hidden;
}
.mock-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
    border-radius: 3px;
}
.mock-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
}
.mock-action-btn {
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    transition: background-color 0.2s ease;
    cursor: pointer;
}
.mock-action-btn svg {
    margin-bottom: 1px;
}
.mock-action-btn span {
    font-size: 0.55rem;
    font-weight: 700;
}
.action-pay {
    background: rgba(15,23,42,0.04);
    color: #0f172a;
}
.action-pay:hover {
    background: rgba(15,23,42,0.08);
}
.action-support {
    background: rgba(220,38,38,0.04);
    color: #dc2626;
}
.action-support:hover {
    background: rgba(220,38,38,0.08);
}
.action-speed {
    background: rgba(30,58,138,0.04);
    color: #1e3a8a;
}
.action-speed:hover {
    background: rgba(30,58,138,0.08);
}
.action-install {
    background: rgba(101,163,13,0.04);
    color: #65a30d;
}
.action-install:hover {
    background: rgba(101,163,13,0.08);
}
