/* =============================================
   COOKIE GENERATOR BOT — style.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg:         #0a0a0a;
  --bg-card:    #141414;
  --bg-card2:   #1a1a1a;
  --bg-card3:   #2b2b33;
  --purple:     #8f13d8;
  --pink:       #d556b8;
  --border:     rgba(143, 19, 216, 0.2);
  --border-h:   rgba(213, 86, 184, 0.4);
  --text:       #ffffff;
  --muted:      #9ca3af;
  --radius:     1rem;
  --gradient:   linear-gradient(135deg, var(--purple), var(--pink));
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Plus Jakarta Sans', sans-serif; }

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { max-width: 100%; display: block; }
input, textarea { font-family: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 800px; }
.container--wide { max-width: 1400px; }

/* ---- Gradient Text ---- */
.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  border-color: var(--border);
  box-shadow: 0 0 40px rgba(143,19,216,0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex; align-items: center; gap: 0.75rem;
  cursor: pointer; flex-shrink: 0;
}
.logo-img {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.logo-text-main {
  display: block; font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1.1rem; line-height: 1.1;
  color: #fff;
}
.logo-text-sub {
  display: block; font-size: 0.72rem; color: var(--muted);
  font-weight: 500; letter-spacing: 0.04em; margin-top: 2px;
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center; gap: 2.5rem; flex-grow: 1;
  justify-content: flex-end;
}
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links button {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  transition: color 0.2s;
}
.nav-links button:hover { color: var(--pink); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.btn-lang {
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 40px; border-radius: 999px;
  border: 1px solid var(--purple);
  color: var(--pink); font-weight: 700; font-size: 0.875rem;
  transition: all 0.2s;
}
.btn-lang:hover { background: rgba(143,19,216,0.15); color: #fff; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gradient); color: #fff; font-weight: 700;
  border-radius: 999px; padding: 0 1.5rem; height: 40px;
  font-size: 0.875rem; transition: opacity 0.2s;
  box-shadow: 0 0 15px rgba(143,19,216,0.3);
}
.btn-primary:hover { opacity: 0.88; }

/* Mobile menu button */
.nav-mobile-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: #fff; font-size: 1.5rem;
  margin-left: auto;
}
@media (min-width: 1024px) { .nav-mobile-btn { display: none; } }

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  position: absolute; top: 80px; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  flex-direction: column; gap: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.nav-mobile-menu.open { display: flex; }
@media (min-width: 1024px) { .nav-mobile-menu { display: none !important; } }

.nav-mobile-menu button {
  text-align: left; padding: 0.5rem 0;
  font-size: 1.1rem; font-weight: 600; color: #fff;
  transition: color 0.2s;
}
.nav-mobile-menu button:hover { color: var(--pink); }

.nav-mobile-actions {
  display: flex; gap: 1rem;
  border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 0.5rem;
}
.nav-mobile-actions .btn-lang { flex-shrink: 0; }
.nav-mobile-actions .btn-primary { flex: 1; justify-content: center; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 90vh; display: flex; align-items: center;
  padding: 8rem 1.25rem 4rem;
  position: relative; overflow: hidden;
}

.hero-glow-1 {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(1000px, 100vw); height: 600px;
  background: rgba(143,19,216,0.18);
  border-radius: 50%; filter: blur(120px);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: 0; right: 0;
  width: min(800px, 100vw); height: 500px;
  background: rgba(213,86,184,0.08);
  border-radius: 50%; filter: blur(100px);
  pointer-events: none;
}

.hero-cookie {
  position: absolute; top: 6rem; right: 5%;
  opacity: 0.3; pointer-events: none; z-index: 0;
  animation: cookieFloat 6s ease-in-out infinite;
  font-size: 5rem; color: var(--pink);
}
@media (min-width: 768px) { .hero-cookie { right: 25%; font-size: 8rem; opacity: 0.4; } }

@keyframes cookieFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(-10px) rotate(-5deg); }
}

