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

:root {
  --bg: #030014;
  --text: #ffffff;
  --text-dim: rgba(255,255,255,0.5);
  --text-muted: rgba(255,255,255,0.3);
  --accent: #6366f1;
  --gold: #f59e0b;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* BACKGROUND */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* MAIN */
.main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* BRAND */
.brand {
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.brand-logo {
  width: 180px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.1));
}

.brand-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* SHOWROOM */
.showroom {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
}

/* DEVICE */
.device {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.device:hover {
  transform: translateY(-12px);
}

/* Phone Frame - Her iki telefon için aynı ebatlar */
.device-frame {
  width: 200px;
  height: 400px;
  background: linear-gradient(145deg, #151520, #0a0a10);
  border-radius: 32px;
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 1px rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-bezel {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
}

.device-bezel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Monitor Frame */
.monitor-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.monitor-bezel {
  width: 340px;
  background: linear-gradient(145deg, #151520, #0a0a10);
  border-radius: 8px;
  padding: 6px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 1px rgba(255,255,255,0.08);
}

.monitor-bezel img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 4px;
}

.monitor-stand {
  width: 60px;
  height: 50px;
  background: linear-gradient(180deg, #151520, #0a0a10);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

/* Gold Table - removed */

.device:hover .monitor-bezel {
  box-shadow:
    0 50px 100px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 1px rgba(255,255,255,0.1);
}

.device:hover .device-frame {
  box-shadow:
    0 50px 100px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 1px rgba(255,255,255,0.1);
}

/* Device Info */
.device-info {
  margin-top: 1.5rem;
  text-align: center;
}

.device-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.device-info h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.25rem 0 0.125rem;
}

.device-info > p {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.device-tech {
  display: flex;
  gap: 0.375rem;
  justify-content: center;
}

.device-tech span {
  padding: 0.25rem 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.6rem;
  color: var(--text-muted);
}

.device.gold .device-tech span {
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.2);
  color: var(--gold);
}

/* FOOTER */
.footer {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact:hover {
  color: var(--text);
}

.footer-dot {
  opacity: 0.3;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.modal.active {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.95);
}

.modal-content {
  position: relative;
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  animation: modalIn 0.4s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: rgba(255,255,255,0.2);
}

/* HUSU MODAL */
.husu-modal {
  background: linear-gradient(180deg, #0a0a14, #030008);
}

.husu-hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.husu-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 60%);
  pointer-events: none;
}

.husu-brand {
  width: 140px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.1));
}

.husu-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.husu-tagline {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.husu-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #1a1a2e, #0a0a15);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
}

.play-badge:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.play-badge i {
  font-size: 2rem;
}

.play-text {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.play-status {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

/* SHOWCASE */
.showcase-section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.showcase-section h2 {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-bottom: 4rem;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 2rem;
}

.showcase-item.reverse {
  flex-direction: row-reverse;
}

.showcase-screen {
  flex: 1;
}

.showcase-screen img {
  width: 100%;
  max-width: 280px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.showcase-info {
  flex: 1;
}

.showcase-num {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  color: #6366f1;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.showcase-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.showcase-info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.showcase-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.divider-icon {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.2);
}

.divider-icon.gold {
  color: #f59e0b;
}

/* FEATURES */
.features-section {
  padding: 4rem 2rem;
  background: rgba(255,255,255,0.02);
}

.features-section h2 {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
  text-align: center;
}

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

.feat-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}

.feat-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-4px);
}

.feat-card i {
  font-size: 1.5rem;
  color: #6366f1;
  margin-bottom: 1rem;
}

.feat-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feat-card p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* Gold Feature Card */
.feat-card.gold-feat {
  border-color: rgba(245,158,11,0.15);
}

.feat-card.gold-feat:hover {
  background: rgba(245,158,11,0.05);
  border-color: rgba(245,158,11,0.3);
}

.feat-card.gold-feat i {
  color: #f59e0b;
}

/* CTA */
.modal-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 4rem 2rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .husu-hero h1 {
    font-size: 2.5rem;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .modal-cta {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .showroom {
    gap: 2rem;
  }

  .device-frame {
    width: 170px;
    height: 340px;
  }

  .monitor-bezel {
    width: 280px;
  }
}

@media (max-width: 700px) {
  .showroom {
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 3rem;
  }

  .device-frame {
    width: 180px;
    height: 360px;
  }

  .monitor-bezel {
    width: 300px;
  }
}

/* ==================== KUYUMCU MODAL ==================== */
.kuyumcu-modal {
  background: linear-gradient(180deg, #0a0a14, #030008);
}

.kuyumcu-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.kuyumcu-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.12), transparent 60%);
  pointer-events: none;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  color: #f59e0b;
  margin-top: 1rem;
}

.project-badge i {
  color: #f59e0b;
}

/* Price Cards Preview */
.kuyumcu-preview {
  padding: 3rem 2rem;
  background: rgba(245,158,11,0.03);
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s;
}

.price-card:hover {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.4);
  transform: translateY(-4px);
}

