/* ============================================================
   Indiagram - Custom Styles
   Mobile-first, responsive, PWA-optimized
   ============================================================ */

/* ---- Base ---- */
* {
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #000000;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.03) 0%, transparent 50%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ---- Touch targets (minimum 44px for accessibility) ---- */
.touch-target {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Glass Cards ---- */
.neon-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 102, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-user-select: none;
    user-select: none;
}
.neon-card:hover {
    background: rgba(31, 31, 31, 0.8);
    border-color: rgba(255, 102, 0, 0.5);
    transform: translateY(-4px);
    box-shadow:
        0 20px 40px -15px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 102, 0, 0.2),
        inset 0 0 20px rgba(255, 102, 0, 0.05);
}
/* Active state for mobile tap */
.neon-card:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
}

/* ---- Icon Wrappers ---- */
.icon-wrapper-neon {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
}
.neon-card:hover .icon-wrapper-neon {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2) 0%, rgba(255, 102, 0, 0.1) 100%);
    border-color: rgba(255, 102, 0, 0.6);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

/* ---- Navigation (legacy compat) ---- */
.nav-dark {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 102, 0, 0.1);
}
.bottom-nav-dark {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 102, 0, 0.1);
}

/* ============================================================
   Redesigned Header
   ============================================================ */
.ig-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    height: 56px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 102, 0, 0.08);
}
.ig-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.ig-header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.ig-header-logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}
.ig-header-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}
.ig-header-logo-accent {
    color: #FF6600;
    text-shadow: 0 0 12px rgba(255,102,0,0.4);
}
.ig-header-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 768px) {
    .ig-header-nav { display: flex; }
}
.ig-header-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
    padding: 0.375rem 0;
    position: relative;
}
.ig-header-link svg {
    width: 14px; height: 14px;
}
.ig-header-link:hover,
.ig-header-link.active {
    color: #FF6600;
}
.ig-header-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: #FF6600;
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(255,102,0,0.4);
}
.ig-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ig-header-install-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4rem 0.875rem;
    border-radius: 99px;
    background: #FF6600;
    color: #000;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 12px rgba(255,102,0,0.3);
    min-height: 36px;
}
.ig-header-install-btn svg { width: 14px; height: 14px; }
.ig-header-install-btn:hover {
    box-shadow: 0 4px 20px rgba(255,102,0,0.5);
    transform: translateY(-1px);
}
.ig-header-install-btn.hidden { display: none; }
.ig-header-install-text {
    display: none;
}
@media (min-width: 375px) {
    .ig-header-install-text { display: inline; }
}

/* ============================================================
   Redesigned Footer
   ============================================================ */
