:root {
    --gold: #D8A232;
    --gold2: #F5CC52;
    --gold3: #C89225;
    --gold-grad: linear-gradient(135deg, #F5CC52 0%, #D8A232 45%, #C89225 100%);
    --gold-grad-h: linear-gradient(135deg, #FFE070 0%, #FFD040 45%, #E0A800 100%);
    --gold-text: linear-gradient(135deg, #FFE080 0%, #F5B800 50%, #D4900A 100%);
    --gold-glow: rgba(245, 184, 0, 0.22);
    --gold-dim: rgba(245, 184, 0, 0.10);
    --gold-mid: rgba(245, 184, 0, 0.28);
    --gold-border: rgba(245, 184, 0, 0.20);
    --bg: #0E0E0E;
    --bg2: #141414;
    --bg3: #1A1A1A;
    --card: #1E1E1E;
    --card2: #242424;
    --card3: #2A2A2A;
    --text: #F2F0E8;
    --text2: #C8C6BE;
    --muted: #7A7870;
    --r: 20px;
    --r-sm: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}


html[dir="rtl"] body{
direction:rtl;
text-align:right;
font-family: "Almarai", sans-serif;
}

html[dir="rtl"] .hero-ctas{
flex-direction:row-reverse;
}

html[dir="rtl"] .nav-links{
flex-direction:row-reverse;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Google Sans", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased
}

a {
    text-decoration: none
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--gold-mid);
    border-radius: 3px
}

.g {
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    height: 76px;
    background: rgba(14, 14, 14, 0.88);
    backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--gold-border);
    transition: background 0.35s
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-grad);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px var(--gold-glow)
}

.logo-icon svg {
    width: 22px;
    height: 22px
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2
}

.logo-p {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase
}

.logo-m {
    font-size: 0.58rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 1px
}

.nav-links {
    display: flex;
    gap: 34px;
    list-style: none
}

.nav-links a {
    color: var(--text2);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-grad);
    transition: width 0.3s;
    border-radius: 2px
}

.nav-links a:hover {
    color: var(--gold)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-btns {
    display: flex;
    gap: 10px;
    align-items: center
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s
}

.btn-nav-outline {
    border: 1.5px solid var(--gold-border);
    color: var(--text2);
    background: transparent
}

.btn-nav-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim)
}

.btn-nav-gold {
    background: var(--gold-grad);
    color: #111;
    border: none;
    box-shadow: 0 4px 20px var(--gold-glow)
}

.btn-nav-gold:hover {
    background: var(--gold-grad-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--gold-glow)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s
}

.mob-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(14, 14, 14, 0.97);
    backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--gold-border);
    padding: 20px 24px 28px;
    z-index: 899;
    flex-direction: column;
    gap: 4px
}

.mob-menu.open {
    display: flex
}

.mob-menu a {
    color: var(--text2);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s
}

.mob-menu a:hover {
    color: var(--gold)
}

.mob-menu .mob-btns {
    display: flex;
    gap: 10px;
    margin-top: 16px
}

/* HERO */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 110px 64px 80px;
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 70% 80% at 65% 40%, rgba(245, 184, 0, 0.08) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 10% 70%, rgba(245, 184, 0, 0.05) 0%, transparent 60%), linear-gradient(180deg, #0E0E0E 0%, #121212 100%)
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(245, 184, 0, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 184, 0, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 0%, transparent 70%)
}

.orb1 {
    position: absolute;
    top: -180px;
    right: -80px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 184, 0, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0
}

.orb2 {
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 184, 0, 0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.hero-text {
    flex: 1;
    min-width: 0
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(245, 184, 0, 0.10);
    border: 1px solid rgba(245, 184, 0, 0.25);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease both
}

.bdot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 2s ease infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7)
    }
}

.hero-h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 22px;
    animation: fadeUp 0.7s 0.1s ease both
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 400;
    color: var(--text2);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 44px;
    animation: fadeUp 0.7s 0.2s ease both
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeUp 0.7s 0.3s ease both
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 36px;
    border-radius: 14px;
    background: var(--gold-grad);
    color: #111;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 8px 32px var(--gold-glow)
}

.btn-primary:hover {
    background: var(--gold-grad-h);
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(245, 184, 0, 0.35)
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 36px;
    border-radius: 14px;
    background: var(--card);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.25s
}

.btn-secondary:hover {
    border-color: var(--gold-mid);
    background: var(--card2);
    color: var(--gold)
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeUp 0.7s 0.4s ease both
}

.hs {
    display: flex;
    flex-direction: column
}

.hs-n {
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1
}