.hero-inner {
  position: relative; z-index: 1;
  text-align: center; width: 100%; max-width: 900px; margin: 0 auto;
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.375rem 1rem; margin-bottom: 2rem;
  font-size: 0.875rem; font-weight: 600; color: #d1d5db;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--muted); max-width: 750px; margin: 0 auto 2.5rem;
  line-height: 1.7; font-weight: 400; padding: 0 1rem;
}

.hero-buttons {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: center; justify-content: center;
  margin-bottom: 4rem; padding: 0 1rem;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gradient); color: #fff; font-weight: 700;
  font-size: 1.1rem; padding: 1rem 2.5rem; border-radius: 999px;
  box-shadow: 0 0 30px rgba(143,19,216,0.3);
  transition: opacity 0.2s, transform 0.2s; width: 100%;
  justify-content: center;
}
@media (min-width: 640px) { .btn-hero-primary { width: auto; } }
.btn-hero-primary:hover { opacity: 0.9; transform: scale(1.04); }
.btn-hero-primary:active { transform: scale(0.97); }

.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(26,26,26,0.5); border: 1px solid var(--border);
  color: #fff; font-weight: 700; font-size: 1.1rem;
  padding: 1rem 2.5rem; border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  width: 100%; justify-content: center;
}
@media (min-width: 640px) { .btn-hero-outline { width: auto; } }
.btn-hero-outline:hover { background: rgba(143,19,216,0.1); border-color: var(--border-h); transform: scale(1.04); }

/* Hero stats */
.hero-stats {
  display: grid; grid-template-columns: 1fr;
  gap: 1.25rem; max-width: 800px; margin: 0 auto; padding: 0 1rem;
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(3,1fr); } }

.hero-stat-card {
  background: rgba(26,26,26,0.8); border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s;
}
.hero-stat-card:hover { border-color: var(--border-h); }
.hero-stat-icon {
  width: 28px; height: 28px; color: var(--pink);
  margin: 0 auto 1rem; display: block;
}
.hero-stat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.hero-stat-card p  { font-size: 0.875rem; color: var(--muted); }

/* =============================================
   SECTION SHARED
   ============================================= */
.section { padding: 4rem 1.25rem; background: var(--bg); }
@media (min-width: 768px) { .section { padding: 5rem 1.25rem; } }

/* Alternating section background for visual rhythm */
#features, #why-us, #trial-guarantee, #other-solutions, #contact {
  background: #0d0d0d;
}
#pricing, #how-it-works, #faq, #social-media {
  background: var(--bg);
}

.section-badge {
  display: inline-block; padding: 0.375rem 1rem;
  border: 1px solid var(--border); border-radius: 999px;
  background: rgba(143,19,216,0.1); color: var(--pink);
  font-size: 0.8rem; font-weight: 700; margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800; margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  color: var(--muted); font-weight: 400;
}

.divider {
  height: 48px;
  background: #111111;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* =============================================
   FEATURES (AdvancedFeatures)
   ============================================= */
.features-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1rem; margin-top: 3rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3,1fr); } }

.feature-card {
  background: var(--bg-card3); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1.25rem; padding: 1.5rem;
  transition: border-color 0.3s, background 0.3s;
  animation: fadeUpDelay var(--delay, 0s) ease both;
}
.feature-card:hover { border-color: rgba(213,86,184,0.3); background: rgba(43,43,51,0.8); }

.feature-card:hover .feature-icon-wrap { transform: scale(1.1); border-color: rgba(213,86,184,0.3); }

.feature-icon-wrap {
  width: 48px; height: 48px; background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.875rem; display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 1rem; transition: transform 0.3s, border-color 0.3s;
}
.feature-icon { width: 24px; height: 24px; color: var(--pink); }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card:hover h3 { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.feature-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; margin-top: 3rem;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }

.pricing-card {
  position: relative; background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1.25rem; padding: 2rem;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.highlight {
  border-color: rgba(143,19,216,0.5);
  box-shadow: 0 0 20px rgba(143,19,216,0.15);
}

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient);
  color: #fff; padding: 0.25rem 1rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; white-space: nowrap;
  box-shadow: 0 0 10px rgba(143,19,216,0.5);
}