.ig-footer {
    border-top: 1px solid rgba(255,255,255,0.04);
    background: rgba(5,5,5,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem 1rem;
    margin-bottom: 4.5rem;
}
.ig-footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ig-footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .ig-footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
}
.ig-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
}
.ig-footer-logo-img {
    height: 20px;
    width: auto;
    object-fit: contain;
}
.ig-footer-logo-text {
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}
.ig-footer-logo-accent {
    color: #FF6600;
}
.ig-footer-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.125rem 0.875rem;
}
@media (min-width: 640px) {
    .ig-footer-platforms { justify-content: flex-end; }
}
.ig-footer-platforms a {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    transition: color 0.2s;
}
.ig-footer-platforms a:hover { color: #FF6600; }

.ig-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 0.75rem;
}
.ig-footer-copy {
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.15);
    margin: 0;
}
.ig-footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ig-footer-links a {
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.15);
    text-decoration: none;
    transition: color 0.2s;
}
.ig-footer-links a:hover { color: #FF6600; }

/* ============================================================
   Redesigned Bottom Nav
   ============================================================ */
.ig-bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255,102,0,0.08);
}
.ig-bottom-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 56px;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}
.ig-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    transition: color 0.2s;
    width: 56px;
    min-height: 44px;
    justify-content: center;
}
.ig-bottom-nav-item svg {
    width: 20px; height: 20px;
}
.ig-bottom-nav-item span {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.ig-bottom-nav-item:hover,
.ig-bottom-nav-item.active {
    color: #FF6600;
}
.ig-bottom-nav-fab-wrap {
    position: relative;
    top: -20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ig-bottom-nav-fab {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FF6600;
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(255,102,0,0.4);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.ig-bottom-nav-fab svg { width: 24px; height: 24px; }
.ig-bottom-nav-fab:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 32px rgba(255,102,0,0.6);
}
.ig-bottom-nav-fab:active {
    transform: scale(0.95);
}
.ig-bottom-nav-fab-label {
    font-size: 9px;
    font-weight: 700;
    color: #FF6600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* ---- Neon Text ---- */
.neon-text {
    color: #FF6600;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

/* ---- Buttons ---- */
.download-btn {
    background: #FF6600;
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #FF6600;
    cursor: pointer;
    min-height: 44px;
}
.download-btn:hover {
    background: transparent;
    color: #FF6600;
    box-shadow: 0 6px 30px rgba(255, 102, 0, 0.5);
}
.download-btn:active {
    transform: scale(0.97);
}
.download-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.fab-neon {
    background: #FF6600;
    color: #000;
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fab-neon:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 12px 40px rgba(255, 102, 0, 0.6);
}
.fab-neon:active {
    transform: scale(0.95);
}

/* ---- Platform Grid ---- */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive grid adjustments */
@media (max-width: 640px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 0 0.5rem;
    }
    .neon-card {
        padding: 1rem 0.5rem !important;
    }
    .neon-card .icon-wrapper-neon {
        width: 3rem !important;
        height: 3rem !important;
    }
    .neon-card .icon-wrapper-neon svg {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }
    .neon-card span {
        font-size: 0.6rem !important;
    }
}

@media (max-width: 374px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .platform-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
}

/* ---- Stagger Animations ---- */
.stagger-1  { animation-delay: 0.05s; }
.stagger-2  { animation-delay: 0.1s;  }
.stagger-3  { animation-delay: 0.15s; }
.stagger-4  { animation-delay: 0.2s;  }
.stagger-5  { animation-delay: 0.25s; }
.stagger-6  { animation-delay: 0.3s;  }
.stagger-7  { animation-delay: 0.35s; }
.stagger-8  { animation-delay: 0.4s;  }
.stagger-9  { animation-delay: 0.45s; }

/* ---- Links (no underline in cards) ---- */
a.neon-card,
a.neon-card:hover {
    text-decoration: none;
}

/* ---- Utility ---- */
.tabular-nums {
    font-variant-numeric: tabular-nums;
}

/* ---- Form Focus States ---- */
input:focus {
    outline: none;
}
input[type="text"],
input[type="url"],
input[type="email"] {
    font-size: 16px; /* Prevents iOS zoom on focus */
}

/* ---- Toast Notification ---- */
.sb-toast {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 9999;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: calc(100vw - 2rem);
    text-align: center;
    white-space: nowrap;
}
.sb-toast.show {
    transform: translateX(-50%) translateY(0);
}
.sb-toast.success {
    background: rgba(255, 102, 0, 0.15);
    border: 1px solid rgba(255, 102, 0, 0.4);
    color: #FF6600;
}
.sb-toast.error {
    background: rgba(255, 50, 50, 0.15);
    border: 1px solid rgba(255, 50, 50, 0.4);
    color: #ff5050;
}

/* ---- PWA standalone mode tweaks ---- */
@media (display-mode: standalone) {
    body {
        padding-top: env(safe-area-inset-top, 0px);
    }
    .nav-dark {
        padding-top: env(safe-area-inset-top, 0px);
    }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   Homepage — Immersive Redesign
   ============================================================ */

/* Main wrapper */
.ig-home-main {
    position: relative;
    min-height: 100vh;
    padding: 4.5rem 1rem 6rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.ig-home-ambient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.ig-home-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Hero */
.ig-home-hero {
    text-align: center;
    padding: 1rem 0 0;
}
.ig-home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.875rem;
    border-radius: 99px;
    background: rgba(255,102,0,0.06);
    border: 1px solid rgba(255,102,0,0.15);
    font-size: 0.625rem;
    font-weight: 700;
    color: #FF6600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.ig-home-hero-badge-icon {
    width: 12px; height: 12px;
}
.ig-home-hero-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 0.5rem;
}
@media (min-width: 480px) {
    .ig-home-hero-title { font-size: 2.25rem; }
}
.ig-home-hero-accent {
    color: #FF6600;
    text-shadow: 0 0 24px rgba(255,102,0,0.4);
}
.ig-home-hero-desc {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
    line-height: 1.6;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

/* Platform cards */
.ig-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
}
@media (max-width: 374px) {
    .ig-home-grid { grid-template-columns: repeat(2, 1fr); }
}

.ig-platform-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 0.5rem 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.02);
    border: 1.5px solid rgba(255,255,255,0.06);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    overflow: hidden;
}
.ig-platform-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,102,0,0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}
.ig-platform-card:hover::before { opacity: 1; }
.ig-platform-card:hover {
    border-color: rgba(255,102,0,0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px -8px rgba(255,102,0,0.15);
}
.ig-platform-card:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
}
.ig-platform-icon {
    width: 44px; height: 44px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(255,102,0,0.1) 0%, rgba(255,102,0,0.03) 100%);
    border: 1px solid rgba(255,102,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}