.hs-l {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--muted);
    margin-top: 4px
}

.hs-div {
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 4px
}

/* PHONE MOCKUP */
.hero-phones {
    flex-shrink: 0;
    position: relative;
    width: 430px;
    height: 580px;
    animation: fadeUp 0.9s 0.2s ease both
}

.hp-back {
    position: absolute;
    right: 0;
    bottom: 40px;
    width: 220px;
    background: var(--card);
    border-radius: 32px;
    border: 1.5px solid rgba(245, 184, 0, 0.15);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: rotate(5deg);
    opacity: 0.6;
    z-index: 1
}

.hp-front {
    position: absolute;
    left: 0;
    top: 0;
    width: 240px;
    z-index: 2;
    background: var(--card);
    border-radius: 34px;
    border: 2px solid rgba(245, 184, 0, 0.25);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 60px rgba(245, 184, 0, 0.08)
}

.pbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text)
}

.psig {
    display: flex;
    gap: 4px;
    align-items: center
}

.phead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 16px 12px
}

.plogo {
    display: flex;
    align-items: center;
    gap: 7px
}

.pli {
    width: 26px;
    height: 26px;
    background: var(--gold-grad);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center
}

.pli svg {
    width: 15px;
    height: 15px
}

.pln {
    font-size: 0.6rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase
}

.plsub {
    font-size: 0.4rem;
    color: var(--muted);
    letter-spacing: 0.18em;
    text-transform: uppercase
}

.ploc {
    width: 26px;
    height: 26px;
    background: var(--gold-grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.ploc svg {
    width: 13px;
    height: 13px;
    color: #111
}

.psearch {
    margin: 0 14px 12px;
    background: var(--card3);
    border-radius: 11px;
    padding: 9px 13px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.62rem;
    color: var(--muted)
}

.psearch svg {
    width: 13px;
    height: 13px;
    color: var(--muted);
    flex-shrink: 0
}

.pcats2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 14px 10px
}

.pcats3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding: 0 14px 12px
}

.pcat {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card3)
}

.pcat.tall {
    height: 72px
}

.pcat.short {
    height: 58px
}

.pcatl {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(245, 184, 0, 0.93);
    padding: 4px 8px;
    font-size: 0.5rem;
    font-weight: 800;
    color: #111;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase
}

.psect {
    padding: 0 14px 8px;
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.04em
}

.plisting {
    margin: 0 14px 10px;
    background: var(--card3);
    border-radius: 11px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px
}

.pplate {
    width: 50px;
    height: 34px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ppn {
    font-size: 0.68rem;
    font-weight: 900;
    color: #111;
    line-height: 1;
    letter-spacing: -0.01em
}

.ppc {
    font-size: 0.37rem;
    font-weight: 700;
    color: #444;
    letter-spacing: 0.1em
}

.pli2 {
    flex: 1;
    min-width: 0
}

.pprice {
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1px
}

.pname {
    font-size: 0.57rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.ploc2 {
    font-size: 0.5rem;
    color: var(--muted)
}

/* SECTIONS */
.sec {
    position: relative
}

.sec-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 64px
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px
}

.sec-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block
}

.sec-h2 {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text)
}

.sec-sub {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--text2);
    line-height: 1.75;
    max-width: 540px
}

.stripe {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(245, 184, 0, 0.18), transparent)
}

/* ABOUT */
#about {
    background: var(--bg2)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.about-body {
    font-size: 1.02rem;
    color: var(--text2);
    line-height: 1.82;
    margin-bottom: 18px
}

.stat-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gold-border);
    border: 1px solid var(--gold-border);
    border-radius: var(--r);
    overflow: hidden;
    margin-top: 40px
}

.stat-c {
    background: var(--bg2);
    padding: 26px 16px;
    text-align: center
}

.stat-n {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.stat-l {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.04em
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px
}

.chip {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 9px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text2);
    transition: all 0.25s;
    cursor: default
}

.chip:hover {
    border-color: var(--gold-mid);
    color: var(--gold);
    background: var(--gold-dim)
}

.chip svg {
    width: 15px;
    height: 15px;
    color: var(--gold);
    flex-shrink: 0
}

.acards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.acard {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--r);
    padding: 30px 26px;
    transition: all 0.3s
}

.acard:nth-child(even) {
    margin-top: 20px
}

.acard:hover {
    border-color: var(--gold-mid);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35)
}

.ac-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-dim);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 16px
}

.acard h4 {
    font-size: 0.98rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text)
}

.acard p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65
}

/* FEATURES */
#features {
    background: var(--bg)
}