.pricing-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem; padding-top: 0.5rem;
}
.pricing-name { font-size: 1.2rem; font-weight: 700; transition: color 0.2s; }
.pricing-card:hover .pricing-name { color: var(--pink); }

.pricing-label {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.75rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 0.375rem;
}
.pricing-label.enterprise { background: rgba(143,19,216,0.15); color: var(--pink); border: 1px solid rgba(143,19,216,0.3); }
.pricing-label.starter    { background: rgba(213,86,184,0.12); color: #c084fc; border: 1px solid rgba(213,86,184,0.25); }

.pricing-price {
  display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 1.5rem;
}
.pricing-amount { font-size: 2.25rem; font-weight: 800; }
.pricing-period { color: var(--muted); font-weight: 500; }

.pricing-features { flex: 1; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }

.pricing-feature {
  display: flex; align-items: center; gap: 0.75rem;
}
.pricing-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(143,19,216,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pricing-check svg { width: 12px; height: 12px; color: var(--pink); }
.pricing-feature span { font-size: 0.875rem; font-weight: 500; color: #d1d5db; }

.btn-pricing {
  width: 100%; height: 44px; border-radius: 0.625rem;
  font-weight: 600; font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all 0.3s;
}
.btn-pricing.primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 0 20px rgba(143,19,216,0.3);
}
.btn-pricing.primary:hover { opacity: 0.9; box-shadow: 0 0 30px rgba(143,19,216,0.5); }
.btn-pricing.outline {
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; background: transparent;
}
.btn-pricing.outline:hover { border-color: var(--purple); color: var(--pink); box-shadow: 0 0 15px rgba(143,19,216,0.3); }
.btn-pricing:disabled { opacity: 0.5; cursor: not-allowed; }

/* =============================================
   HOW IT WORKS (SystemProcess)
   ============================================= */
.steps-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; margin-top: 3rem;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3,1fr); } }

.step-card {
  text-align: center; position: relative;
}
.step-icon-wrap {
  width: 64px; height: 64px; margin: 0 auto 1.5rem;
  background: var(--bg-card3); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover .step-icon-wrap {
  border-color: rgba(213,86,184,0.5);
  box-shadow: 0 0 20px rgba(213,86,184,0.2);
}
.step-icon { width: 32px; height: 32px; color: var(--pink); }

.step-connector {
  display: none;
  position: absolute; top: 32px; left: 60%;
  width: 80%; height: 2px;
  background: linear-gradient(to right, rgba(213,86,184,0.4), transparent);
}
@media (min-width: 1024px) { .step-connector { display: block; } }

.step-card h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.step-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; max-width: 280px; margin: 0 auto; }

/* =============================================
   TRIAL GUARANTEE
   ============================================= */
.guarantee-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.25rem; margin-top: 3rem;
}
@media (min-width: 640px)  { .guarantee-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .guarantee-grid { grid-template-columns: repeat(4,1fr); } }

.guarantee-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 1.75rem;
  text-align: center; display: flex; flex-direction: column;
  align-items: center; transition: border-color 0.3s;
}
.guarantee-card:hover { border-color: var(--border-h); }
.guarantee-card:hover .guarantee-icon-wrap { transform: scale(1.1); }

.guarantee-icon-wrap {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1rem;
  box-shadow: 0 0 20px rgba(143,19,216,0.2);
  transition: transform 0.3s;
}
.guarantee-icon { width: 24px; height: 24px; color: #fff; }
.guarantee-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; transition: color 0.3s; }
.guarantee-card:hover h3 { color: var(--pink); }
.guarantee-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* =============================================
   FAQ
   ============================================= */
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 1.25rem; overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--border-h); }

.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; text-align: left;
  font-size: 0.95rem; font-weight: 700; color: #fff;
  transition: color 0.2s; gap: 1rem;
}
.faq-trigger:hover { color: var(--pink); }
.faq-item.open .faq-trigger { color: var(--pink); }

.faq-chevron {
  flex-shrink: 0; width: 20px; height: 20px; color: var(--muted);
  transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--pink); }

.faq-body {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 1.5rem;
}
.faq-item.open .faq-body { max-height: 300px; padding: 0 1.5rem 1.25rem; }
.faq-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