.ig-platform-icon svg {
    color: #FF6600;
    transition: color 0.2s;
}
.ig-platform-card:hover .ig-platform-icon {
    border-color: rgba(255,102,0,0.5);
    box-shadow: 0 0 16px rgba(255,102,0,0.2);
    transform: scale(1.05);
}
.ig-platform-card:hover .ig-platform-icon svg { color: #ff8533; }
.ig-platform-name {
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s;
    position: relative;
    z-index: 1;
}
.ig-platform-card:hover .ig-platform-name { color: #FF6600; }
.ig-platform-count {
    font-size: 0.5625rem;
    font-weight: 600;
    color: rgba(255,255,255,0.12);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}
.ig-platform-arrow {
    position: absolute;
    top: 0.5rem; right: 0.5rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s;
    z-index: 1;
}
.ig-platform-arrow svg {
    width: 12px; height: 12px;
    color: rgba(255,102,0,0.5);
}
.ig-platform-card:hover .ig-platform-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile responsiveness for platform cards */
@media (max-width: 640px) {
    .ig-platform-card { padding: 1rem 0.375rem 0.75rem; gap: 0.375rem; }
    .ig-platform-icon { width: 36px; height: 36px; }
    .ig-platform-icon svg { width: 18px !important; height: 18px !important; }
    .ig-platform-name { font-size: 0.5625rem; }
    .ig-platform-count { font-size: 0.5rem; }
}

/* Trust bar */
.ig-home-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.25rem 0;
}
.ig-home-trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.5625rem;
    font-weight: 600;
    color: rgba(255,255,255,0.18);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.ig-home-trust-item svg {
    width: 12px; height: 12px;
    color: rgba(255,102,0,0.35);
    flex-shrink: 0;
}
@media (max-width: 420px) {
    .ig-home-trust { gap: 0.75rem; }
    .ig-home-trust-item span { display: none; }
}

/* Stats */
.ig-home-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.5rem 0;
}
.ig-home-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
}
.ig-home-stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: #FF6600;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 16px rgba(255,102,0,0.3);
}
.ig-home-stat-label {
    font-size: 0.5625rem;
    font-weight: 600;
    color: rgba(255,255,255,0.15);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.ig-home-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.06);
}

/* ============================================================
   Service Grid Page — Immersive Redesign
   ============================================================ */

.ig-grid-main {
    position: relative;
    min-height: 100vh;
    padding: 4.5rem 1rem 6rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.ig-grid-ambient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.ig-grid-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Grid hero */
.ig-grid-hero {
    text-align: center;
    padding: 0.25rem 0 0;
}
.ig-grid-hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 0.375rem;
}
.ig-grid-hero-desc {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}

/* Service cards grid */
.ig-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
@media (max-width: 374px) {
    .ig-svc-grid { grid-template-columns: repeat(2, 1fr); }
}