.feat-head {
    text-align: center;
    margin-bottom: 72px
}

.feat-head .sec-sub {
    margin: 0 auto
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.fcard {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--r);
    padding: 38px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;
    cursor: default
}

.fcard::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s
}

.fcard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-grad);
    opacity: 0;
    transition: opacity 0.35s
}

.fcard:hover {
    border-color: rgba(245, 184, 0, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4)
}

.fcard:hover::before,
.fcard:hover::after {
    opacity: 1
}

.fghost {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.07;
    line-height: 1;
    letter-spacing: -0.04em;
    transition: opacity 0.35s
}

.fcard:hover .fghost {
    opacity: 0.12
}

.ficon {
    width: 56px;
    height: 56px;
    background: var(--gold-dim);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 24px;
    position: relative;
    z-index: 1
}

.fcard h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    position: relative;
    z-index: 1
}

.fcard p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.72;
    position: relative;
    z-index: 1
}

/* HOW */
#how {
    background: var(--bg2)
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.how-steps {
    display: flex;
    flex-direction: column
}

.hstep {
    display: flex;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.hstep:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.hsl {
    display: flex;
    flex-direction: column;
    align-items: center
}

.hsc {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid var(--gold-mid);
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--gold);
    transition: all 0.3s
}

.hstep:hover .hsc {
    background: var(--gold-grad);
    border-color: transparent;
    color: #111;
    box-shadow: 0 6px 24px var(--gold-glow)
}

.hsc-con {
    width: 2px;
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    margin: 6px 0
}

.hsb {
    padding-top: 10px;
    min-width: 0
}

.hsb h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 7px
}

.hsb p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7
}

.how-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

.hw-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 184, 0, 0.10), transparent 65%);
    pointer-events: none
}

.hw-ph {
    width: 240px;
    background: var(--card);
    border-radius: 34px;
    border: 2px solid rgba(245, 184, 0, 0.2);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65);
    position: relative;
    z-index: 2
}

.hw-top {
    padding: 14px 16px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.hw-logo {
    display: flex;
    align-items: center;
    gap: 7px
}

.hw-li {
    width: 24px;
    height: 24px;
    background: var(--gold-grad);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center
}

.hw-li svg {
    width: 14px;
    height: 14px;
    color: #111
}

.hw-ln {
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase
}

.hw-time {
    font-size: 0.6rem;
    color: var(--muted)
}

.hw-in {
    padding: 18px 16px
}

.hw-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0.04em
}

.hw-sc {
    background: var(--card3);
    border-radius: 11px;
    padding: 13px 14px;
    display: flex;
    gap: 11px;
    align-items: center;
    margin-bottom: 9px
}

.hw-sn {
    width: 30px;
    height: 30px;
    background: var(--gold-grad);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 900;
    color: #111;
    flex-shrink: 0
}

.hw-st {
    font-size: 0.64rem;
    font-weight: 700;
    color: var(--text)
}

.hw-ss {
    font-size: 0.55rem;
    color: var(--muted);
    margin-top: 2px
}

.hw-btn {
    margin-top: 14px;
    background: var(--gold-grad);
    border-radius: 11px;
    padding: 12px;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 900;
    color: #111;
    letter-spacing: 0.07em;
    text-transform: uppercase
}

/* CATEGORIES */
#categories {
    background: var(--bg)
}

.cat-head {
    text-align: center;
    margin-bottom: 64px
}

.cat-head .sec-sub {
    margin: 0 auto
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.ccard {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column
}

.ccard:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 184, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5)
}

.cbg {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--card2), var(--card3));
    transition: transform 0.4s
}

.ccard:hover .cbg {
    transform: scale(1.08)
}

.clbl {
    background: rgba(245, 184, 0, 0.93);
    padding: 11px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.clbl span {
    font-size: 0.82rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.06em
}

.carr {
    width: 22px;
    height: 22px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.carr svg {
    width: 10px;
    height: 10px;
    color: #111
}

/* TESTIMONIALS */
#testimonials {
    background: var(--bg2)
}

.test-head {
    text-align: center;
    margin-bottom: 72px
}

.test-head .sec-sub {
    margin: 0 auto
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.tcard {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--r);
    padding: 36px 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden
}

.tcard::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-grad);
    opacity: 0;
    transition: opacity 0.3s
}

.tcard:hover {
    border-color: rgba(245, 184, 0, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35)
}

.tcard:hover::after {
    opacity: 1
}

.ttop {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px
}

.tav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 2px solid var(--gold-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0
}

.tname {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text)
}

.tloc {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px
}

.tloc svg {
    width: 11px;
    height: 11px
}