.faq-cta {
  background: linear-gradient(135deg, rgba(143,19,216,0.1), rgba(213,86,184,0.1));
  border: 1px solid var(--border); border-radius: 2rem;
  padding: 3rem; text-align: center; margin-top: 3rem;
}
.faq-cta h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.faq-cta p  { color: var(--muted); margin-bottom: 2rem; }

/* =============================================
   WHY US TABLE
   ============================================= */
.why-table-wrap {
  margin-top: 3rem; overflow-x: auto;
  border-radius: 1.25rem; border: 1px solid var(--border);
}
.why-table {
  width: 100%; border-collapse: collapse; min-width: 500px;
}
.why-table thead th {
  padding: 1.25rem 1.5rem; font-size: 0.875rem;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--bg-card2); border-bottom: 1px solid var(--border);
}
.why-th-feature { text-align: left; color: var(--muted); width: 55%; }
.why-th-us      { text-align: center; color: var(--pink); width: 22.5%; }
.why-th-other   { text-align: center; color: var(--muted); width: 22.5%; }

.why-us-badge {
  display: inline-block; background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.why-table tbody tr:last-child { border-bottom: none; }
.why-table tbody tr:hover { background: rgba(143,19,216,0.04); }

.why-feature {
  padding: 1rem 1.5rem; font-size: 0.9rem;
  font-weight: 500; color: #d1d5db; text-align: left;
}
.why-us, .why-other {
  text-align: center; padding: 1rem;
}
.why-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; font-size: 0.85rem;
}
.why-check.yes {
  background: rgba(143,19,216,0.15); color: var(--pink);
}
.why-check.yes svg { width: 14px; height: 14px; }
.why-check.yes.muted { background: rgba(255,255,255,0.06); color: #6b7280; }
.why-check.no {
  background: rgba(255,255,255,0.05); color: #4b5563;
  font-size: 0.75rem;
}

/* =============================================
   OTHER SOLUTIONS
   ============================================= */
.solutions-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; margin-top: 3rem;
}
@media (min-width: 768px)  { .solutions-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .solutions-grid { grid-template-columns: repeat(3,1fr); } }

.solution-card {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1.25rem; padding: 2rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.solution-card:hover {
  border-color: rgba(213,86,184,0.5);
  box-shadow: 0 0 30px rgba(143,19,216,0.15);
  transform: scale(1.02);
}

.solution-soon-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(143,19,216,0.2); border: 1px solid var(--border);
  color: var(--pink); font-size: 0.72rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 999px;
}

.solution-icon-wrap {
  width: 56px; height: 56px; border-radius: 0.875rem;
  background: rgba(213,86,184,0.1); display: flex;
  align-items: center; justify-content: center; margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.solution-card:hover .solution-icon-wrap { background: rgba(213,86,184,0.2); }
.solution-icon { width: 28px; height: 28px; color: var(--pink); }

.solution-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.solution-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 1.5rem; }

.solution-link {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.875rem; font-weight: 700;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  transition: opacity 0.2s;
}
.solution-link:hover { opacity: 0.8; }
.solution-link-arrow {
  width: 16px; height: 16px; color: var(--pink);
  transition: transform 0.2s;
}
.solution-card:hover .solution-link-arrow { transform: translateX(4px); }

/* =============================================
   SOCIAL MEDIA
   ============================================= */
.social-icons {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem; margin-top: 2.5rem;
}
.social-link {
  width: 56px; height: 56px; border-radius: 0.875rem;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.social-link:hover {
  border-color: var(--pink);
  box-shadow: 0 0 20px rgba(213,86,184,0.4);
  transform: translateY(-4px);
}
.social-link svg { width: 28px; height: 28px; }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; margin-top: 2.5rem;
  align-items: stretch;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-form-card {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 1.5rem; padding: 2rem;
}
@media (min-width: 768px) { .contact-form-card { padding: 3rem; } }

.contact-form-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--muted); margin-bottom: 0.5rem; }
.form-input {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: 0.875rem; padding: 0.875rem 1rem;
  color: #fff; font-size: 0.875rem; transition: border-color 0.2s;
  outline: none;
}
.form-input::placeholder { color: #4b5563; }
.form-input:focus { border-color: var(--pink); }
textarea.form-input { resize: none; }

.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--gradient); color: #fff; font-weight: 700; font-size: 1rem;
  padding: 1rem; border-radius: 0.875rem;
  box-shadow: 0 0 20px rgba(143,19,216,0.3); transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.88; }