.ig-svc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 1.125rem 0.5rem 0.875rem;
    border-radius: 0.875rem;
    background: rgba(255,255,255,0.02);
    border: 1.5px solid rgba(255,255,255,0.06);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    overflow: hidden;
}
.ig-svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,102,0,0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}
.ig-svc-card:hover::before { opacity: 1; }
.ig-svc-card:hover {
    border-color: rgba(255,102,0,0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px -8px rgba(255,102,0,0.15);
}
.ig-svc-card:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
}
.ig-svc-card-icon {
    width: 40px; height: 40px;
    border-radius: 0.625rem;
    background: linear-gradient(135deg, rgba(255,102,0,0.1) 0%, rgba(255,102,0,0.03) 100%);
    border: 1px solid rgba(255,102,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}
.ig-svc-card-icon svg {
    width: 20px; height: 20px;
    color: #FF6600;
    transition: color 0.2s;
}
.ig-svc-card:hover .ig-svc-card-icon {
    border-color: rgba(255,102,0,0.5);
    box-shadow: 0 0 12px rgba(255,102,0,0.2);
}
.ig-svc-card-name {
    font-size: 0.625rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.3;
    transition: color 0.2s;
    position: relative;
    z-index: 1;
}
.ig-svc-card:hover .ig-svc-card-name { color: #FF6600; }
.ig-svc-card-cta {
    font-size: 0.5rem;
    font-weight: 700;
    color: rgba(255,102,0,0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.125rem 0.5rem;
    border-radius: 99px;
    border: 1px solid rgba(255,102,0,0.12);
    transition: all 0.2s;
    position: relative;
    z-index: 1;
}
.ig-svc-card:hover .ig-svc-card-cta {
    color: #FF6600;
    border-color: rgba(255,102,0,0.3);
    background: rgba(255,102,0,0.06);
}
.ig-svc-card-arrow {
    position: absolute;
    top: 0.375rem; right: 0.375rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s;
    z-index: 1;
}
.ig-svc-card-arrow svg {
    width: 10px; height: 10px;
    color: rgba(255,102,0,0.5);
}
.ig-svc-card:hover .ig-svc-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 640px) {
    .ig-svc-card { padding: 0.875rem 0.375rem 0.625rem; gap: 0.25rem; }
    .ig-svc-card-icon { width: 34px; height: 34px; }
    .ig-svc-card-icon svg { width: 17px; height: 17px; }
    .ig-svc-card-name { font-size: 0.5625rem; }
}

/* ============================================================
   Service Detail Page — Immersive Redesign
   ============================================================ */

/* Main wrapper */
.svc-detail-main {
    position: relative;
    min-height: 100vh;
    padding: 4.5rem 1rem 6rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.svc-detail-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Ambient canvas */
.svc-ambient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Breadcrumb */
.svc-breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    list-style: none;
    padding: 0;
    margin: 0;
}
.svc-breadcrumb a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.svc-breadcrumb a:hover { color: #FF6600; }
.svc-bc-sep { color: rgba(255,255,255,0.12); }
.svc-bc-active { color: #FF6600; }

/* Hero */
.svc-hero {
    text-align: center;
    padding: 0.5rem 0 0;
}
.svc-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255,102,0,0.12) 0%, rgba(255,102,0,0.04) 100%);
    border: 1px solid rgba(255,102,0,0.2);
    margin: 0 auto 0.75rem;
}
.svc-hero-icon svg { width: 28px; height: 28px; }
.svc-hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 0.375rem;
}
.svc-hero-accent {
    color: #FF6600;
    text-shadow: 0 0 20px rgba(255,102,0,0.4);
}
.svc-hero-desc {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

/* Step indicator */
.svc-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0.25rem 0;
}
.svc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.svc-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 800;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.svc-step.active .svc-step-num {
    background: rgba(255,102,0,0.15);
    border-color: #FF6600;
    color: #FF6600;
    box-shadow: 0 0 12px rgba(255,102,0,0.3);
}
.svc-step.done .svc-step-num {
    background: #FF6600;
    border-color: #FF6600;
    color: #000;
}
.svc-step-label {
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.15);
    transition: color 0.3s;
}
.svc-step.active .svc-step-label { color: #FF6600; }
.svc-step.done .svc-step-label { color: rgba(255,255,255,0.4); }

.svc-step-line {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.06);
    margin: 0 0.5rem;
    margin-bottom: 1rem;
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}
.svc-step-line::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0%;
    background: #FF6600;
    border-radius: 1px;
    transition: width 0.5s ease;
}
.svc-step-line.filled::after {
    width: 100%;
}