.tstars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px
}

.tstars span {
    font-size: 0.9rem;
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.tbody {
    font-size: 0.95rem;
    color: var(--text2);
    line-height: 1.78;
    font-style: italic;
    position: relative;
    padding-left: 20px
}

.tbody::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 2.2rem;
    line-height: 1;
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
    font-weight: 900
}

/* DOWNLOAD */
#download {
    background: var(--bg);
    overflow: hidden;
    position: relative
}

#download::before {
    content: '';
    position: absolute;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(245, 184, 0, 0.07) 0%, transparent 55%);
    pointer-events: none
}

.dl-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.dl-sub {
    font-size: 1.02rem;
    color: var(--text2);
    line-height: 1.78;
    margin-bottom: 44px
}

.dl-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.dlb {
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--card);
    border: 1.5px solid var(--gold-border);
    border-radius: 16px;
    padding: 14px 24px;
    cursor: pointer;
    transition: all 0.25s;
    min-width: 178px
}

.dlb:hover {
    border-color: var(--gold);
    background: var(--gold-dim);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3)
}

.dlb svg {
    color: var(--gold);
    flex-shrink: 0
}

.dlbt {
    display: flex;
    flex-direction: column
}

.dlbs {
    font-size: 0.62rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase
}

.dlbb {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--text);
    margin-top: 1px
}

.gcc-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px
}

.gcct {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text2)
}

.dl-phone {
    display: flex;
    justify-content: center;
    position: relative
}

.dlph {
    width: 272px;
    background: var(--card);
    border-radius: 38px;
    border: 2.5px solid rgba(245, 184, 0, 0.28);
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 80px rgba(245, 184, 0, 0.06);
    position: relative;
    z-index: 2
}

.dlnotch {
    width: 90px;
    height: 7px;
    background: rgba(245, 184, 0, 0.25);
    border-radius: 0 0 6px 6px;
    margin: 14px auto 0
}

.dlphi {
    padding: 18px
}

.dlfeat {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px
}

.dllb {
    background: var(--card3);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 10px
}

.dllt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px
}

.dlplate {
    background: #fff;
    border-radius: 7px;
    padding: 6px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 76px
}

.dlpn {
    font-size: 1.05rem;
    font-weight: 900;
    color: #111;
    line-height: 1;
    letter-spacing: -0.02em
}

.dlpc {
    font-size: 0.42rem;
    font-weight: 700;
    color: #444;
    letter-spacing: 0.1em;
    margin-top: 1px
}

.dlprice {
    font-size: 0.82rem;
    font-weight: 900;
    color: var(--gold)
}

.dltitle {
    font-size: 0.67rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px
}

.dlloc {
    font-size: 0.56rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 3px
}

.dlloc svg {
    width: 9px;
    height: 9px
}

.dlrow {
    display: flex;
    gap: 9px;
    margin-bottom: 10px
}

.dlsm {
    flex: 1;
    background: var(--card3);
    border-radius: 11px;
    padding: 11px
}

.dlsm .dlprice {
    font-size: 0.65rem
}

.dlsm .dltitle {
    font-size: 0.58rem
}

.dlbtn {
    background: var(--gold-grad);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    font-size: 0.66rem;
    font-weight: 900;
    color: #111;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px var(--gold-glow)
}

/* FOOTER */
footer {
    background: var(--bg2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 64px 40px
}

.foot-top {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    justify-content: center;
}

.foot-brand{
    max-width: 400px;
    text-align: center;
}

.foot-brand p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.78;
    margin: 16px 0 24px
}

