﻿:root {
    --bg: #0f172a;
    --card: #0b1220;
    --muted: #94a3b8;
    --accent: #0ea5a4; /* teal-ish */
    --accent-2: #06b6d4;
    --glass: rgba(255,255,255,0.03);
    --max-width: 1100px;
    --radius: 14px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: linear-gradient(180deg, #071025 0%, #071827 100%);
    color: #e6eef8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.45;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 28px;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center
}

.logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg,var(--accent),var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(6,21,34,0.6);
    color: #042023;
    font-size: 20px;
}

.brand h1 {
    margin: 0;
    font-size: 18px
}

.nav a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 2px;
    padding: 8px;
    font-size: 14px;
    cursor: pointer;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: center;
    padding: 32px 0;
}

    .hero .eyebrow {
        color: var(--accent);
        font-weight: 600;
        font-size: 13px;
        margin-bottom: 10px
    }

    .hero h2 {
        font-size: 34px;
        margin: 0 0 14px
    }

    .hero p.lead {
        color: var(--muted);
        margin: 0 0 18px
    }

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #042023;
    font-weight: 700;
    background: white;
    box-shadow: 0 8px 20px rgba(2,6,23,0.45);
}

    .btn.secondary {
        background: transparent;
        color: var(--accent);
        border: 1px solid rgba(255,255,255,0.06);
        box-shadow: none;
    }

.note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px
}

/* Phone mockup */
.phone {
    width: 100%;
    max-width: 360px;
    margin: auto;
    background: linear-gradient(180deg,#041424 0%, #06232b 100%);
    border-radius: 26px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 40px rgba(2,8,23,0.6);
}

    .phone .screen {
        height: 620px;
        background: linear-gradient(180deg,#052834,#06323a);
        border-radius: 14px;
        overflow: hidden;
        padding: 18px;
        color: #e6eef8;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

.app-row {
    display: flex;
    gap: 8px;
    align-items: center
}

.chip {
    background: rgba(255,255,255,0.06);
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 13px
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    padding: 28px 0
}

.card {
    background: var(--card);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03)
}

    .card h3 {
        margin: 0 0 8px;
        font-size: 16px
    }

    .card p {
        margin: 0;
        color: var(--muted);
        font-size: 14px
    }

/* Screenshots */
.screenshots {
    display: flex;
    gap: 12px;
    overflow: auto;
    padding-bottom: 8px
}

.screenshot {
    min-width: 220px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.05));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--muted);
    border: 1px solid rgba(255,255,255,0.02);
    padding: 18px;
}

    .screenshot img {
        max-width: 300px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(2,6,23,0.6)
    }

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 14px;
    color: var(--muted);
}

    .billing-toggle span {
        cursor: pointer;
        transition: .2s;
    }

        .billing-toggle span.active {
            color: var(--accent);
            font-weight: 600;
        }

.switch {
    width: 46px;
    height: 24px;
    background: rgba(255,255,255,.1);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

    .switch::after {
        content: "";
        position: absolute;
        width: 18px;
        height: 18px;
        background: var(--accent);
        border-radius: 50%;
        top: 3px;
        left: 4px;
        transition: .25s ease;
    }

    .switch.monthly::after {
        left: 24px;
    }

.price {
    font-size: 36px;
    font-weight: 700;
    margin: 18px 0;
    color: var(--accent);
}

    .price span {
        font-size: 14px;
    }

.price-note {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 18px;
}

.save-badge {
    display: inline-block;
    background: linear-gradient(135deg,var(--accent),var(--accent-2));
    color: #042023;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.hidden {
    display: none
}

.save-text {
    font-size: 13px;
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 10px;
}



/* FAQ / Footer */
.faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 28px 0
}

    .faq h4 {
        margin-top: 0
    }

footer {
    padding: 28px 0;
    color: var(--muted);
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.02)
}

/* Responsive */
 @media (max-width:980px){
      .hero{grid-template-columns:1fr;gap:20px}
      .features{grid-template-columns:repeat(2,1fr)}
      .phone .screen{height:420px}
    }*/
 @media (max-width:600px){
      .features{grid-template-columns:1fr}
      .faq{grid-template-columns:1fr}
      .phone .screen{height:360px}
      header{padding:8px 0}
      .container{padding:18px}
      .brand h1{font-size:16px}
      .hero h2{font-size:26px}
    }

/* Desktop-only topbar note */
.desktop-note {
    background: linear-gradient(90deg, rgba(14,165,164,0.06), rgba(6,182,212,0.04));
    color: var(--accent);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 14px;
}

.hidden {
    display: none
}
/* small form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px
}

    .contact-form input, .contact-form textarea {
        background: rgba(255,255,255,0.02);
        border: 1px solid rgba(255,255,255,0.03);
        padding: 10px;
        border-radius: 8px;
        color: inherit;
    }

.muted-small {
    color: var(--muted);
    font-size: 13px
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--muted);
    border: 1px dashed rgba(255,255,255,0.03)
}

.site-footer {
    background: linear-gradient(135deg, #0f172a, #020617);
    padding: 28px 16px;
    font-size: 13px;
    color: #cbd5f5;
}

.footer-container {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
}

    .footer-sectors span {
        color: #94a3b8;
    }

    .footer-sectors a {
        color: #38bdf8;
        text-decoration: none;
        font-weight: 500;
        transition: opacity .2s ease;
    }

        .footer-sectors a:hover {
            opacity: .8;
        }

.footer-right {
    display: flex;
    gap: 16px;
}

    .footer-right a {
        color: #cbd5f5;
        text-decoration: none;
        font-size: 13px;
        transition: color .2s ease;
    }

        .footer-right a:hover {
            color: #fff;
        }

.nav a:hover,
.nav button:hover {
    opacity: 0.7;
    transform: translateY(-1px);
    transition: 0.2s;
}

.qr-wrapper {
    margin: 20px auto;
    padding: 10px;
    border: 1px dashed #667eea;
    border-radius: 12px;
    display: inline-block;
    background: #f9f9f9;
    text-align:center; 
}

.qr-code {
    width: 130px; 
    height: 130px;
}

.qr-text {
    font-size: 11px;
    color: #667eea;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 0;
}