/* Package cards */
.svc-pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
@media (max-width: 374px) {
    .svc-pkg-grid { grid-template-columns: repeat(2, 1fr); }
}

.svc-pkg-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 1rem 0.5rem 0.75rem;
    border-radius: 0.875rem;
    background: rgba(255,255,255,0.025);
    border: 1.5px solid rgba(255,255,255,0.06);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    -webkit-user-select: none;
    user-select: none;
    outline: none;
}
.svc-pkg-card:hover {
    border-color: rgba(255,102,0,0.4);
    background: rgba(255,102,0,0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -8px rgba(255,102,0,0.15);
}
.svc-pkg-card:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
}
.svc-pkg-card.selected {
    border-color: #FF6600;
    background: rgba(255,102,0,0.08);
    box-shadow: 0 0 20px rgba(255,102,0,0.2), inset 0 0 20px rgba(255,102,0,0.05);
}
.svc-pkg-card.selected .svc-pkg-qty { color: #FF6600; }

/* Popular badge */
.svc-pkg-popular { border-color: rgba(255,102,0,0.25); }
.svc-pkg-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.125rem 0.5rem;
    border-radius: 99px;
    background: #FF6600;
    color: #000;
    white-space: nowrap;
}

.svc-pkg-qty {
    font-size: 1.375rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    transition: color 0.2s;
}
.svc-pkg-type {
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.25);
}
.svc-pkg-timer {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.5625rem;
    font-weight: 700;
    color: rgba(255,102,0,0.6);
    margin-top: 0.125rem;
}
.svc-pkg-timer-icon {
    width: 10px;
    height: 10px;
    color: rgba(255,102,0,0.5);
}

/* Form wrap */
.svc-form-wrap {
    animation: svc-slide-in 0.35s ease-out;
}
@keyframes svc-slide-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Selected banner */
.svc-selected-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0.875rem;
    border-radius: 0.75rem;
    background: rgba(255,102,0,0.06);
    border: 1px solid rgba(255,102,0,0.15);
    margin-bottom: 0.875rem;
}
.svc-selected-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.svc-selected-check {
    width: 16px; height: 16px; color: #FF6600; flex-shrink: 0;
}
.svc-selected-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #FF6600;
}
.svc-change-btn {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s;
}
.svc-change-btn:hover {
    color: #FF6600;
    background: rgba(255,102,0,0.08);
}

/* Order form */
.svc-order-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.svc-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.svc-input-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.svc-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.svc-input-icon {
    position: absolute;
    left: 0.875rem;
    width: 16px;
    height: 16px;
    color: rgba(255,255,255,0.2);
    pointer-events: none;
    flex-shrink: 0;
}
.svc-input-wrap input {
    width: 100%;
    padding: 0.75rem 0.875rem 0.75rem 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.03);
    border: 1.5px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.875rem;
    font-family: inherit;
    transition: all 0.2s;
    outline: none;
}
.svc-input-wrap input::placeholder {
    color: rgba(255,255,255,0.15);
}
.svc-input-wrap input:focus {
    border-color: rgba(255,102,0,0.5);
    box-shadow: 0 0 0 3px rgba(255,102,0,0.08);
    background: rgba(255,255,255,0.04);
}

/* Submit button */
.svc-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 99px;
    background: linear-gradient(135deg, #FF6600 0%, #ff8533 100%);
    color: #000;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 20px rgba(255,102,0,0.3);
    min-height: 48px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}
.svc-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.svc-submit-btn:hover::before {
    transform: translateX(100%);
}
.svc-submit-btn:hover {
    box-shadow: 0 8px 32px rgba(255,102,0,0.4);
    transform: translateY(-1px);
}
.svc-submit-btn:active {
    transform: scale(0.98);
    transition-duration: 0.1s;
}
.svc-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
.svc-bolt-icon {
    width: 16px;
    height: 16px;
}

/* Limit panel */
.svc-limit-panel {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 1rem;
    background: rgba(255,102,0,0.04);
    border: 1px solid rgba(255,102,0,0.15);
}
.svc-limit-icon {
    width: 48px; height: 48px; margin: 0 auto 0.75rem;
    color: #FF6600;
}
.svc-limit-icon svg { width: 100%; height: 100%; }
.svc-limit-title { font-size: 1rem; font-weight: 700; color: #FF6600; margin: 0 0 0.375rem; }
.svc-limit-text { font-size: 0.8125rem; color: rgba(255,255,255,0.3); margin: 0; }

/* Coming soon */
.svc-coming-soon {
    text-align: center;
    padding: 3rem 1rem;
}
.svc-coming-icon {
    width: 48px; height: 48px; margin: 0 auto 1rem;
    color: rgba(255,255,255,0.2);
}
.svc-coming-icon svg { width: 100%; height: 100%; }
.svc-coming-title { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.4); margin: 0 0 0.375rem; }
.svc-coming-text { font-size: 0.8125rem; color: rgba(255,255,255,0.2); margin: 0; }

/* Success */
.svc-success {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 1rem;
    background: rgba(255,102,0,0.06);
    border: 1px solid rgba(255,102,0,0.2);
    animation: svc-success-pop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes svc-success-pop {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.svc-success-icon {
    width: 48px; height: 48px; margin: 0 auto 0.75rem;
    color: #FF6600;
}
.svc-success-icon svg { width: 100%; height: 100%; }
.svc-success-title { font-size: 1.125rem; font-weight: 800; color: #FF6600; margin: 0 0 0.375rem; }
.svc-success-text { font-size: 0.8125rem; color: rgba(255,255,255,0.35); margin: 0; }

/* Trust signals */
.svc-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.25rem 0;
}
.svc-trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.625rem;
    font-weight: 600;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.svc-trust-icon {
    width: 12px;
    height: 12px;
    color: rgba(255,102,0,0.4);
}

/* Back nav */
.svc-back-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.5rem 0;
}
.svc-back-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s;
}
.svc-back-nav a:hover { color: #FF6600; }
.svc-back-nav svg { width: 14px; height: 14px; }

/* Responsive */
@media (max-width: 380px) {
    .svc-hero-title { font-size: 1.25rem; }
    .svc-pkg-qty { font-size: 1.125rem; }
    .svc-trust { gap: 0.75rem; }
    .svc-trust-item span { display: none; }
}

/* ============================================================
   Ad Wall — Full-Screen Gamified Overlay
   ============================================================ */

/* Overlay */
.adwall-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    overflow: hidden;
}
.adwall-overlay.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}
.adwall-overlay.closing {
    opacity: 0;
    transform: scale(0.96);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Close button */
.adwall-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10002;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}
.adwall-close-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Close confirmation overlay */
.adwall-close-confirm {
    position: absolute;
    inset: 0;
    z-index: 10003;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.adwall-close-confirm.hidden { display: none; }

.adwall-confirm-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    max-width: 320px;
    width: 100%;
    box-shadow: 0 0 60px rgba(255, 102, 0, 0.1);
}
.adwall-confirm-icon {
    margin-bottom: 1rem;
}
.adwall-confirm-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.adwall-confirm-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.adwall-confirm-btns {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.adwall-btn-stay {
    background: #FF6600;
    color: #000;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
}
.adwall-btn-stay:hover {
    box-shadow: 0 6px 30px rgba(255, 102, 0, 0.5);
    transform: translateY(-1px);
}
.adwall-btn-leave {
    background: transparent;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    font-size: 0.8125rem;
    transition: all 0.2s ease;
}
.adwall-btn-leave:hover {
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Particle canvas */
.adwall-particles {
    position: absolute;
    inset: 0;
    z-index: 10001;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

/* Content wrapper */
.adwall-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

/* Top half (ad + status) */
.adwall-top {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    min-height: 0;
}

/* Status bar */
.adwall-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
}
.adwall-boost-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.adwall-ring-wrap {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.adwall-ring {
    width: 40px;
    height: 40px;
}
#adwall-ring-progress {
    transition: stroke-dashoffset 1s linear;
}
.adwall-ring-time {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 800;
    color: #FF6600;
    font-variant-numeric: tabular-nums;
}
.adwall-boost-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}
.adwall-boost-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.adwall-boost-meta {
    font-size: 0.625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Stat counter */
.adwall-stat-counter {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.125rem;
}
.adwall-stat-num {
    font-size: 1.375rem;
    font-weight: 800;
    color: #FF6600;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}
.adwall-stat-label {
    font-size: 0.5625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Timer bar */
.adwall-timer-track {
    height: 3px;
    background: rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
}
.adwall-timer-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FF6600, #ff8533);
    transition: width 1s linear;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.5);
}

/* Ad zone */
.adwall-ad-zone {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.75rem;
    min-height: 0;
    overflow: hidden;
}
.adwall-sponsored-tag {
    font-size: 0.5625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 0.375rem;
    flex-shrink: 0;
}
.adwall-ad-slot {
    flex: 1 1 auto;
    overflow: hidden;
    border-radius: 0.5rem;
    min-height: 90px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Status message */
.adwall-status-msg {
    padding: 0.5rem 0.75rem;
    flex-shrink: 0;
}
.adwall-status-msg.hidden { display: none; }
.adwall-status-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    background: rgba(255, 102, 0, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.2);
    font-size: 0.75rem;
    font-weight: 600;
    color: #FF6600;
    animation: adwall-pulse 0.5s ease;
}
.adwall-status-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #FF6600;
}

@keyframes adwall-pulse {
    0%   { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Bottom half (game) */
.adwall-bottom {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 102, 0, 0.15);
    background: rgba(0, 0, 0, 0.4);
    min-height: 0;
}
.adwall-game-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    flex-shrink: 0;
}
.adwall-game-title {
    font-size: 0.625rem;
    font-weight: 800;
    color: #FF6600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.adwall-game-score {
    font-size: 0.625rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    font-variant-numeric: tabular-nums;
}
.adwall-pong-canvas {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    display: block;
    touch-action: none;
}
.adwall-game-hint {
    font-size: 0.5625rem;
    color: rgba(255, 255, 255, 0.15);
    text-align: center;
    padding: 0.25rem;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .adwall-status-bar {
        padding: 0.625rem 0.75rem;
    }
    .adwall-ring-wrap {
        width: 34px;
        height: 34px;
    }
    .adwall-ring {
        width: 34px;
        height: 34px;
    }
    .adwall-ring-time {
        font-size: 0.5625rem;
    }
    .adwall-boost-label {
        font-size: 0.75rem;
    }
    .adwall-stat-num {
        font-size: 1.125rem;
    }
}

@media (min-width: 769px) {
    /* On tablets/desktop, constrain to a centered column */
    .adwall-content {
        max-width: 480px;
        margin: 0 auto;
        border-left: 1px solid rgba(255, 102, 0, 0.08);
        border-right: 1px solid rgba(255, 102, 0, 0.08);
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    /* Landscape phone — side by side layout */
    .adwall-content {
        flex-direction: row;
    }
    .adwall-top, .adwall-bottom {
        flex: 1 1 50%;
    }
    .adwall-bottom {
        border-top: none;
        border-left: 1px solid rgba(255, 102, 0, 0.15);
    }
}

/* ============================================================
   Legacy Landing Pages
   ============================================================ */

.legacy-main {
    position: relative;
    min-height: 100vh;
    padding: 4.5rem 1rem 6rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.legacy-ambient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.legacy-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legacy-hero {
    text-align: center;
    padding: 0.5rem 0 0;
}
.legacy-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 0.625rem;
}
@media (min-width: 480px) {
    .legacy-title { font-size: 2.25rem; }
}
.legacy-subtitle {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
    line-height: 1.6;
}

/* Features */
.legacy-features {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding: 0.5rem 0;
}
.legacy-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.legacy-feature svg {
    width: 32px; height: 32px;
    color: #FF6600;
}
.legacy-feature span {
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}
@media (max-width: 420px) {
    .legacy-features { gap: 0.75rem; }
    .legacy-feature svg { width: 24px; height: 24px; }
    .legacy-feature span { font-size: 0.5625rem; }
}

/* CTA Section */
.legacy-cta-section {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    background: rgba(255,102,0,0.04);
    border: 1px solid rgba(255,102,0,0.12);
}
.legacy-cta-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.375rem;
}
.legacy-cta-desc {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
    margin: 0 0 1rem;
}
.legacy-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.legacy-cta-primary,
.legacy-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.3s;
    min-height: 44px;
}
.legacy-cta-primary {
    background: linear-gradient(135deg, #FF6600 0%, #ff8533 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(255,102,0,0.3);
}
.legacy-cta-primary:hover {
    box-shadow: 0 8px 32px rgba(255,102,0,0.5);
    transform: translateY(-2px);
}
.legacy-cta-primary svg { width: 16px; height: 16px; }
.legacy-cta-secondary {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}
.legacy-cta-secondary:hover {
    background: rgba(255,255,255,0.08);
    color: #FF6600;
    border-color: rgba(255,102,0,0.3);
}

/* Info cards */
.legacy-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.legacy-info-card {
    padding: 1.25rem;
    border-radius: 0.875rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
}
.legacy-info-card h3 {
    font-size: 0.875rem;
    font-weight: 800;
    color: #FF6600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.75rem;
}
.legacy-info-card ul,
.legacy-info-card ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.legacy-info-card li {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.5;
}

/* Trust signals */
.legacy-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
}
.legacy-trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.legacy-stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: #FF6600;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 12px rgba(255,102,0,0.3);
}
.legacy-stat-label {
    font-size: 0.5625rem;
    font-weight: 600;
    color: rgba(255,255,255,0.15);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}