.contact-channels { display: flex; flex-direction: column; gap: 1rem; }

.channel-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }

.channel-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 1.25rem;
  cursor: pointer; transition: border-color 0.3s;
}
.channel-card:hover { border-color: var(--border-h); }

.channel-icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, color 0.3s;
}
.channel-card:hover .channel-icon-wrap { border-color: var(--border-h); color: var(--pink); }
.channel-icon { width: 22px; height: 22px; }

.channel-label { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.2rem; }
.channel-value { font-size: 1rem; font-weight: 700; transition: color 0.3s; }
.channel-card:hover .channel-value { color: var(--pink); }

.channel-telegram {
  flex: 1; background: var(--gradient); border-radius: 1.25rem;
  padding: 2rem; cursor: pointer; position: relative;
  overflow: hidden; min-height: 140px;
  display: flex; align-items: center; gap: 1.5rem;
  transition: opacity 0.2s;
}
.channel-telegram:hover { opacity: 0.92; }
.channel-telegram-bg {
  position: absolute; right: -20px; bottom: -20px;
  opacity: 0.1; pointer-events: none;
}

.channel-tg-icon-wrap {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.channel-tg-icon { width: 28px; height: 28px; color: #fff; }

.channel-tg-info { position: relative; z-index: 1; }
.channel-tg-label { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-bottom: 0.25rem; }
.channel-tg-handle { font-size: 1.5rem; font-weight: 700; color: #fff; }
.channel-tg-online {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.1); padding: 0.2rem 0.75rem;
  border-radius: 999px; font-size: 0.75rem; color: rgba(255,255,255,0.9);
  margin-top: 0.5rem;
}
.channel-tg-online-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #4ade80;
  animation: pulse 2s infinite;
}

.contact-support {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 1rem; text-align: center;
  font-size: 0.85rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.online-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 4rem 1.25rem 2rem;
}

.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand-logo {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem;
}
.footer-brand-icon {
  width: 40px; height: 40px; background: var(--gradient);
  border-radius: 0.875rem; display: flex; align-items: center;
  justify-content: center;
}
.footer-brand-name { font-size: 1.25rem; font-weight: 700; }
.footer-brand-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; max-width: 400px; margin-bottom: 1.25rem; }
.footer-email { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.footer-email:hover { color: var(--pink); }

.footer-col h4 {
  font-size: 0.8rem; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }
.footer-col ul li button,
.footer-col ul li a {
  font-size: 0.875rem; color: var(--muted);
  transition: color 0.2s; text-align: left;
}
.footer-col ul li button:hover,
.footer-col ul li a:hover { color: var(--pink); }

.footer-security-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--muted);
}
.footer-security-icon { width: 18px; height: 18px; color: var(--pink); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; flex-direction: column; gap: 1rem; align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

.footer-copyright { font-size: 0.8rem; color: #6b7280; }

.system-status {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: #6b7280;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }

/* =============================================
   SCROLL ANIMATION HELPER
   ============================================= */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   ICON SVG INLINE HELPER
   ============================================= */
.icon { display: inline-block; vertical-align: middle; }

/* =============================================
   PAGES (terms, privacy, etc.)
   ============================================= */
.page-wrapper { padding: 9rem 1.25rem 5rem; min-height: 100vh; }
.page-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 0.5rem; }
.page-updated { font-size: 0.875rem; color: var(--muted); margin-bottom: 3rem; }
.page-content h3 { font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.75rem; color: var(--pink); }
.page-content p, .page-content li { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 0.5rem; }
.page-content ul { padding-left: 1.5rem; }
.page-back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--pink); font-weight: 600; margin-bottom: 2rem; font-size: 0.9rem; cursor: pointer; }
.page-back:hover { opacity: 0.8; }
