    :root {
      --navy:       #1B2035;
      --navy-deep:  #111625;
      --navy-mid:   #252d4a;
      --orange:     #F97316;
      --orange-dark:#EA6A0A;
      --amber:      #FBBF24;
      --white:      #FFFFFF;
      --off-white:  #F8F9FB;
      --text-dark:  #111827;
      --text-mid:   #374151;
      --text-muted: #6B7280;
      --border:     #E5E7EB;
      --success:    #10B981;
      --font-head:  'Sora', sans-serif;
      --font-body:  'DM Sans', sans-serif;
      --radius-sm:  8px;
      --radius-md:  14px;
      --radius-lg:  24px;
      --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
      --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
      --shadow-lg:  0 20px 60px rgba(0,0,0,0.15);
    }

    
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-body);
      background: var(--off-white);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    
    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange);
      color: var(--white);
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 0.95rem;
      padding: 13px 28px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(249,115,22,0.3);
    }
    .btn-primary:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(249,115,22,0.4);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--white);
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 0.95rem;
      padding: 12px 28px;
      border-radius: 50px;
      border: 2px solid rgba(255,255,255,0.4);
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.1);
      transform: translateY(-2px);
    }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-head);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 12px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: var(--orange);
      border-radius: 2px;
    }
    .section-title {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.2;
      letter-spacing: -0.02em;
    }
    .section-sub {
      color: var(--text-muted);
      font-size: 1.05rem;
      margin-top: 10px;
      max-width: 520px;
    }

    
    .announcement-bar {
      background: var(--orange);
      color: var(--white);
      text-align: center;
      padding: 9px 24px;
      font-size: 0.82rem;
      font-family: var(--font-head);
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .announcement-bar span { color: var(--white); font-weight: 700; }

    
    header {
      background: var(--navy);
      position: sticky;
      top: 0;
      z-index: 900;
      box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    }
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 24px;
      max-width: 1160px;
      margin: 0 auto;
    }
    .nav-logo img {
      height: 38px;
      width: auto;
    }
    .nav-logo-fallback {
      font-family: var(--font-head);
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.03em;
    }
    .nav-logo-fallback span { color: var(--orange); }
    .nav-cta {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .nav-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.85);
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .nav-phone:hover { color: var(--white); }
    .nav-phone svg { opacity: 0.7; flex-shrink: 0; }
    .nav-wa-btn {
      display: flex;
      align-items: center;
      gap: 7px;
      background: #25D366;
      color: var(--white);
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 0.85rem;
      padding: 9px 18px;
      border-radius: 50px;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-wa-btn:hover { background: #1ebe5a; transform: translateY(-1px); }

    
    .hero {
      background: var(--navy);
      position: relative;
      overflow: hidden;
      padding: 80px 0 70px;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 70% 50%, rgba(249,115,22,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(251,191,36,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(249,115,22,0.15);
      border: 1px solid rgba(249,115,22,0.3);
      color: var(--amber);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 24px;
      width: fit-content;
      animation: fadeInDown 0.6s ease both;
    }
    .hero-badge::before {
      content: '';
      width: 7px; height: 7px;
      background: var(--amber);
      border-radius: 50%;
      animation: pulse 1.5s ease infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }
    .hero h1 {
      font-family: var(--font-head);
      font-size: clamp(2rem, 4.5vw, 3.4rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.12;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
      animation: fadeInUp 0.7s 0.1s ease both;
    }
    .hero h1 .accent { color: var(--orange); }
    .hero-sub {
      color: rgba(255,255,255,0.65);
      font-size: 1.1rem;
      line-height: 1.65;
      margin-bottom: 36px;
      max-width: 460px;
      animation: fadeInUp 0.7s 0.2s ease both;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeInUp 0.7s 0.3s ease both;
    }
    .hero-visual {
      display: flex;
      flex-direction: column;
      gap: 16px;
      animation: fadeInUp 0.7s 0.2s ease both;
    }
    
    .hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .stat-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-md);
      padding: 20px;
      backdrop-filter: blur(12px);
      transition: transform 0.25s, border-color 0.25s;
    }
    .stat-card:hover {
      transform: translateY(-4px);
      border-color: rgba(249,115,22,0.4);
    }
    .stat-number {
      font-family: var(--font-head);
      font-size: 2rem;
      font-weight: 800;
      color: var(--orange);
      line-height: 1;
    }
    .stat-label {
      color: rgba(255,255,255,0.6);
      font-size: 0.82rem;
      margin-top: 4px;
    }
    
    .hero-device-strip {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .hero-device-icon {
      width: 48px; height: 48px;
      background: var(--orange);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .hero-device-text strong {
      display: block;
      font-family: var(--font-head);
      font-weight: 700;
      color: var(--white);
      font-size: 0.95rem;
    }
    .hero-device-text span {
      color: rgba(255,255,255,0.5);
      font-size: 0.82rem;
    }
    .coming-soon-badge {
      margin-left: auto;
      background: rgba(249,115,22,0.2);
      color: var(--orange);
      border: 1px solid rgba(249,115,22,0.35);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 50px;
      white-space: nowrap;
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    
    .trust-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 20px 0;
    }
    .trust-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 32px;
      border-right: 1px solid var(--border);
    }
    .trust-item:last-child { border-right: none; }
    .trust-icon {
      width: 38px; height: 38px;
      background: rgba(249,115,22,0.1);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .trust-icon svg { color: var(--orange); }
    .trust-text strong {
      display: block;
      font-family: var(--font-head);
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text-dark);
    }
    .trust-text span {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    
    .why-section {
      padding: 80px 0;
      background: var(--off-white);
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .why-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }
    .why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: rgba(249,115,22,0.2);
    }
    .why-card:hover::before { transform: scaleX(1); }
    .why-card-icon {
      width: 54px; height: 54px;
      background: rgba(249,115,22,0.1);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .why-card h3 {
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
    }
    .why-card p {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.6;
    }

    
    .coming-section {
      background: var(--navy);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .coming-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(249,115,22,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .coming-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .coming-content .section-title { color: var(--white); }
    .coming-content .section-sub { color: rgba(255,255,255,0.6); }
    .coming-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 32px;
    }
    .coming-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .coming-item-dot {
      width: 22px; height: 22px;
      background: rgba(249,115,22,0.2);
      border: 1.5px solid var(--orange);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .coming-item-dot::after {
      content: '';
      width: 8px; height: 8px;
      background: var(--orange);
      border-radius: 50%;
    }
    .coming-item-text strong {
      display: block;
      font-family: var(--font-head);
      color: var(--white);
      font-weight: 600;
      font-size: 0.95rem;
    }
    .coming-item-text span {
      color: rgba(255,255,255,0.5);
      font-size: 0.85rem;
    }
    
    .countdown-wrap {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .countdown-title {
      font-family: var(--font-head);
      font-weight: 700;
      color: rgba(255,255,255,0.6);
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .countdown {
      display: flex;
      gap: 16px;
    }
    .countdown-unit {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-md);
      padding: 20px 16px;
      text-align: center;
      min-width: 80px;
      flex: 1;
    }
    .countdown-num {
      font-family: var(--font-head);
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--orange);
      line-height: 1;
      display: block;
    }
    .countdown-lbl {
      color: rgba(255,255,255,0.45);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 6px;
      display: block;
    }
    
    .notify-strip {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-md);
      padding: 20px 24px;
    }
    .notify-strip p {
      color: rgba(255,255,255,0.7);
      font-size: 0.88rem;
      margin-bottom: 12px;
    }
    .notify-strip p strong { color: var(--white); }
    .notify-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .notify-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange);
      color: var(--white);
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 0.88rem;
      padding: 11px 20px;
      border-radius: 50px;
      transition: background 0.2s, transform 0.15s;
    }
    .notify-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
    .notify-btn-wa {
      background: #25D366;
    }
    .notify-btn-wa:hover { background: #1ebe5a; }

    
    .contact-section {
      padding: 80px 0;
      background: var(--white);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-top: 48px;
      align-items: start;
    }
    .contact-card {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
    }
    .contact-card-header {
      background: var(--navy);
      padding: 18px 24px;
    }
    .contact-card-header h3 {
      font-family: var(--font-head);
      font-weight: 700;
      color: var(--white);
      font-size: 1rem;
    }
    .contact-card-body { padding: 24px; }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }
    .contact-item:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-item-icon {
      width: 42px; height: 42px;
      background: rgba(249,115,22,0.1);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-item-content label {
      display: block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 3px;
    }
    .contact-item-content a,
    .contact-item-content p {
      font-family: var(--font-head);
      font-weight: 600;
      color: var(--text-dark);
      font-size: 0.97rem;
      line-height: 1.5;
      transition: color 0.2s;
    }
    .contact-item-content a:hover { color: var(--orange); }

    
    .map-wrap {
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border);
      height: 100%;
      min-height: 340px;
    }
    .map-wrap iframe {
      width: 100%;
      height: 100%;
      min-height: 340px;
      border: none;
      display: block;
    }

    
    .social-row {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }
    .social-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--navy);
      color: var(--white);
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 0.82rem;
      padding: 9px 16px;
      border-radius: 50px;
      transition: background 0.2s, transform 0.15s;
    }
    .social-btn:hover { background: var(--navy-mid); transform: translateY(-2px); }
    .social-btn.ig:hover { background: #E1306C; }
    .social-btn.fb:hover { background: #1877F2; }
    .social-btn.yt:hover { background: #FF0000; }

    
    .faq-section {
      padding: 80px 0;
      background: var(--off-white);
    }
    .faq-list {
      margin-top: 48px;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item.open { border-color: rgba(249,115,22,0.3); }
    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      gap: 16px;
    }
    .faq-q span {
      font-family: var(--font-head);
      font-weight: 600;
      color: var(--text-dark);
      font-size: 1rem;
    }
    .faq-icon {
      width: 28px; height: 28px;
      background: rgba(249,115,22,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.3s;
    }
    .faq-item.open .faq-icon {
      background: var(--orange);
      transform: rotate(45deg);
    }
    .faq-item.open .faq-icon svg { stroke: var(--white); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.25s;
    }
    .faq-a-inner {
      padding: 0 24px 20px;
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.7;
    }
    .faq-item.open .faq-a { max-height: 200px; }

    
    footer {
      background: var(--navy-deep);
      padding: 48px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 40px;
    }
    .footer-brand p {
      color: rgba(255,255,255,0.5);
      font-size: 0.88rem;
      line-height: 1.7;
      margin-top: 14px;
      max-width: 280px;
    }
    .footer-logo-img { height: 34px; width: auto; }
    .footer-logo-fallback {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.03em;
    }
    .footer-logo-fallback span { color: var(--orange); }
    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }
    .footer-social-icon {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.07);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, transform 0.15s;
    }
    .footer-social-icon:hover { background: var(--orange); transform: translateY(-2px); }
    .footer-col h4 {
      font-family: var(--font-head);
      font-weight: 700;
      color: var(--white);
      font-size: 0.88rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a {
      color: rgba(255,255,255,0.5);
      font-size: 0.88rem;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      margin-top: 40px;
      padding: 18px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer-bottom p {
      color: rgba(255,255,255,0.35);
      font-size: 0.8rem;
    }
    .footer-bottom a {
      color: rgba(255,255,255,0.45);
      font-size: 0.8rem;
      transition: color 0.2s;
    }
    .footer-bottom a:hover { color: var(--orange); }

    
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 24px rgba(37,211,102,0.45);
      transition: transform 0.2s, box-shadow 0.2s;
      animation: bounceIn 0.6s 1s ease both;
    }
    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 32px rgba(37,211,102,0.55);
    }
    @keyframes bounceIn {
      from { opacity: 0; transform: scale(0.5); }
      to   { opacity: 1; transform: scale(1); }
    }
    .wa-float-tooltip {
      position: absolute;
      right: 68px;
      background: var(--navy);
      color: var(--white);
      font-family: var(--font-head);
      font-size: 0.8rem;
      font-weight: 600;
      white-space: nowrap;
      padding: 8px 14px;
      border-radius: 8px;
      pointer-events: none;
      opacity: 0;
      transform: translateX(6px);
      transition: opacity 0.2s, transform 0.2s;
    }
    .wa-float-tooltip::after {
      content: '';
      position: absolute;
      right: -6px; top: 50%;
      transform: translateY(-50%);
      border: 6px solid transparent;
      border-right: none;
      border-left-color: var(--navy);
    }
    .wa-float:hover .wa-float-tooltip {
      opacity: 1;
      transform: translateX(0);
    }

    
    @media (max-width: 900px) {
      .hero-inner,
      .coming-inner,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .hero { padding: 56px 0 48px; }
      .hero-visual { display: none; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .trust-bar-inner { gap: 0; }
      .trust-item { padding: 10px 18px; }
    }
    @media (max-width: 600px) {
      .nav-phone { display: none; }
      .why-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .trust-item { border-right: none; border-bottom: 1px solid var(--border); width: 50%; }
      .countdown-num { font-size: 1.6rem; }
      .countdown-unit { min-width: 60px; padding: 14px 8px; }
      .contact-grid { gap: 24px; }
      .map-wrap, .map-wrap iframe { min-height: 240px; }
      .social-row { flex-wrap: wrap; }
    }