@media (max-width: 420px) {
    .legacy-trust { gap: 1rem; }
    .legacy-stat-num { font-size: 1.25rem; }
}

/* ============================================================
   LEGACY PAGE - TESTIMONIALS SECTION
   ============================================================ */
.legacy-testimonials {
    width: 100%;
    padding: 2.5rem 1.25rem;
    text-align: center;
}
.legacy-testimonials-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.legacy-testimonials-subtitle {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}
.legacy-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
    .legacy-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .legacy-testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.legacy-testimonial-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 102, 0, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}
.legacy-testimonial-card:hover {
    background: rgba(31, 31, 31, 0.8);
    border-color: rgba(255, 102, 0, 0.3);
    transform: translateY(-4px);
    box-shadow:
        0 20px 40px -15px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 102, 0, 0.2),
        inset 0 0 20px rgba(255, 102, 0, 0.05);
}
.legacy-testimonial-stars {
    font-size: 0.875rem;
    color: #ff6600;
    letter-spacing: 0.1em;
    display: inline-block;
}
.legacy-testimonial-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    flex-grow: 1;
    font-style: italic;
}
.legacy-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-top: 1px solid rgba(255, 102, 0, 0.1);
    padding-top: 1rem;
}
.legacy-author-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #ffffff;
}
.legacy-author-platform {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.legacy-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(255, 102, 0, 0.05);
    border: 1px solid rgba(255, 102, 0, 0.15);
    border-radius: 1.5rem;
    padding: 2rem;
    flex-wrap: wrap;
}
.legacy-rating-badge {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6600;
    text-shadow: 0 0 12px rgba(255, 102, 0, 0.3);
}
.legacy-rating-info {
    text-align: center;
}
.legacy-rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}
.legacy-rating-subtitle {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin: 0.25rem 0 0 0;
}

@media (max-width: 640px) {
    .legacy-testimonials { padding: 2rem 1rem; }
    .legacy-testimonials-title { font-size: 1.25rem; }
    .legacy-rating-summary { gap: 1rem; padding: 1.5rem; }
    .legacy-rating-badge { font-size: 2rem; }
}

/* ---- Print ---- */
@media print {
    .nav-dark,
    .bottom-nav-dark,
    .fab-neon,
    #pwa-install-banner,
    #pwa-install-btn {
        display: none !important;
    }
    body {
        background: white;
        color: black;
    }
}