.socials {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.sb {
    width: 40px;
    height: 40px;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: all 0.25s
}

.sb:hover {
    background: var(--gold-dim);
    border-color: var(--gold-mid);
    color: var(--gold)
}

.foot-col h4 {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px
}

.foot-col ul {
    list-style: none
}

.foot-col li {
    margin-bottom: 11px
}

.foot-col a {
    font-size: 0.9rem;
    color: var(--muted);
    transition: color 0.2s
}

.foot-col a:hover {
    color: var(--text)
}

.foot-bot {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.foot-copy {
    font-size: 0.85rem;
    color: var(--muted)
}

.fflags {
    display: flex;
    gap: 8px
}

.ff {
    font-size: 1.3rem;
    opacity: 0.45;
    transition: opacity 0.2s;
    cursor: default
}

.ff:hover {
    opacity: 1
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 0.75s ease, transform 0.75s ease
}

.reveal.vis {
    opacity: 1;
    transform: translateY(0)
}

.reveal-l {
    opacity: 0;
    transform: translateX(-38px);
    transition: opacity 0.75s ease, transform 0.75s ease
}

.reveal-l.vis {
    opacity: 1;
    transform: translateX(0)
}

.reveal-r {
    opacity: 0;
    transform: translateX(38px);
    transition: opacity 0.75s ease, transform 0.75s ease
}

.reveal-r.vis {
    opacity: 1;
    transform: translateX(0)
}

.foot-top .nav-logo{
    justify-content: center;
}

.nav-logo .logo-img{
    height: 55px;
}

.hero-phones .img-screen{
    max-width: 100%;
}

.how-phone .mobile-screen{
    max-width: 420px;
}

.dl-phone .mobile-screen{
    max-width: 420px;
}

.nav-logo .footer-logo{
    height: 55px;
}

.foot-bot .foot-links{
    display: flex;
    gap: 12px;
}

.foot-bot .foot-links li{
    list-style: none;
}

.foot-bot .foot-links a{
    color: var(--muted);
    font-size: 14px;
}

.foot-bot .foot-links a:hover{
    color: var(--text);
}
/* ─────────────────────────────────
   RESPONSIVE
───────────────────────────────── */
/* Large tablet */
@media(max-width:1100px) {
    nav {
        padding: 0 32px
    }

    .sec-in {
        padding: 90px 40px
    }

    .dl-in {
        padding: 90px 40px
    }

    footer {
        padding: 72px 40px 36px
    }

    .hero-inner {
        gap: 40px
    }

    .hero-phones {
        width: 280px;
        height: 500px
    }

    .hp-front {
        width: 200px
    }

    .hp-back {
        width: 190px
    }

    .feat-grid {
        grid-template-columns: 1fr 1fr
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 56px
    }

    .how-phone {
        justify-content: flex-start
    }

    .dl-in {
        grid-template-columns: 1fr;
        gap: 60px
    }

    .dl-phone {
        justify-content: flex-start
    }

    .foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .stat-bar {
        grid-template-columns: repeat(4, 1fr)
    }
}

/* Tablet / mobile nav */
@media(max-width:860px) {

    .nav-links,
    .nav-btns {
        display: none
    }

    .hamburger {
        display: flex
    }

    nav {
        padding: 0 24px
    }

    #hero {
        padding: 100px 24px 72px
    }

    .hero-inner {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start
    }

    .hero-phones {
        width: 100%;
        max-width: 320px;
        height: 450px;
        align-self: center
    }

    .hp-front {
        width: 210px
    }

    .hp-back {
        width: 196px;
        right: -16px;
        bottom: 28px
    }

    .hero-sub {
        max-width: 100%
    }

    .hero-stats {
        gap: 24px
    }

    .hs-n {
        font-size: 1.6rem
    }

    .sec-in {
        padding: 80px 24px
    }

    .dl-in {
        padding: 80px 24px;
        grid-template-columns: 1fr
    }

    footer {
        padding: 64px 24px 36px
    }

    .foot-top {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .feat-grid {
        grid-template-columns: 1fr 1fr
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .test-grid {
        grid-template-columns: 1fr
    }

    .acards {
        grid-template-columns: 1fr
    }

    .acard:nth-child(even) {
        margin-top: 0
    }

    .stat-bar {
        grid-template-columns: repeat(2, 1fr)
    }

    .dl-badges {
        flex-direction: column;
        max-width: 280px
    }

    .dl-phone {
        justify-content: center
    }

    .how-phone {
        justify-content: center
    }

    .foot-bot {
        flex-direction: column;
        align-items: center;
        text-align: center
    }
}

/* Small mobile */
@media(max-width:480px) {
    .dl-phone .mobile-screen,
    .how-phone .mobile-screen {
        max-width: 100%;
    }
    .hero-h1 {
        font-size: 2.2rem
    }

    .hero-phones {
        /* display: none */
    }

    .hero-sub {
        font-size: 0.98rem
    }

    .hero-ctas {
        flex-direction: column
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center
    }

    .hero-stats {
        gap: 18px
    }

    .hs-n {
        font-size: 1.4rem
    }

    .hs-l {
        font-size: 0.78rem
    }

    .sec-h2 {
        font-size: 1.85rem
    }

    .feat-grid {
        grid-template-columns: 1fr
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-bar {
        grid-template-columns: repeat(2, 1fr)
    }

    .gcc-wrap {
        gap: 6px
    }

    .gcct {
        font-size: 0.75rem;
        padding: 5px 11px
    }

    .fcard {
        padding: 28px 22px
    }

    .tcard {
        padding: 28px 22px
    }

    .dlph {
        width: 240px
    }
}