/* ==========================================
   RESET
   ========================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ==========================================
   TOKENS
   ========================================== */

:root {
    --bg1: #ffffff;
    --bg2: #fafafa;
    --bg3: #f5f5f5;
    --surf: #ffffff;
    --surf2: #ffffff;
    --border: rgba(0, 0, 0, .08);
    --border2: rgba(0, 0, 0, .15);
    --text: #1a1a1a;
    --muted: #555555;
    --dim: #aaaaaa;
    --accent: #FFD600;
    --accent-h: #F5C800;
    --blue: #1a1a1a;
    --green: #2e7d32;
    --red: #d32f2f;
    --wa: #25d366;
    --vb: #7360f2;
    --tg: #2aabee;
}

/* ==========================================
   LAYOUT
   ========================================== */

.s {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 20px 48px;
}

#s3 .s,
.s.s--auto {
    min-height: auto;
}

.wrap {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

/* ==========================================
   HERO (Screen 1)
   ========================================== */

#s1 {
    background: var(--bg1);
}

.loc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: #1a1a1a;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 99px;
    margin-bottom: 22px;
}

.loc-badge svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

.hero-h1 {
    font-size: clamp(1.6rem, 5.5vw, 2.3rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: #1a1a1a;
    margin-bottom: 22px;
}

.hero-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 32px;
}

.hero-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .975rem;
    color: var(--muted);
    line-height: 1.45;
}

.hero-row::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 8px;
}

.hero-row b {
    color: #1a1a1a;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 15px 20px;
    background: var(--accent);
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .01em;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, transform .1s;
    -webkit-tap-highlight-color: transparent;
}

.btn-main:hover {
    background: var(--accent-h);
}

.btn-main:active {
    transform: scale(.98);
}

.btn-main svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}


/* ==========================================
   MESSENGER ROW
   ========================================== */

.mess-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.btn-m {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 8px;
    border-radius: 0;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .15s, transform .1s;
    -webkit-tap-highlight-color: transparent;
}

.btn-m:active {
    transform: scale(.97);
    opacity: .88;
}

.btn-m svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
}

.mess-row--4 {
    grid-template-columns: 1fr 1fr 1fr;
}

.bcall {
    grid-column: 1 / -1;
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    transition: background .15s, color .15s;
}

.bcall:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.bwa { background: var(--wa); color: #000; }
.bvb { background: var(--vb); color: #fff; }
.btg { background: var(--tg); color: #fff; }

/* ==========================================
   DETAILS (Screen 2)
   ========================================== */

#s2 {
    background: #1e1e1e;
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    justify-content: flex-start;
}

.s-tag {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.s-title {
    font-size: clamp(1.25rem, 4vw, 1.6rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -.02em;
    margin-bottom: 28px;
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 0;
    overflow: hidden;
}

.card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .03);
}

.card-ico {
    width: 30px;
    height: 30px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.ic-b { background: rgba(255, 214, 0, .15); }
.ic-a { background: rgba(255, 214, 0, .15); }
.ic-g { background: rgba(255, 214, 0, .15); }

.card-head h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -.01em;
}

.card-body {
    padding: 2px 0;
}

.row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.row:last-child {
    border-bottom: none;
}

.row-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 9px;
}

.db { background: var(--accent); }
.da { background: var(--accent); }
.dg { background: var(--accent); }

.row-text {
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.5;
}

.row-text b {
    color: #ffffff;
}

.mid-cta {
    margin-top: 28px;
}

#s2 .btn-main {
    background: var(--accent);
    color: #1a1a1a;
}

/* ==========================================
   SITE HEADER
   ========================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 56px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    height: 28px;
    width: auto;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: transparent;
    border: 1.5px solid rgba(0, 0, 0, .15);
    color: #1a1a1a;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .15s, border-color .15s;
    -webkit-tap-highlight-color: transparent;
}

.lang-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.lang-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ==========================================
   DESKTOP TWEAKS
   ========================================== */

@media (min-width: 600px) {
    .site-header {
        padding: 0 40px;
    }

    .s {
        padding: 72px 32px;
    }

    .mess-row {
        grid-template-columns: repeat(3, auto);
        justify-content: center;
    }

    .btn-m {
        padding: 12px 22px;
        font-size: .9rem;
    }
}
