/* 
   Strato Premium Dark Theme 
   Font: Inter / Outfit
   Revision: 2.1 (Polished)
*/

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1f1f1f;
    --accent-primary: #00ff9d;
    /* Cyber Green */
    --accent-secondary: #00b8ff;
    /* Electric Blue */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNjUiIG51bW9jdGF2ZXM9IjMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIwLjAzIi8+PC9zdmc+');
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.ambient-glow {
    position: fixed;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -2;
    filter: blur(80px);
    animation: pulseGlow 10s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-main);
}

.logo i {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-cta {
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s;
}

.nav-cta:hover {
    transform: scale(1.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link-secondary {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(0, 255, 157, 0.4);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 157, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
    }
}

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.search-bar {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-bar i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-bar input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 1rem 1rem 1rem 3.5rem;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(0, 255, 157, 0.1);
}

.accent-text {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-dark);
}

.btn-secondary {
    background: var(--glass);
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.trust-row {
    display: flex;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    margin-right: 0.4rem;
    color: var(--text-main);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 50px;
    border: 8px solid #333;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.screen-content {
    padding: 2rem 1.5rem;
    height: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-family: var(--font-heading);
}

.profile-pic {
    width: 32px;
    height: 32px;
    background: #444;
    border-radius: 50%;
}

.active-plan-card {
    background: linear-gradient(135deg, #00C853 0%, #009688 100%);
    border-radius: 20px;
    padding: 1.5rem;
    color: white;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.data-ring {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.data-ring small {
    font-size: 1rem;
    opacity: 0.8;
}

.data-total {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 400;
}

.status-badge {
    align-self: flex-start;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.quick-actions {
    display: flex;
    justify-content: space-around;
}

.action-btn {
    width: 50px;
    height: 50px;
    background: #2a2a2a;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 200px;
}

.card-1 {
    top: 15%;
    right: -20px;
    animation: float 7s infinite reverse;
}

.card-2 {
    bottom: 20%;
    left: -40px;
    animation: float 5s infinite;
}

.float-card strong {
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
}

.float-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.float-card .icon {
    font-size: 1.5rem;
}

/* Partner Logos */
.partners {
    padding: 2rem 0;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.partners p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.logo-track {
    display: flex;
    justify-content: center;
    gap: 4rem;
    opacity: 0.4;
    font-weight: 800;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* Common Section */
section {
    padding: 6rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.comp-col {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.comp-col h3 {
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.comp-col ul {
    list-style: none;
}

.comp-col li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.bad i {
    color: #ff4757;
}

.good i {
    color: var(--accent-primary);
}

.strato-way {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid var(--accent-primary);
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.logo-mini {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-mini i {
    color: var(--accent-primary);
}

/* Steps Section */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.visual-side {
    flex: 1;
}

.content-side {
    flex: 1;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: background 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
    /* Add structure to inactive state */
    opacity: 0.6;
}

.step-item:hover,
.step-item.active {
    background: var(--bg-card);
    border-color: var(--border);
    opacity: 1;
}

.step-item:hover,
.step-item.active {
    background: var(--bg-card);
}

.step-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.3;
}

.step-item.active .step-num {
    color: var(--accent-primary);
    opacity: 1;
}

.step-info h3 {
    margin-bottom: 0.5rem;
}

.step-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Plans Section */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab:hover {
    border-color: var(--text-main);
    color: var(--text-main);
}

.tab.active {
    background: var(--text-main);
    color: #000;
    border-color: var(--text-main);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-primary);
}

.skeleton-card {
    height: 300px;
    background: var(--bg-card);
    border-radius: 20px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.5;
    }
}

.pc-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.pc-flag {
    font-size: 2rem;
}

.pc-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
}

.pc-body h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.pc-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 12px;
}

.pc-feat strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-main);
}

.pc-feat span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pc-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.all-plans-btn-container {
    text-align: center;
    margin-top: 3rem;
}

/* Features Grid */
.grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--glass);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
}

.feature-card .icon {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

/* Device Compatibility Section (Polished) */
.comp-box {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, #1f1f1f, #141414);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.comp-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.1) 0%, transparent 70%);
    filter: blur(50px);
}

.comp-action {
    flex: 1;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.check-box {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.check-box input {
    flex: 1;
    background: #000;
    border: 1px solid var(--border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.check-box input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(0, 255, 157, 0.1);
}

.btn-check {
    background: var(--text-main);
    color: #000;
    border: none;
    padding: 0 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    height: 100%;
    /* Match input height */
    display: flex;
    align-items: center;
}

.btn-check:hover {
    transform: scale(1.05);
}

.model-result {
    margin-top: 1rem;
    font-size: 0.95rem;
    padding: 1rem;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s;
}

.model-result.success {
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(0, 255, 157, 0.2);
    opacity: 1;
    transform: translateY(0);
}

.model-result.error {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.2);
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials (Added) */
.reviews-scroll {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 2rem 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reviews-scroll::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 350px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stars {
    color: #FFD700;
    letter-spacing: 2px;
}

.review-card p {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.author div {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.author strong {
    color: var(--text-main);
}

.author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* FAQ (Added) */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.f-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.f-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.f-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    transition: all 0.3s ease-out;
    opacity: 0;
}

.f-item.active .f-answer {
    padding-bottom: 1.5rem;
    max-height: 200px;
    opacity: 1;
}

.f-item.active .f-question i {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

/* CTA Banner (Added) */
.cta-banner {
    padding: 4rem 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #009688 100%);
    border-radius: 30px;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    position: relative;
    overflow: hidden;
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 400px;
    opacity: 0.9;
    font-weight: 500;
}

.cta-qr {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-qr p {
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.qr-wrapper {
    width: 150px;
    height: 150px;
}

/* Footer structure */
.main-footer {
    background: #050505;
    padding-top: 4rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: var(--bg-card);
    width: 450px;
    border-radius: 24px;
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.m-header {
    background: linear-gradient(135deg, #1f1f1f, #141414);
    padding: 2rem;
    border-bottom: 1px solid var(--border);
}

.m-body {
    padding: 2rem;
}

.plan-summary-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.ps-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.ps-row.highlight {
    border-top: 1px solid var(--border);
    margin-top: 0.8rem;
    padding-top: 0.8rem;
}

.val.price {
    color: var(--accent-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Improved Form Styles */
.input-group {
    margin-bottom: 1.25rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    /* Lighter than pure black */
    border: 1px solid var(--border);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(0, 255, 157, 0.02);
    box-shadow: 0 0 0 4px rgba(0, 255, 157, 0.05);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

/* Gift Checkbox Styling */
.gift-toggle {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--border);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.gift-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

.gift-toggle label {
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.gift-toggle input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 12px;
    accent-color: var(--accent-secondary);
    cursor: pointer;
}

/* Payment Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.divider span {
    padding: 0 10px;
}

/* Modal Trust Footer */
.modal-trust-footer {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 255, 0, 0.03);
    padding: 0.8rem;
    border-radius: 8px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Success Overlay (Missing in prev version) */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 3000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
}

.success-overlay.active {
    display: flex;
}

.success-card {
    background: #141414;
    width: 400px;
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.3);
}

.success-card h2 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.success-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.qr-display {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 2rem;
}

.manual-details-box {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.md-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-family: monospace;
    font-size: 0.9rem;
}

.md-row code {
    color: var(--accent-secondary);
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.copy-btn:hover {
    color: white;
}

.tab-switcher {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tab-switcher button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.tab-switcher button.active {
    color: var(--text-main);
    border-color: var(--accent-primary);
}

/* Responsive */
@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .comparison-grid,
    .split-layout,
    .grid-box,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .strato-way {
        transform: none;
    }

    .step-phone {
        display: none;
    }

    .comp-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}