/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0f;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== VARIABLES ===== */
:root {
  --accent: #7c3aed;
  --accent2: #a855f7;
  --accent-glow: rgba(124, 58, 237, 0.35);
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #16161f;
  --card: #1a1a26;
  --card-border: rgba(124, 58, 237, 0.2);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #06b6d4 100%);
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-dark { background: var(--bg2); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
  transition: background 0.3s;
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; height: 70px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; flex-direction: column; }
.logo-main { font-size: 1.15rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-sub { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.03em; }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent2); }
.lang-toggle { background: rgba(124, 58, 237, 0.15); border: 1px solid var(--card-border); color: var(--accent2); padding: 0.3rem 0.8rem; border-radius: 6px; cursor: pointer; font-size: 0.8rem; font-weight: 600; transition: all 0.2s; }
.lang-toggle:hover { background: rgba(124, 58, 237, 0.3); }
.btn-nav { background: var(--gradient); color: #fff; padding: 0.5rem 1.2rem; border-radius: 8px; font-size: 0.9rem; font-weight: 600; transition: opacity 0.2s; }
.btn-nav:hover { opacity: 0.85; }
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; padding: 1rem 1.5rem; gap: 1rem; border-top: 1px solid var(--card-border); background: var(--bg); }
.mobile-menu a { color: var(--text-muted); font-size: 1rem; }
.mobile-menu.open { display: flex; }
.lang-toggle-mobile { background: none; border: 1px solid var(--card-border); color: var(--accent2); padding: 0.4rem 1rem; border-radius: 6px; cursor: pointer; font-size: 0.85rem; width: fit-content; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 7rem 0 4rem; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124, 58, 237, 0.25) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.badge { display: inline-block; background: rgba(124, 58, 237, 0.15); border: 1px solid var(--card-border); color: var(--accent2); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.accent { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.1rem; color: var(--accent2); font-weight: 600; letter-spacing: 0.05em; margin-bottom: 1.25rem; }
.hero-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary { background: var(--gradient); color: #fff; padding: 0.85rem 2rem; border-radius: 10px; font-size: 1rem; font-weight: 700; border: none; cursor: pointer; transition: opacity 0.2s, transform 0.2s; display: inline-block; }
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-secondary { background: rgba(124, 58, 237, 0.1); border: 1px solid var(--card-border); color: var(--text); padding: 0.85rem 2rem; border-radius: 10px; font-size: 1rem; font-weight: 600; transition: background 0.2s; display: inline-block; }
.btn-secondary:hover { background: rgba(124, 58, 237, 0.2); }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 2rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--accent2); box-shadow: 0 0 30px var(--accent-glow); }
.service-card.premium { border-color: var(--accent); background: linear-gradient(135deg, #1a1a26 0%, #1f1235 100%); }
.service-card.premium:hover { box-shadow: 0 0 40px rgba(124, 58, 237, 0.5); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }
.service-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.service-card ul li { color: var(--text-muted); font-size: 0.9rem; padding-left: 1rem; position: relative; }
.service-card ul li::before { content: "→"; position: absolute; left: 0; color: var(--accent2); font-size: 0.8rem; }
.premium-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gradient); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 20px; }

