@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-body: #0a0b10;
  --bg-card: #13141c;
  --bg-card-hover: #181b26;
  --border-light: rgba(255, 255, 255, 0.05);
  --border-strong: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.1);
  --primary-color: #00d2ff;

  
  --text-main: #ffffff;
  --text-muted: #9ca3af;
  
  --brand-cyan: #00d2ff;
  --brand-green: #10b981;
  --brand-yellow: #f59e0b;
  
  --btn-whatsapp: #10b981;
  --btn-email: linear-gradient(90deg, #f97316 0%, #eab308 100%);
  --btn-hero-cyan: #00d2ff;
  
  font-family: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* NAVBAR */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  border-bottom: 1px solid var(--border-strong);
  background: var(--bg-body);
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

nav ul li a:hover { color: var(--text-main); }

.free-trial-btn {
  background: var(--brand-green);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 8%;
  gap: 50px;
}

.hero-left {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 210, 255, 0.1);
  color: var(--brand-cyan);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: clamp(2rem, 5vw + 1rem, 3.8rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-left h1 .highlight {
  color: var(--brand-cyan);
}

.hero-left p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat h3 { color: var(--brand-cyan); font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; }
.stat p { color: var(--text-muted); font-size: 0.8rem; }

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  color: #000;
}

.btn-cyan { background: var(--brand-cyan); }
.btn-email { background: var(--btn-email); color: #fff; }
.btn-outline { background: transparent; border: 1px solid var(--border-strong); color: #fff; }

.hero-trust {
  display: flex;
  gap: 15px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-right {
  flex: 1;
  position: relative;
}

@keyframes tvFlicker {
  0% { box-shadow: 0 0 30px rgba(0, 210, 255, 0.1); }
  50% { box-shadow: 0 0 50px rgba(0, 210, 255, 0.4); }
  100% { box-shadow: 0 0 30px rgba(0, 210, 255, 0.1); }
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes blinkRed {
  0% { opacity: 1; box-shadow: 0 0 8px red; }
  50% { opacity: 0.3; box-shadow: 0 0 2px red; }
  100% { opacity: 1; box-shadow: 0 0 8px red; }
}

.hero-img-box {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--brand-cyan);
  box-shadow: 0 0 40px rgba(0, 210, 255, 0.2);
  overflow: hidden;
  position: relative;
  animation: tvFlicker 6s infinite ease-in-out;
}

.hero-img-box img {
    width: 100%;
    display: block;
    animation: slowZoom 20s infinite ease-in-out;
    transform-origin: center center;
}

.live-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.8);
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-badge .dot { width: 8px; height: 8px; background: red; border-radius: 50%; animation: blinkRed 1.5s infinite; }

/* COMPATIBILITY */
.comp-section {
  text-align: center;
  padding: 60px 8%;
}

.section-label {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.comp-section h2 { font-size: 2.2rem; margin-bottom: 15px; }
.comp-section p { color: var(--text-muted); max-width: 700px; margin: 0 auto 40px; font-size: 0.95rem; }
.comp-section p a { color: var(--brand-cyan); text-decoration: underline; }

.devices-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.device-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100px;
  height: 90px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.apps-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.app-box {
  width: 220px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  gap: 10px;
}

.app-box.smart { background: #00A3FF; }
.app-box.smarters { background: #9D4EDD; }
.app-box.ibo { background: #13141c; border: 1px solid var(--border-strong); }
.app-box.ibo img { opacity: 0.6; }

/* FEATURES GRID */
.features-container {
  padding: 0 8% 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feat-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
}

.feat-icon { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 15px; color: var(--text-muted); }
.feat-icon.yellow { color: var(--brand-yellow); }
.feat-icon.cyan { color: var(--brand-cyan); }

.feat-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feat-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* PRICING */
.pricing-section {
  padding: 60px 8%;
  text-align: center;
}

.pricing-section h2 { font-size: 2.2rem; margin-bottom: 10px; }
.pricing-section > p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 30px; }

.toggles-area {
  margin-bottom: 40px;
}

.toggle-row {
  margin-bottom: 15px;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.9rem;
}

.toggle-bg {
  display: inline-flex;
  background: #000;
  border-radius: 50px;
  padding: 4px;
  margin-left: 15px;
  border: 1px solid var(--border-strong);
}

.toggle-bg button {
  background: transparent;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
}
.toggle-bg button.active { background: var(--brand-green); color: #000; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}

.p-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 30px 20px;
  position: relative;
}

.p-card.popular {
  border-color: var(--brand-green);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.pop-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-green);
  color: #000;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.p-card h3 { text-align: center; font-size: clamp(1rem, 2vw, 1.25rem); margin-bottom: 10px; }
.p-card .price { text-align: center; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--brand-green); margin-bottom: 15px; }

.p-card .p-tag {
  text-align: center;
  color: #ef4444;
  font-size: 0.75rem;
  border: 1px solid rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
  padding: 4px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.p-card ul {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.p-card ul li { margin-bottom: 10px; position: relative; padding-left: 15px; }
.p-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background: var(--text-muted);
  border-radius: 50%;
}

.p-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-p-wa { background: var(--brand-green); color: #fff; padding: 10px; border-radius: 50px; text-align: center; font-weight: 600; font-size: 0.85rem; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px; }
.btn-p-em { background: var(--btn-email); color: #fff; padding: 10px; border-radius: 50px; text-align: center; font-weight: 600; font-size: 0.85rem; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* SEO TEXT */
.seo-text {
  padding: 60px 8%;
  max-width: 900px;
  margin: 0 auto;
}

.seo-text h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 20px; }
.seo-text p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.seo-text ul { color: var(--text-muted); padding-left: 20px; font-size: 0.95rem; }
.seo-text ul li { margin-bottom: 10px; list-style-type: disc; }
.seo-text ul li strong { color: #fff; }

/* FAQ */
.faq {
  padding: 40px 8% 80px;
  max-width: 900px;
  margin: 0 auto;
}

.faq h2 { text-align: center; font-size: 2.2rem; margin-bottom: 10px; }
.faq > p { text-align: center; color: var(--text-muted); margin-bottom: 30px; font-size: 0.95rem; }

.faq-row {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-strong);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
}
.faq-row:first-child { border-top: 1px solid var(--border-strong); }
.faq-row ion-icon { color: var(--brand-cyan); font-size: clamp(1rem, 2vw, 1.25rem); }

/* TESTIMONIALS */
.tests {
  padding: 60px 8%;
  text-align: center;
}

.tests h2 { font-size: 2.2rem; margin-bottom: 10px; }
.tests h2 .highlight { color: var(--brand-green); }
.tests > p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 40px; }

.tests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}

.test-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
}

.tc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.tc-stars { color: #facc15; }
.tc-badge { background: rgba(16,185,129,0.1); color: var(--brand-green); font-size: 0.75rem; padding: 2px 8px; border-radius: 4px; display: flex; align-items: center; gap: 4px; }

.test-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.test-card p { color: var(--text-muted); font-size: 0.9rem; font-style: italic; margin-bottom: 20px; }

.tc-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tc-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}
.tc-ava.cyan { background: #0891b2; }
.tc-ava.green { background: #059669; }
.tc-ava.purple { background: #7c3aed; }

.tc-info h5 { font-size: 0.9rem; }
.tc-info span { font-size: 0.75rem; color: var(--text-muted); }

/* FOOTER */
.site-footer {
  padding: 60px 8% 30px;
  border-top: 1px solid var(--border-strong);
}

.ft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.ft-col .logo { margin-bottom: 20px; }
.ft-col > p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 20px; max-width: 250px; }

.ft-badges {
  display: flex;
  gap: 10px;
}
.ft-badge { border: 1px solid var(--border-strong); padding: 4px 8px; font-size: 0.7rem; border-radius: 4px; color: var(--text-muted); display:flex; align-items:center; gap:5px;}

.ft-col h4 { font-size: 0.85rem; margin-bottom: 20px; letter-spacing: 0.5px; }
.ft-col ul li { margin-bottom: 12px; }
.ft-col ul li a { color: var(--text-muted); font-size: 0.85rem; }
.ft-col ul li a:hover { color: #fff; }

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-strong);
  padding-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.pay-icons { display: flex; gap: 6px; }
.pay-icons span { background: #fff; color: #000; padding: 2px 6px; border-radius: 2px; font-size: 0.65rem; font-weight: 700; }

/* FAQ ACCORDION */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}
details.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
details.faq-item summary {
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  color: var(--text-main);
}
details.faq-item summary::-webkit-details-marker {
  display: none;
}
details.faq-item summary::after {
  content: '+';
  color: var(--brand-cyan);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 300;
}
details[open].faq-item summary::after {
  content: '-';
}
details.faq-item .faq-content {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Global Styles Extracted from index.html */

        .device-box.premium-box {
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 15px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }
        .device-box.premium-box:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(0, 210, 255, 0.5);
            box-shadow: 0 10px 25px rgba(0, 210, 255, 0.15);
        }
        .device-box.premium-box .icon-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(16, 185, 129, 0.1));
            border: 1px solid rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: #fff;
            transition: all 0.4s ease;
        }
        .device-box.premium-box:hover .icon-circle {
            background: linear-gradient(135deg, #00d2ff, #10b981);
            border-color: transparent;
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
        }
        .device-box.premium-box span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-muted);
            transition: color 0.3s ease;
            letter-spacing: 0.5px;
        }
        .device-box.premium-box:hover span {
            color: #fff;
        }
        


/* CSS GRID FLUID REPLACEMENTS */
.features-container, .pricing-grid, .tests-grid, .ft-grid, .setup-grid, .app-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 900px) {
  /* Minimal Adjustments */
  header {
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 5%;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
  }
  
  .hero {
    flex-direction: column;
    padding: 40px 5%;
    text-align: center;
  }
  .hero-actions, .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Just allow tables to scroll sideways without stacking everything! */
  table, .pricing-table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
      margin-bottom: 20px;
  }
}

/* HAMBURGER MENU CSS */
.hamburger {
    display: none;
    font-size: 2.0rem; /* Reduced from 2.5rem */
    color: var(--text-main);
    cursor: pointer;
    margin-left: auto; /* Push it completely to the right edge */
}

@media (max-width: 900px) {
    header {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        position: relative;
        align-items: center;
        padding-right: 5%; /* Ensure it hits the edge nicely */
    }
    .logo {
        margin-right: auto;
    }
    .hamburger {
        display: block;
    }
    nav {
        position: static;
    }
    #nav-ul {
        display: none;
        flex-direction: column;
        width: 220px; /* Make it smaller instead of 100% width! */
        position: absolute;
        top: 100%;
        right: 5%; /* Align to the right edge */
        left: auto; /* Reset left */
        background: var(--bg-card);
        padding: 10px 0;
        border-radius: 8px; /* Cute rounded edges */
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        z-index: 999;
        text-align: center;
        border: 1px solid var(--border-strong);
        margin-top: 10px !important;
    }
    #nav-ul.active {
        display: flex !important;
        animation: dropMenu 0.3s ease;
    }
    @keyframes dropMenu {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    #nav-ul li a {
        font-size: 1.05rem; /* Smaller text */
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    #nav-ul li:last-child a {
        border-bottom: none;
    }
    .free-trial-btn {
        display: none;
    }
}

