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

:root {
  --primary: #6820EC;
  --secondary: #2563EB;
  --primary-light: #f0e9fd;
  --secondary-light: #eff6ff;
  --primary-dark: #4e15b8;
  --secondary-dark: #1a4fc9;
  --bg: #0a0a12;
  --bg-card: #12121f;
  --bg-card2: #1a1a2e;
  --text: #f0f0f8;
  --text-muted: #9090b0;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===========================
   REUSABLE
=========================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.section-tag.light { color: #fff; background: rgba(255,255,255,0.15); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* ===========================
   HEADER
=========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6%;
  background: rgba(10,10,18,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.navbar {
  display: flex;
  gap: 2rem;
}

.navbar a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar a:hover, .navbar a.active { color: var(--text); }
.navbar a:hover::after, .navbar a.active::after { width: 100%; }

.lang-switches {
    display: flex;
    gap: 0.5rem;
    margin-left: 4rem;
}

.lang-switches .lang-btn {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border: 2px solid var(--primary-dark);
    color: var(--primary);        /* visible text color */
    border-radius: 0.4rem;
    margin-left: 0;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.lang-switches .lang-btn:hover {
    background-color: var(--primary-dark);
    color: #fff;                        /* white text on hover */
}

.lang-switches .lang-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;                        /* white text when active */
}

.btn-header {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  padding: 10px 22px;
  border-radius: 8px;
  transition: var(--transition);
}
.btn-header:hover { background: var(--primary-dark); }

#menu-icon {
  font-size: 1.6rem;
  cursor: pointer;
  display: none;
  color: var(--text);
}

/* ===========================
   HOME
=========================== */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 10rem 6% 6rem;
  position: relative;
  overflow: hidden;
}

.home-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(104,32,236,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.home-bg-shape2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.home-content {
  max-width: 580px;
  z-index: 1;
}

.home-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #3B6D11;
  background: #eaf3de;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.home-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.home-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.home-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.home-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* PHONE MOCKUP */
.home-img { z-index: 1; flex-shrink: 0; }

.phone-mockup {
  width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 20px 16px;
  position: relative;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.phone-screen { padding: 8px 4px; }

.phone-status-bar {
  width: 80px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin: 0 auto 20px;
}

.phone-app-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin: 0 auto 10px;
}

.phone-app-name {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.phone-progress-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.phone-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4px;
}

.phone-progress-fill {
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  animation: progress-anim 3s ease-in-out infinite alternate;
}

@keyframes progress-anim {
  from { width: 72%; }
  to { width: 84%; }
}

.phone-progress-pct {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-align: right;
  margin-bottom: 16px;
}

.phone-steps { display: flex; flex-direction: column; gap: 8px; }

.phone-step {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid transparent;
}

.phone-step i { font-size: 14px; }

.phone-step.done {
  color: #639922;
  background: rgba(99, 153, 34, 0.08);
  border-color: rgba(99, 153, 34, 0.2);
}

.phone-step.active {
  color: var(--primary);
  background: rgba(104,32,236,0.08);
  border-color: rgba(104,32,236,0.25);
}

/* ===========================
   ABOUT
=========================== */
.about {
  padding: 7rem 6%;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: var(--transition);
}

.about-card:hover {
  border-color: rgba(104,32,236,0.3);
  transform: translateY(-4px);
}

.about-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   PROFIT / ROI ESTIMATOR
=========================== */
.profit {
  padding: 7rem 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.profit-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(37,99,235,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.profit-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  max-width: 1050px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 860px) {
  .profit-container { grid-template-columns: 1fr; }
}

/* Inputs panel */
.profit-inputs {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.profit-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Plan tabs */
.profit-plan-tabs {
  display: flex;
  gap: 6px;
}

.profit-tab {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.profit-tab:hover { border-color: var(--primary); color: var(--primary); }

.profit-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Sliders */
.profit-slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profit-slider-row input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.profit-slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 2px solid var(--bg);
}

.profit-slider-val {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 60px;
  text-align: right;
}

/* Ads toggle row */
.profit-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
}

.profit-toggle-row span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.profit-switch { position: relative; display: inline-block; width: 44px; height: 24px; cursor: pointer; }
.profit-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.profit-slider-track {
  position: absolute; inset: 0;
  background: var(--border);
  border-radius: 24px;
  transition: 0.3s;
}
.profit-slider-thumb {
  position: absolute;
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
  display: block;
}
.profit-switch input:checked ~ .profit-slider-track { background: var(--primary); }
.profit-switch input:checked ~ .profit-slider-track .profit-slider-thumb { transform: translateX(20px); }

/* Traffic select */
.profit-group select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
.profit-group select:focus { border-color: var(--primary); }
.profit-group select option { background: var(--bg-card); }

/* Results panel */
.profit-results {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#metricInvestment {
  color: rgba(37, 99, 235, 0.9);
}

#metricRevenue {
  color: rgba(104, 32, 236, 0.9);
}

.profit-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.profit-metric {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profit-metric-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profit-metric-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.profit-metric-val.positive { color: #639922; }
.profit-metric-val.negative { color: #e53e3e; }

.profit-chart-wrap {
  position: relative;
  width: 100%;
}

.profit-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* ===========================
   PLANS
=========================== */
.plans {
  padding: 7rem 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.plans-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(104,32,236,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
  position: relative;
  transition: var(--transition);
}

.plan-card:hover { transform: translateY(-4px); }

.plan-card.featured {
  border-color: var(--primary);
  background: var(--bg-card2);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.plan-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.plan-icon.featured-icon {
  background: var(--primary);
  color: #fff;
}

.plan-icon.pro-icon {
  background: var(--secondary-light);
  color: var(--secondary);
}

.plan-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.plan-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}

.plan-features li i {
  font-size: 16px;
  color: #639922;
  flex-shrink: 0;
}

.plan-features li.muted { color: var(--text-muted); }
.plan-features li.muted i { color: var(--text-muted); }

.price-amount {
  color: #f0f0f8 !important;
}

.price-currency,
.price-note {
  color: #9090b0 !important;
}

.btn-plan {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text);
  transition: var(--transition);
  margin-top: 10px;
}

.btn-plan:hover { border-color: var(--primary); color: var(--primary); }

.btn-plan.featured-btn {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn-plan.featured-btn:hover { background: var(--primary-dark); }

/* ===========================
   FEATURES
=========================== */
.features {
  padding: 7rem 6%;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.feature-item:hover { transform: translateY(-4px); border-color: rgba(104,32,236,0.25); }
.feature-item:hover::before { transform: scaleX(1); }

.feature-item > i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   POLICY
=========================== */
.policy {
  padding: 7rem 6%;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.policy-inner { max-width: 1100px; margin: 0 auto; }

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.policy-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.policy-block:hover { border-color: rgba(104,32,236,0.3); }

.policy-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 1rem;
}

.policy-block h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.policy-block p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.policy-block a {
  color: var(--secondary);
  text-decoration: underline;
}

.policy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.policy-footer p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.policy-footer strong { color: var(--text); }

.policy-footer a.btn-outline {
  flex-shrink: 0;
  color: var(--primary-light);
  border-color: var(--primary);
}

.policy-footer a.btn-outline:hover {
  flex-shrink: 0;
  color: var(--primary);
  border-color: var(--primary);
}

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 7rem 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(37,99,235,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.contact .section-title.light,
.contact .section-sub.light { color: var(--text-muted); }
.contact .section-title.light { color: var(--text); }

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.5rem;
}

.contact-item > i {
  font-size: 22px;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item a {
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}
.contact-item a:hover { color: var(--primary); }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }

.form-group textarea { resize: vertical; }
.form-group select option { background: var(--bg-card); }

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-brand { max-width: 320px; }

.footer-brand .logo { margin-bottom: 1rem; display: inline-flex; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #639922;
  background: rgba(99,153,34,0.1);
  padding: 5px 12px;
  border-radius: 20px;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }

.back-top {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}
.back-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .home { flex-direction: column; text-align: center; padding-top: 8rem; }
  .home-content { max-width: 100%; }
  .home-btns { justify-content: center; }
  .home-stats { justify-content: center; }
  .contact-box { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(10,10,18,0.98); flex-direction: column; padding: 1.5rem; gap: 1rem; border-bottom: 1px solid var(--border); }
  .navbar.active { display: flex; }
  .btn-header { display: none; }
  #menu-icon { display: block; }
  .footer-top { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
  .policy-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .home-content h1 { font-size: 1.9rem; }
  .plans-grid { grid-template-columns: 1fr; }
}

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

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-success { border-color: #639922; }
.toast-success i { color: #639922; }
.toast-error { border-color: #e53e3e; }
.toast-error i { color: #e53e3e; }