.price-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.price-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

.price-trend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.7rem;
}

.price-trend.up {
  background: rgba(34,197,94,0.2);
  color: #22c55e;
}

.price-trend.down {
  background: rgba(239,68,68,0.2);
  color: #ef4444;
}

.preview-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
}

/* Kuyumcu Features Grid */
.kuyumcu-grid {
  max-width: 1100px;
}

/* Gold CTA */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}

.cta-secondary.gold-cta {
  border-color: rgba(245,158,11,0.3);
}

.cta-secondary.gold-cta:hover {
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.5);
}

/* Reference Section */
.reference-section {
  padding: 4rem 2rem;
  background: rgba(245,158,11,0.05);
}

.reference-section h2 {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
  text-align: center;
}

.reference-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 16px;
}

.ref-badge {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,158,11,0.15);
  border-radius: 50%;
  font-size: 1.5rem;
  color: #f59e0b;
}

.ref-info {
  flex: 1;
  text-align: left;
}

.ref-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.25rem;
}

.ref-info p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.ref-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 8px;
  color: #f59e0b;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s;
}

.ref-link:hover {
  background: rgba(245,158,11,0.25);
  transform: translateY(-2px);
}

/* Kuyumcu Responsive */
@media (max-width: 768px) {
  .price-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .reference-card {
    flex-direction: column;
    text-align: center;
  }

  .ref-info {
    text-align: center;
  }

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

  .tv-preview {
    padding: 1rem;
  }

  .tv-frame {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .price-cards {
    grid-template-columns: 1fr;
  }

  .kuyumcu-grid {
    grid-template-columns: 1fr;
  }
}

/* TV Preview */
.tv-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.tv-frame {
  max-width: 700px;
  width: 100%;
  background: linear-gradient(145deg, #1a1a20, #0a0a10);
  border-radius: 16px;
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(245,158,11,0.1),
    inset 0 1px 1px rgba(255,255,255,0.05);
}

.tv-image {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* Demo Section */
.demo-section {
  padding: 2rem;
  background: rgba(37, 211, 102, 0.05);
  border-top: 1px solid rgba(37, 211, 102, 0.15);
  border-bottom: 1px solid rgba(37, 211, 102, 0.15);
}

.demo-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 16px;
}

.demo-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  font-size: 1.75rem;
  color: #fff;
  flex-shrink: 0;
}

.demo-text {
  flex: 1;
}

.demo-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.demo-text p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  flex-shrink: 0;
}

.demo-btn:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.demo-btn i {
  font-size: 1.25rem;
}

/* Demo Responsive */
@media (max-width: 600px) {
  .demo-content {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .demo-text {
    text-align: center;
  }

  .demo-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== ADVANTAGES SECTION ==================== */
.advantages-section {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, rgba(245,158,11,0.03), rgba(245,158,11,0.08));
}

.advantages-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.advantages-intro {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.advantage-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.advantage-card:hover {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.35);
  transform: translateY(-4px);
}

.adv-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,158,11,0.15);
  border-radius: 12px;
  font-size: 1.25rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.advantage-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.advantage-card p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* Advantages Responsive */
@media (max-width: 900px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== PHONE MANAGEMENT SECTION ==================== */
.phone-manage-section {
  padding: 4rem 2rem;
  background: rgba(255,255,255,0.02);
}

.phone-manage-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.phone-intro {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.phone-screens {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.phone-screen-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.phone-screen-card .phone-img {
  width: 180px;
  border-radius: 30px;
  border: 8px solid #1a1a20;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: all 0.3s;
}

.phone-screen-card:hover .phone-img {
  transform: translateY(-8px);
  border-color: rgba(245,158,11,0.3);
}

.phone-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.phone-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.phone-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

.phone-feat i {
  color: #f59e0b;
  font-size: 1rem;
}

/* Phone Section Responsive */
@media (max-width: 600px) {
  .phone-screens {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .phone-screen-card .phone-img {
    width: 160px;
  }

  .phone-features {
    gap: 0.75rem;
  }

  .phone-feat {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

/* LEGAL PILLS */
.legal-pills {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.legal-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.legal-pill i {
  font-size: 0.65rem;
  opacity: 0.7;
}

.legal-pill:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.4);
  color: #a5b4fc;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}