/* UNIVERSAL FOOTER CENTERING */
.site-footer {
    text-align: center !important;
}
.ft-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.ft-col ul {
    align-items: center;
    justify-content: center;
    text-align: center;
}
.logo {
    justify-content: center;
}
.ft-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* FIX BADGES CENTERING */
.ft-badges {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap;
    width: 100%;
}

/* UNIVERSAL FOOTER CENTERING */
.site-footer {
    text-align: center !important;
}
.ft-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.ft-col ul {
    align-items: center;
    justify-content: center;
    text-align: center;
}
.logo {
    justify-content: center;
}
.ft-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}



/* ========================================================
   SUPER PREMIUM MAGICAL LOGO ANIMATION (PHOTOSHOP STYLE)
   ======================================================== */
.logo {
    display: inline-flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.1));
}

.logo .dc-text {
    background: linear-gradient(
        120deg,
        #ffffff 0%,
        #ffffff 40%,
        var(--brand-cyan) 50%,
        #ffffff 60%,
        #ffffff 100%
    );
    background-size: 300% auto;
    color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text;
    animation: photoshopShine 4s linear infinite;
}

.logo ion-icon {
    color: var(--brand-cyan) !important;
    animation: neonHeartbeat 2.5s infinite alternate ease-in-out;
}

.logo:hover {
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 215, 255, 0.5));
    cursor: pointer;
}

@keyframes photoshopShine {
    0% { background-position: 200% center; }
    100% { background-position: -100% center; }
}

@keyframes neonHeartbeat {
    0% { transform: scale(1); filter: drop-shadow(0 0 5px var(--brand-cyan)) drop-shadow(0 0 10px rgba(0, 215, 255, 0.5)); }
    100% { transform: scale(1.15) rotate(5deg); filter: drop-shadow(0 0 15px var(--brand-cyan)) drop-shadow(0 0 30px rgba(0, 215, 255, 0.8)); }
}
