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

    :root {
      --gold: #d4a017;
      --gold-light: #e8b820;
      --gold-bright: #f5c518;
      --bg-dark: #0a0a0a;
      --bg-card: #111111;
      --bg-section: #111111;
      --text-white: #ffffff;
      --text-gray: #aaaaaa;
      --text-muted: #666666;
      --border: #222222;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Open Sans', sans-serif;
      background: var(--bg-dark);
      color: var(--text-white);
      overflow-x: hidden;
    }

    /* ──────────────────── NAVBAR ──────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: #0d0d0d;
      border-bottom: 1px solid #1a1a1a;
      height: 60px;
      display: flex;
      align-items: center;
      padding: 0 40px;
    }

    .nav-inner {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

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

    .logo-icon {
      width: 28px;
      height: 28px;
      background: var(--gold);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-icon svg { width: 16px; height: 16px; }

    .logo-text {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: var(--text-white);
      letter-spacing: 0.5px;
    }

    .logo-text span { color: var(--gold); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: #cccccc;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: color 0.2s;
    }

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

    .btn-nav {
      background: var(--gold);
      color: #000 !important;
      padding: 8px 18px;
      border-radius: 4px;
      font-weight: 700 !important;
      font-size: 12px !important;
      letter-spacing: 0.5px;
      transition: background 0.2s !important;
    }

    .btn-nav:hover { background: var(--gold-bright) !important; color: #000 !important; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 60px;
      left: 0; right: 0;
      background: #0d0d0d;
      border-bottom: 1px solid #222;
      z-index: 999;
      flex-direction: column;
      padding: 20px 24px;
      gap: 0;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: #ccc;
      text-decoration: none;
      padding: 14px 0;
      border-bottom: 1px solid #1a1a1a;
      transition: color 0.2s;
    }

    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu .btn-mobile {
      background: var(--gold);
      color: #000 !important;
      padding: 12px 0;
      border-radius: 4px;
      text-align: center;
      margin-top: 10px;
      border-bottom: none !important;
    }

    /* ──────────────────── HERO ──────────────────── */
    .hero {
      min-height: 100vh;
      background: var(--bg-dark);
      display: flex;
      align-items: center;
      padding-top: 60px;
    }

    .hero-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 80px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
      width: 100%;
    }

    .hero-left { flex: 1; max-width: 560px; }

    .hero-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2.5px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .hero-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(36px, 5vw, 58px);
      font-weight: 800;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 4px;
    }

    .hero-title .gold { color: var(--gold); }

    .hero-desc {
      font-size: 13px;
      color: var(--text-gray);
      line-height: 1.7;
      margin-top: 16px;
      margin-bottom: 30px;
      max-width: 420px;
    }

    .hero-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .btn-primary {
      background: var(--gold);
      color: #000;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 700;
      padding: 12px 24px;
      border-radius: 4px;
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: background 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover { background: var(--gold-bright); }

    .btn-outline {
      background: transparent;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 4px;
      text-decoration: none;
      letter-spacing: 0.5px;
      border: 1px solid #444;
      transition: border-color 0.2s, color 0.2s;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
    }

    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

    .hero-stats {
      display: flex;
      gap: 36px;
    }

    .stat-item {}

    .stat-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: #fff;
    }

    .stat-label {
      font-size: 10px;
      color: var(--text-muted);
      letter-spacing: 0.5px;
      margin-top: 2px;
    }

    .hero-right {
      flex: 0 0 auto;
      width: 380px;
      height: 380px;
      background: #0f1520;
      border-radius: 8px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-right::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 70%, rgba(0,100,255,0.1) 0%, transparent 60%),
                  radial-gradient(ellipse at 70% 30%, rgba(0,200,100,0.05) 0%, transparent 50%);
    }

    .phone-ring {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      border: 2px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      animation: spinRing 8s linear infinite;
    }

    @keyframes spinRing {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .phone-ring::before {
      content: '';
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 1px solid rgba(212,160,23,0.3);
    }

    .phone-icon {
      animation: counterSpin 8s linear infinite;
    }

    @keyframes counterSpin {
      from { transform: rotate(0deg); }
      to { transform: rotate(-360deg); }
    }

    /* ──────────────────── DISCLAIMER BANNER ──────────────────── */
    .disclaimer {
      background: #111;
      border-top: 1px solid #1e1e1e;
      border-bottom: 1px solid #1e1e1e;
      padding: 10px 40px;
      text-align: center;
    }

    .disclaimer p {
      font-size: 10px;
      color: #555;
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .disclaimer strong { color: #777; }

    /* ──────────────────── SECTION COMMON ──────────────────── */
    .section { padding: 80px 40px; }

    .section-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .section-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 10px;
    }

    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 800;
      text-align: center;
      color: #fff;
      margin-bottom: 10px;
    }

    .section-title .gold { color: var(--gold); }

    .section-desc {
      font-size: 13px;
      color: var(--text-gray);
      text-align: center;
      max-width: 540px;
      margin: 0 auto 50px;
      line-height: 1.7;
    }

    /* ──────────────────── PHONES GRID ──────────────────── */
    .phones-section { background: var(--bg-dark); }

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

    .phone-card {
      background: var(--bg-card);
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid #1a1a1a;
      transition: border-color 0.2s, transform 0.2s;
    }

    .phone-card:hover {
      border-color: var(--gold);
      transform: translateY(-2px);
    }

    .phone-thumb {
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Montserrat', sans-serif;
      font-size: 52px;
      font-weight: 900;
      color: rgba(255,255,255,0.15);
      position: relative;
    }

    .phone-thumb-a,.phone-thumb-b,.phone-thumb-j {background-image: url(/images/iphone-15-pro-max.jpg); background-position: center center; background-size: contain; }
    .phone-thumb-c,.phone-thumb-d,.phone-thumb-e,.phone-thumb-k { background-image: url(/images/Galaxy-S24-Ultra.webp); background-position: center center; background-size: contain; }
    .phone-thumb-f,.phone-thumb-g,.phone-thumb-l { background-image: url(/images/Pixel-8-Pro.jpg); background-position: center center; background-size: contain; }
    .phone-thumb-h { background-image: url(/images/OnePlus12.jpg); background-position: center center; background-size: contain; }
    .phone-thumb-i { background-image: url(/images/Motorola-Edge-50.webp); background-position: center center; background-size: contain; }

    .phone-brand {
      font-family: 'Montserrat', sans-serif;
      font-size: 9px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .phone-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      margin: 4px 0 6px;
    }

    .phone-price-row {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 12px;
    }

    .price-main {
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 800;
      color: #fff;
    }

    .price-monthly {
      font-size: 10px;
      color: var(--text-muted);
    }

    .phone-info {
      padding: 12px 14px 14px;
    }

    .btn-view {
      display: block;
      width: 100%;
      background: transparent;
      border: 1px solid #333;
      border-radius: 4px !important;
      color: #ccc;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      padding: 8px;
      border-radius: 4px;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
      letter-spacing: 0.5px;
    }

    .btn-view:hover { border-color: var(--gold); color: var(--gold); }

    /* ──────────────────── WHY CHOOSE US ──────────────────── */
    .why-section { background: #0d0d0d; }

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

    .feature-card {
      background: #111;
      border: 1px solid #1e1e1e;
      border-radius: 6px;
      padding: 28px 24px;
      transition: border-color 0.2s;
    }

    .feature-card:hover { border-color: var(--gold); }

    .feature-icon {
      width: 42px;
      height: 42px;
      background: rgba(212,160,23,0.12);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 20px;
    }

    .feature-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .feature-desc {
      font-size: 12px;
      color: var(--text-gray);
      line-height: 1.7;
    }

    /* ──────────────────── FOUNDER ──────────────────── */
    .founder-section {
      background: #0a0a0a;
      padding: 0;
    }

    .founder-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      min-height: 420px;
    }

    .founder-img {
      flex: 0 0 420px;
      background: #1a1a1a;
      position: relative;
      overflow: hidden;
    }

    .founder-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(20%);
    }

    .founder-img-placeholder {
      width: 100%;
      height: 100%;
      background-image: url(/images/owner-portrait.jpg);
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .founder-content {
      flex: 1;
      padding: 60px 70px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .founder-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .founder-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .founder-title .gold { color: var(--gold); }

    .founder-text {
      font-size: 13px;
      color: var(--text-gray);
      line-height: 1.8;
      margin-bottom: 28px;
      max-width: 500px;
    }

    .founder-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
    }

    .founder-role {
      font-size: 11px;
      color: var(--gold);
      margin-top: 3px;
      letter-spacing: 0.5px;
    }

    /* ──────────────────── CTA ──────────────────── */
    .cta-section {
      background: #0d0d0d;
      text-align: center;
      padding: 100px 40px;
    }

    .cta-section .section-title { margin-bottom: 16px; }

    .cta-section .section-desc { margin-bottom: 36px; }

    .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .cta-disclaimer {
      font-size: 10px;
      color: #444;
      max-width: 500px;
      margin: 0 auto;
    }

    /* ──────────────────── FAQ ──────────────────── */
    .faq-section { background: #0a0a0a; }

    .faq-list {
      max-width: 780px;
      margin: 0 auto;
    }

    .faq-item {
      border: 1px solid #1e1e1e;
      border-radius: 4px;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: #111;
      border: none;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 600;
      padding: 18px 20px;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.2s;
    }

    .faq-question:hover { background: #161616; }

    .faq-arrow {
      width: 18px;
      height: 18px;
      border: 1px solid #444;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s, border-color 0.2s;
    }

    .faq-item.open .faq-arrow {
      transform: rotate(45deg);
      border-color: var(--gold);
    }

    .faq-arrow svg { width: 8px; height: 8px; }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .faq-item.open .faq-answer { max-height: 300px; }

    .faq-answer-inner {
      padding: 16px 20px 20px;
      background: #0e0e0e;
      font-size: 13px;
      color: var(--text-gray);
      line-height: 1.7;
    }

    /* ──────────────────── CONTACT STRIP ──────────────────── */
    .contact-strip {
      background: #111;
      border-top: 1px solid #1e1e1e;
      border-bottom: 1px solid #1e1e1e;
      padding: 48px 40px;
    }

    .contact-strip-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .contact-item { text-align: center; }

    .contact-icon {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .contact-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .contact-value {
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 3px;
    }

    .contact-sub {
      font-size: 11px;
      color: var(--text-muted);
    }

    /* ──────────────────── FOOTER ──────────────────── */
    footer {
      background: #0a0a0a;
      padding: 60px 40px 30px;
      border-top: 1px solid #1a1a1a;
    }

    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

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

    .footer-brand .logo { margin-bottom: 14px; }

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

    .footer-col h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .footer-col ul { list-style: none; }

    .footer-col ul li { margin-bottom: 10px; }

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

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

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

    .footer-bottom p {
      font-size: 11px;
      color: #444;
    }

    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }

    .footer-bottom-links a {
      font-size: 11px;
      color: #444;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-bottom-links a:hover { color: var(--gold); }

    /* ──────────────────── RESPONSIVE ──────────────────── */
    @media (max-width: 1024px) {
      .phones-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    @media (max-width: 900px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }

      .hero-inner {
        flex-direction: column;
        padding: 60px 24px;
        text-align: center;
      }

      .hero-left { max-width: 100%; }
      .hero-buttons { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-right { width: 280px; height: 280px; }

      .section { padding: 60px 24px; }

      .phones-grid { grid-template-columns: repeat(2, 1fr); }

      .features-grid { grid-template-columns: repeat(2, 1fr); }

      .founder-inner { flex-direction: column; }
      .founder-img { flex: none; height: 320px; }
      .founder-content { padding: 40px 24px; }

      .contact-strip { padding: 36px 24px; }
      .contact-strip-inner { grid-template-columns: 1fr; gap: 24px; }

      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
      footer { padding: 48px 24px 24px; }

      .cta-section { padding: 70px 24px; }
      .disclaimer { padding: 10px 24px; }
    }

    @media (max-width: 600px) {
      .phones-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .features-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .hero-right { width: 240px; height: 240px; }
      .hero-stats { gap: 20px; }
    }

    /* Scroll animation */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }