 /* ── nav ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 6%;
      height: 70px;
      background: rgba(0, 13, 26, .85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border)
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none
    }

    .logo-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-icon img {
      width: 100%;
      height: 100%;
      border-radius: 10px;
      object-fit: contain
    }

    .logo-text {
      font-size: 17px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: .04em
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 14px;
      transition: color .2s
    }

    .nav-links a:hover {
      color: var(--accent)
    }

    .nav-cta {
      padding: 9px 22px;
      border-radius: 50px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #000;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      transition: opacity .2s, box-shadow .2s
    }

    .nav-cta:hover {
      opacity: .9;
      box-shadow: 0 0 20px rgba(0, 210, 255, .45)
    }

    /* ── sections ── */
    section {
      position: relative;
      z-index: 1
    }

    /* ── hero ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 6% 80px;
      overflow: hidden
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none
    }

    .orb1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0, 210, 255, .12), transparent 70%);
      top: -100px;
      left: -100px
    }

    .orb2 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(123, 97, 255, .1), transparent 70%);
      bottom: -50px;
      right: -80px
    }

    .orb3 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(0, 210, 255, .08), transparent 70%);
      top: 40%;
      left: 55%
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 50px;
      border: 1px solid var(--border);
      background: rgba(0, 210, 255, .06);
      font-size: 12px;
      color: var(--accent);
      margin-bottom: 28px;
      letter-spacing: .08em
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulse 2s infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .5;
        transform: scale(.8)
      }
    }

    .hero h1 {
      font-size: clamp(36px, 5.5vw, 76px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -.02em;
      margin-bottom: 24px;
      color: var(--white)
    }

    .hero h1 span {
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .hero-sub {
      font-size: clamp(15px, 1.6vw, 19px);
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto 44px;
      line-height: 1.7
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 70px
    }

    .btn-primary {
      padding: 15px 36px;
      border-radius: 50px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #000;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      transition: box-shadow .2s, transform .2s;
      display: inline-flex;
      align-items: center;
      gap: 8px
    }

    .btn-primary:hover {
      box-shadow: 0 0 32px rgba(0, 210, 255, .5);
      transform: translateY(-2px)
    }

    .btn-ghost {
      padding: 15px 36px;
      border-radius: 50px;
      border: 1px solid var(--border);
      color: var(--text);
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: border-color .2s, background .2s
    }

    .btn-ghost:hover {
      border-color: var(--accent);
      background: rgba(0, 210, 255, .06)
    }

    .store-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 60px
    }

    .store-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 22px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, .04);
      color: var(--text);
      text-decoration: none;
      transition: border-color .2s, background .2s
    }

    .store-btn:hover {
      border-color: var(--accent);
      background: rgba(0, 210, 255, .07)
    }

    .store-btn-icon {
      font-size: 22px
    }

    .store-btn-text small {
      display: block;
      font-size: 10px;
      color: var(--muted);
      letter-spacing: .06em
    }

    .store-btn-text strong {
      display: block;
      font-size: 14px;
      font-weight: 700
    }

    .hero-phones {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: flex-end
    }

    .phone-wrap {
      position: relative
    }

    .phone-wrap:nth-child(2) {
      transform: translateY(-30px);
      z-index: 2
    }

    .phone-frame {
      width: 160px;
      border-radius: 28px;
      border: 2px solid rgba(0, 210, 255, .25);
      background: linear-gradient(180deg, #0a1f38 0%, #040f1f 100%);
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .7), 0 0 40px rgba(0, 210, 255, .1);
      position: relative
    }

    .phone-frame.big {
      width: 180px;
      border-color: rgba(0, 210, 255, .4);
      box-shadow: 0 40px 100px rgba(0, 0, 0, .8), 0 0 60px rgba(0, 210, 255, .18)
    }

    .phone-notch {
      width: 60px;
      height: 18px;
      background: #000;
      border-radius: 0 0 12px 12px;
      margin: 0 auto 12px
    }

    .phone-screen {
      padding: 0 12px 20px;
      min-height: 280px
    }

    .phone-player {
      background: rgba(0, 210, 255, .06);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 12px;
      margin-bottom: 10px
    }

    .pp-cover {
      width: 100%;
      height: 80px;
      border-radius: 10px;
      background: linear-gradient(135deg, #0a2a4a, #1a1040);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin-bottom: 8px
    }

    .pp-title {
      font-size: 10px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 2px
    }

    .pp-sub {
      font-size: 9px;
      color: var(--muted)
    }

    .pp-bar {
      height: 3px;
      background: rgba(255, 255, 255, .1);
      border-radius: 2px;
      margin: 8px 0;
      position: relative;
      overflow: hidden
    }

    .pp-bar::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 38%;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      border-radius: 2px
    }

    .pp-controls {
      display: flex;
      justify-content: space-around;
      align-items: center;
      font-size: 14px;
      color: var(--muted)
    }

    .pp-play {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: #000
    }

    .phone-list-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 7px 0;
      border-bottom: 1px solid rgba(0, 210, 255, .07)
    }

    .pli-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: linear-gradient(135deg, #0d2a48, #1a1040);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      flex-shrink: 0
    }

    .pli-info {
      flex: 1
    }

    .pli-title {
      font-size: 9px;
      font-weight: 600;
      color: var(--text)
    }

    .pli-sub {
      font-size: 8px;
      color: var(--muted)
    }

    .pli-lock {
      font-size: 9px;
      color: var(--accent)
    }

    .phone-stat-row {
      display: flex;
      gap: 6px;
      margin-bottom: 8px
    }

    .phone-stat {
      flex: 1;
      background: rgba(0, 210, 255, .05);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 6px;
      text-align: center
    }

    .pst-num {
      font-size: 13px;
      font-weight: 700;
      color: var(--accent)
    }

    .pst-label {
      font-size: 7px;
      color: var(--muted)
    }

    .phone-moon {
      text-align: center;
      padding: 20px 0 10px;
      font-size: 36px
    }

    .phone-sleep-title {
      font-size: 11px;
      font-weight: 700;
      color: var(--white);
      text-align: center;
      margin-bottom: 4px
    }

    .phone-sleep-sub {
      font-size: 9px;
      color: var(--muted);
      text-align: center;
      margin-bottom: 12px
    }

    .sleep-ring {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 3px solid var(--border);
      margin: 0 auto 10px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .sleep-ring::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: var(--accent);
      border-right-color: var(--accent2);
      animation: spin 3s linear infinite
    }

    @keyframes spin {
      to {
        transform: rotate(360deg)
      }
    }

    .sleep-ring-inner {
      font-size: 16px;
      font-weight: 800;
      color: var(--white)
    }

    .sleep-ring-label {
      font-size: 7px;
      color: var(--muted)
    }

    /* ── section titles ── */
    .sec-title {
      text-align: center;
      margin-bottom: 60px
    }

    .sec-eyebrow {
      display: inline-block;
      font-size: 11px;
      color: var(--accent);
      letter-spacing: .15em;
      text-transform: uppercase;
      margin-bottom: 14px;
      padding: 4px 14px;
      border: 1px solid var(--border);
      border-radius: 50px;
      background: rgba(0, 210, 255, .05)
    }

    .sec-title h2 {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      letter-spacing: -.02em
    }

    .sec-title h2 em {
      font-style: normal;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .sec-title p {
      font-size: 16px;
      color: var(--muted);
      margin-top: 14px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto
    }

    /* ── stats ── */
    .stats {
      padding: 60px 6%;
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%)
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden
    }

    .stat-card {
      background: var(--card);
      padding: 36px 24px;
      text-align: center;
      position: relative;
      overflow: hidden
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: .6
    }

    .stat-num {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      background: linear-gradient(135deg, var(--white), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1
    }

    .stat-unit {
      font-size: 18px;
      font-weight: 700;
      color: var(--accent)
    }

    .stat-label {
      font-size: 13px;
      color: var(--muted);
      margin-top: 8px
    }

    .stat-trend {
      display: inline-block;
      font-size: 11px;
      color: #4ade80;
      margin-top: 6px;
      background: rgba(74, 222, 128, .1);
      padding: 2px 8px;
      border-radius: 50px
    }

    /* ── features ── */
    .features {
      padding: 100px 6%
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px
    }

    .feat-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      transition: border-color .3s, transform .3s
    }

    .feat-card:hover {
      border-color: rgba(0, 210, 255, .35);
      transform: translateY(-4px)
    }

    .feat-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 80px;
      background: linear-gradient(0deg, rgba(0, 210, 255, .04), transparent);
      pointer-events: none
    }

    .feat-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(0, 210, 255, .15), rgba(123, 97, 255, .15));
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 20px
    }

    .feat-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px
    }

    .feat-card p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7
    }

    .feat-tag {
      display: inline-block;
      margin-top: 14px;
      font-size: 11px;
      color: var(--accent);
      background: rgba(0, 210, 255, .08);
      padding: 3px 10px;
      border-radius: 50px;
      border: 1px solid rgba(0, 210, 255, .2)
    }

    /* ── content categories ── */
    .categories {
      padding: 100px 6%;
      background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%)
    }

    .cat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px
    }

    .cat-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 24px 20px;
      text-align: center;
      cursor: pointer;
      transition: all .3s;
      position: relative;
      overflow: hidden
    }

    .cat-card:hover {
      border-color: rgba(0, 210, 255, .4);
      background: rgba(0, 210, 255, .05)
    }

    .cat-card:hover .cat-glow {
      opacity: 1
    }

    .cat-glow {
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, rgba(0, 210, 255, .2), transparent 70%);
      border-radius: 50%;
      opacity: 0;
      transition: opacity .3s;
      pointer-events: none
    }

    .cat-emoji {
      font-size: 36px;
      margin-bottom: 12px;
      display: block
    }

    .cat-card h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 6px
    }

    .cat-card p {
      font-size: 12px;
      color: var(--muted)
    }

    .cat-count {
      display: inline-block;
      margin-top: 10px;
      font-size: 11px;
      color: var(--accent);
      background: rgba(0, 210, 255, .08);
      padding: 3px 10px;
      border-radius: 50px
    }

    /* ── testimonials ── */
    .testimonials {
      padding: 100px 6%
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    .testi-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 28px 24px;
      position: relative
    }

    .testi-card::before {
      content: '❝';
      position: absolute;
      top: 16px;
      right: 20px;
      font-size: 36px;
      color: rgba(0, 210, 255, .15);
      line-height: 1
    }

    .stars {
      color: #f59e0b;
      font-size: 14px;
      margin-bottom: 14px;
      letter-spacing: 2px
    }

    .testi-card p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 18px
    }

    .testi-user {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .testi-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: #000;
      flex-shrink: 0
    }

    .testi-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--white)
    }

    .testi-role {
      font-size: 11px;
      color: var(--muted)
    }

    /* ── pricing ── */
    .pricing {
      padding: 100px 6%;
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%)
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 900px;
      margin: 0 auto
    }

    .price-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      transition: transform .3s
    }

    .price-card:hover {
      transform: translateY(-4px)
    }

    .price-card.featured {
      border-color: rgba(0, 210, 255, .5);
      background: linear-gradient(180deg, rgba(0, 210, 255, .07), var(--card))
    }

    .price-card.featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent2), var(--accent))
    }

    .price-badge {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      color: #000;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      padding: 3px 12px;
      border-radius: 50px;
      margin-bottom: 16px
    }

    .price-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 6px
    }

    .price-desc {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 20px
    }

    .price-amount {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 6px
    }

    .price-currency {
      font-size: 18px;
      font-weight: 700;
      color: var(--accent)
    }

    .price-num {
      font-size: 46px;
      font-weight: 800;
      color: var(--white);
      line-height: 1
    }

    .price-period {
      font-size: 13px;
      color: var(--muted)
    }

    .price-orig {
      font-size: 12px;
      color: var(--muted);
      text-decoration: line-through;
      margin-bottom: 24px
    }

    .price-divider {
      height: 1px;
      background: var(--border);
      margin: 20px 0
    }

    .price-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px
    }

    .price-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--muted)
    }

    .pf-check {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: rgba(0, 210, 255, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      color: var(--accent);
      flex-shrink: 0
    }

    .btn-price {
      display: block;
      text-align: center;
      padding: 13px 0;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: all .2s
    }

    .btn-price.main {
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #000
    }

    .btn-price.main:hover {
      box-shadow: 0 0 28px rgba(0, 210, 255, .4)
    }

    .btn-price.outline {
      border: 1px solid var(--border);
      color: var(--text)
    }

    .btn-price.outline:hover {
      border-color: var(--accent);
      background: rgba(0, 210, 255, .07)
    }

    /* ── download CTA ── */
    .download {
      padding: 120px 6%;
      text-align: center;
      position: relative;
      overflow: hidden
    }

    .dl-orb {
      position: absolute;
      width: 800px;
      height: 800px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 210, 255, .06), transparent 60%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none
    }

    .dl-card {
      background: var(--card);
      border: 1px solid rgba(0, 210, 255, .2);
      border-radius: 28px;
      padding: 72px 48px;
      max-width: 760px;
      margin: 0 auto;
      position: relative;
      overflow: hidden
    }

    .dl-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent)
    }

    .dl-card h2 {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 16px
    }

    .dl-card p {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 40px
    }

    .dl-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center
    }

    .dl-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 28px;
      border-radius: 14px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid var(--border);
      color: var(--text);
      text-decoration: none;
      transition: all .2s;
      min-width: 180px
    }

    .dl-btn:hover {
      border-color: var(--accent);
      background: rgba(0, 210, 255, .08);
      transform: translateY(-2px)
    }

    .dl-btn-icon {
      font-size: 26px;
      flex-shrink: 0
    }

    .dl-btn-text small {
      display: block;
      font-size: 10px;
      color: var(--muted);
      letter-spacing: .06em
    }

    .dl-btn-text strong {
      display: block;
      font-size: 15px;
      font-weight: 700
    }

    /* ── footer ── */
    footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 60px 6% 30px
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 50px
    }

    .footer-brand .logo {
      margin-bottom: 16px;
      display: inline-flex
    }

    .footer-brand p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 280px
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 18px
    }

    .social-link {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      text-decoration: none;
      color: var(--muted);
      transition: all .2s
    }

    .social-link:hover {
      border-color: var(--accent);
      color: var(--accent)
    }

    .footer-col h5 {
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 18px;
      letter-spacing: .05em
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .footer-col ul li a {
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      transition: color .2s
    }

    .footer-col ul li a:hover {
      color: var(--accent)
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: gap
    }

    .footer-bottom p {
      font-size: 12px;
      color: var(--muted)
    }

    .footer-icp {
      font-size: 12px;
      color: var(--muted)
    }

    .footer-icp a {
      color: var(--muted);
      text-decoration: none
    }

    .footer-icp a:hover {
      color: var(--accent)
    }

    @media(max-width:768px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .features-grid,
      .cat-grid,
      .price-grid,
      .testi-grid,
      .footer-top {
        grid-template-columns: 1fr 1fr
      }

      .hero-phones {
        gap: 10px
      }

      .phone-frame {
        width: 130px
      }

      .phone-frame.big {
        width: 150px
      }

      nav .nav-links {
        display: none
      }
    }

    @media(max-width:480px) {

      .features-grid,
      .cat-grid,
      .price-grid,
      .testi-grid,
      .footer-top {
        grid-template-columns: 1fr
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr
      }
    }