/* ===== WHY NOW ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.why-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 16px; padding: 2rem; text-align: center; }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.price-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 16px; padding: 2rem; text-align: center; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 0 25px var(--accent-glow); }
.price-card.premium { border-color: var(--accent); background: linear-gradient(135deg, #1a1a26 0%, #1f1235 100%); }
.price-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.price-card h3 { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1rem; font-weight: 500; }
.price { font-size: 1.8rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price span { font-size: 1rem; font-weight: 500; }
.price-type { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.4rem; }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.95rem; padding: 1.25rem; background: var(--card); border: 1px solid var(--card-border); border-radius: 12px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 16px; padding: 2rem; }
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author strong { display: block; color: #fff; font-weight: 700; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--card); border: 1px solid var(--card-border); border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; color: var(--text); padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 0.95rem; font-weight: 600; text-align: left; gap: 1rem; }
.faq-q:hover { color: var(--accent2); }
.faq-arrow { color: var(--accent2); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; }
.faq-a.open { display: block; }
.faq-a p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1.25rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.about-values { display: flex; flex-direction: column; gap: 0.75rem; }
.value { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--text-muted); font-size: 0.95rem; }
.value span:first-child { font-size: 1.1rem; flex-shrink: 0; }
.about-badge-wrap { display: flex; justify-content: center; }
.about-badge { background: var(--card); border: 1px solid var(--card-border); border-radius: 20px; padding: 2.5rem 2rem; text-align: center; min-width: 200px; box-shadow: 0 0 40px var(--accent-glow); }
.ab-year { font-size: 3.5rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.ab-line { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; margin: 0.3rem 0; }
.ab-line.small { font-size: 0.75rem; max-width: 160px; }
.ab-divider { height: 1px; background: var(--card-border); margin: 1rem 0; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 10px;
  color: var(--text); padding: 0.75rem 1rem; font-size: 0.95rem; font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent2);
}
.form-group select option { background: var(--bg3); }
.form-success { color: #10b981; font-size: 0.9rem; font-weight: 600; margin-top: 0.5rem; min-height: 1.2em; }
.contact-info { display: flex; flex-direction: column; gap: 1.75rem; min-width: 240px; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.contact-item a { color: var(--accent2); }
.contact-item a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--card-border); padding: 2rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand strong { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 1rem; }
.footer-brand span { font-size: 0.75rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent2); }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; }

/* ===== FLOATING BUTTONS ===== */
.floating-btns { position: fixed; bottom: 2rem; right: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; z-index: 999; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(0,0,0,0.5); }
.float-btn svg { width: 26px; height: 26px; }
.float-btn.whatsapp { background: #25D366; }
.float-btn.telegram { background: #0088cc; }

/* ===== SECTION PREMIUM OPENCLAW ===== */
.premium-section {
  position: relative;
  background: #07070e;
  overflow: hidden;
}
.premium-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(124, 58, 237, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(6, 182, 212, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.premium-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.premium-tag {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.premium-header h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.premium-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* SHOWCASE LAYOUT */
.premium-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* MASCOT */
.mascot-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.mascot-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
.mascot-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  border: 2px solid rgba(124, 58, 237, 0.4);
  box-shadow:
    0 0 60px rgba(124, 58, 237, 0.4),
    0 0 120px rgba(124, 58, 237, 0.15),
    0 20px 60px rgba(0,0,0,0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.mascot-img:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow:
    0 0 80px rgba(124, 58, 237, 0.55),
    0 0 150px rgba(124, 58, 237, 0.2),
    0 30px 80px rgba(0,0,0,0.7);
}
.mascot-caption {
  position: relative;
  z-index: 1;
  text-align: center;
}
.mascot-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mascot-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* PREMIUM FEATURES */
.premium-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.premium-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pf-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}
.pf-item:hover {
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.06);
}
.pf-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pf-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pf-item strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.pf-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* PRICE BLOCK */
.premium-price-block {
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(6,182,212,0.06) 100%);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ppb-price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.ppb-from {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ppb-amount {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.ppb-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.ppb-monthly {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(124,58,237,0.15);
  padding-top: 0.75rem;
}
.ppb-m-price {
  font-weight: 700;
  color: var(--accent2);
}
.ppb-m-price em { font-style: normal; font-weight: 400; font-size: 0.8rem; }
.ppb-cta {
  margin-top: 0.5rem;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .premium-showcase { grid-template-columns: 1fr; gap: 2.5rem; }
  .mascot-img { max-width: 380px; }
  .mascot-glow { width: 320px; height: 320px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-badge-wrap { justify-content: flex-start; }
  .contact-info { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .nav-right { display: none; }
  .hamburger { display: block; }
  .hero-stats { gap: 2rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}
