/* ======================================
   OnlineMizban - Web Hosting Template
   Persian RTL - Dark + Light Theme
   ====================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #050816;
  --bg-secondary: #0a1124;
  --bg-tertiary: #131a2e;
  --bg-card: rgba(19, 26, 46, 0.6);
  --accent-cyan: #00e5ff;
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-pink: #ec4899;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(0, 229, 255, 0.15);
  --border-strong: rgba(0, 229, 255, 0.35);
  --glow-cyan: 0 0 40px rgba(0, 229, 255, 0.35);
  --glow-purple: 0 0 40px rgba(139, 92, 246, 0.35);
  --gradient-1: linear-gradient(135deg, #00e5ff 0%, #3b82f6 100%);
  --gradient-2: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --gradient-text: linear-gradient(135deg, #00e5ff 0%, #8b5cf6 100%);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ---------- LIGHT THEME ---------- */
[data-theme="light"] {
  --bg-primary: #f6f8fc;
  --bg-secondary: #ffffff;
  --bg-tertiary: #eef2f7;
  --bg-card: rgba(255, 255, 255, 0.78);
  --accent-cyan: #0891b2;
  --accent-blue: #2563eb;
  --accent-purple: #7c3aed;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: rgba(8, 145, 178, 0.18);
  --border-strong: rgba(8, 145, 178, 0.4);
  --glow-cyan: 0 0 40px rgba(8, 145, 178, 0.2);
  --glow-purple: 0 0 40px rgba(124, 58, 237, 0.18);
  --gradient-1: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  --gradient-2: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --gradient-text: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
  --shadow-card: 0 8px 24px rgba(15, 23, 42, 0.06);
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
  font-size: 15px;
  min-height: 100vh;
  position: relative;
  transition: background 0.4s ease, color 0.4s ease;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(8, 145, 178, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 145, 178, 0.08) 1px, transparent 1px);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ---------- Containers & Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

section { padding: 90px 0; position: relative; z-index: 1; }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 60px; }

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.05);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

[data-theme="light"] .section-tag { background: rgba(8, 145, 178, 0.06); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.section-title .grad,
.hero h1 .grad,
.about-text h2 .grad,
.page-header h1 .grad {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle { color: var(--text-secondary); font-size: 16px; line-height: 1.8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: none;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-1);
  color: #001220;
  box-shadow: 0 6px 24px rgba(0, 229, 255, 0.25);
}

[data-theme="light"] .btn-primary { box-shadow: 0 6px 20px rgba(8, 145, 178, 0.25); }

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0, 229, 255, 0.45); }
[data-theme="light"] .btn-primary:hover { box-shadow: 0 10px 28px rgba(8, 145, 178, 0.35); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.05);
  transform: translateY(-2px);
}

[data-theme="light"] .btn-outline:hover { background: rgba(8, 145, 178, 0.06); }

.btn-icon { width: 18px; height: 18px; }

/* ---------- Theme Toggle ---------- */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.06);
}

[data-theme="light"] .theme-toggle:hover { background: rgba(8, 145, 178, 0.06); }

.theme-toggle svg {
  width: 18px;
  height: 18px;
  position: absolute;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.theme-toggle .icon-moon { opacity: 1; transform: rotate(0) scale(1); }
.theme-toggle .icon-sun { opacity: 0; transform: rotate(180deg) scale(0.4); }

[data-theme="light"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(-180deg) scale(0.4); }
[data-theme="light"] .theme-toggle .icon-sun { opacity: 1; transform: rotate(0) scale(1); }

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding: 18px 0;
  transition: var(--transition);
  background: rgba(5, 8, 22, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

[data-theme="light"] .header { background: rgba(255, 255, 255, 0.7); }

.header.scrolled { border-bottom-color: var(--border); background: rgba(5, 8, 22, 0.92); }

[data-theme="light"] .header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

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

.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 20px; }

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gradient-1);
  display: grid; place-items: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.35);
}

[data-theme="light"] .logo-mark { box-shadow: 0 6px 20px rgba(8, 145, 178, 0.3); }

.logo-mark svg { width: 22px; height: 22px; color: #001220; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .fa { font-size: 18px; font-weight: 800; color: var(--text-primary); }
.logo-text .en {
  font-size: 11px; color: var(--accent-cyan);
  letter-spacing: 1.5px; font-family: ui-monospace, monospace;
}

.nav-menu { display: flex; align-items: center; gap: 6px; }

.nav-menu a {
  padding: 8px 14px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active { color: var(--accent-cyan); background: rgba(0, 229, 255, 0.06); }
[data-theme="light"] .nav-menu a:hover, [data-theme="light"] .nav-menu a.active { background: rgba(8, 145, 178, 0.07); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { padding: 9px 20px; font-size: 14px; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  align-items: center;
  justify-content: center;
}

.menu-toggle svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero { padding: 160px 0 100px; position: relative; overflow: hidden; }

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 50%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.18), transparent 70%);
  transform: translate(50%, -30%);
  pointer-events: none;
  filter: blur(40px);
}

[data-theme="light"] .hero::before { background: radial-gradient(circle, rgba(8, 145, 178, 0.16), transparent 70%); }

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

[data-theme="light"] .hero::after { background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 70%); }

.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--border-strong);
  font-size: 13px;
  color: var(--accent-cyan);
  margin-bottom: 24px;
}

[data-theme="light"] .hero-badge { background: rgba(8, 145, 178, 0.08); }

.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-cyan); box-shadow: 0 0 12px var(--accent-cyan); animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.25; margin-bottom: 22px; color: var(--text-primary); }
.hero p { font-size: 17px; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.9; max-width: 540px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 32px; border-top: 1px solid var(--border); }

.hero-stat .num {
  font-size: 28px; font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.hero-stat .label { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }

/* Hero Visual */
.hero-visual { position: relative; height: 480px; }

.hero-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(19, 26, 46, 0.9), rgba(10, 17, 36, 0.9));
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 248, 252, 0.95));
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.hero-card-main { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 320px; z-index: 2; animation: float 6s ease-in-out infinite; }
.hero-card-secondary { top: 5%; right: 0; width: 200px; animation: floatAlt 7s ease-in-out infinite reverse; }
.hero-card-tertiary { bottom: 5%; left: 0; width: 220px; animation: floatAlt 8s ease-in-out infinite; }

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

.server-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px; border-radius: 10px;
  background: rgba(0, 229, 255, 0.04);
  margin-bottom: 10px;
}
[data-theme="light"] .server-row { background: rgba(8, 145, 178, 0.05); }

.server-row:last-child { margin-bottom: 0; }

.server-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--gradient-1);
  display: grid; place-items: center;
  color: #001220; font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}

.server-info { flex: 1; min-width: 0; }
.server-info .t1 { font-size: 13px; font-weight: 600; }
.server-info .t2 { font-size: 11px; color: var(--text-muted); font-family: ui-monospace, monospace; }

.server-status { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e; }

.mini-stat-label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.mini-stat-value {
  font-size: 22px; font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mini-bar { height: 4px; background: rgba(0, 229, 255, 0.1); border-radius: 2px; margin-top: 8px; overflow: hidden; }
[data-theme="light"] .mini-bar { background: rgba(8, 145, 178, 0.12); }
.mini-bar-fill { height: 100%; background: var(--gradient-1); width: 78%; border-radius: 2px; }

/* ---------- Cards Grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.feature-card {
  padding: 30px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .feature-card { background: rgba(255, 255, 255, 0.85); box-shadow: var(--shadow-card); }

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.08), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

[data-theme="light"] .feature-card::before { background: radial-gradient(circle at top right, rgba(8, 145, 178, 0.06), transparent 60%); }

.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--border-strong);
}
[data-theme="light"] .feature-card:hover { box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08), 0 0 0 1px var(--border-strong); }

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(59, 130, 246, 0.15));
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: var(--accent-cyan);
  position: relative; z-index: 1;
}

[data-theme="light"] .feature-icon { background: linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(37, 99, 235, 0.1)); }

.feature-icon svg { width: 26px; height: 26px; }

.feature-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.feature-card p { color: var(--text-secondary); font-size: 14.5px; line-height: 1.85; position: relative; z-index: 1; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(10px);
}
[data-theme="light"] .service-card { background: rgba(255, 255, 255, 0.85); box-shadow: var(--shadow-card); }

.service-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4); }
[data-theme="light"] .service-card:hover { box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1); }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: #001220;
  background: var(--gradient-1);
  box-shadow: 0 10px 24px rgba(0, 229, 255, 0.3);
}
[data-theme="light"] .service-icon { box-shadow: 0 10px 22px rgba(8, 145, 178, 0.28); }
.service-icon.purple { background: var(--gradient-2); box-shadow: 0 10px 24px rgba(139, 92, 246, 0.3); color: #fff; }
[data-theme="light"] .service-icon.purple { box-shadow: 0 10px 22px rgba(124, 58, 237, 0.28); }
.service-icon svg { width: 32px; height: 32px; }

.service-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--text-secondary); margin-bottom: 22px; font-size: 15px; line-height: 1.85; }

.service-features { margin-bottom: 24px; }
.service-features li { padding: 6px 0; font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; }
.service-features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
[data-theme="light"] .service-features li::before {
  background-color: rgba(8, 145, 178, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230891b2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-cyan); font-weight: 600; font-size: 14px; transition: var(--transition); }
.service-link:hover { gap: 12px; }
.service-link svg { width: 16px; height: 16px; }

/* ---------- Hosting Plans ---------- */
.plans-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 50px; flex-wrap: wrap; }

.tab-btn {
  padding: 11px 28px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px; font-weight: 600;
  transition: var(--transition);
}
[data-theme="light"] .tab-btn { background: rgba(255, 255, 255, 0.7); }

.tab-btn.active { background: var(--gradient-1); color: #001220; border-color: transparent; }
.tab-btn:hover:not(.active) { border-color: var(--border-strong); color: var(--accent-cyan); }

.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.plan-card {
  padding: 32px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column;
}
[data-theme="light"] .plan-card { background: rgba(255, 255, 255, 0.85); box-shadow: var(--shadow-card); }

.plan-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4); }
[data-theme="light"] .plan-card:hover { box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1); }

.plan-card.featured {
  border-color: var(--accent-cyan);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.08), var(--bg-card));
  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.15);
}
[data-theme="light"] .plan-card.featured {
  background: linear-gradient(180deg, rgba(8, 145, 178, 0.07), rgba(255, 255, 255, 0.92));
  box-shadow: 0 20px 40px rgba(8, 145, 178, 0.15);
}

.plan-card.featured::before {
  content: 'پیشنهاد ویژه';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-1);
  color: #001220;
  font-size: 12px; font-weight: 700;
  padding: 5px 16px; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 229, 255, 0.4);
}

.plan-name { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.plan-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 22px; min-height: 38px; }

.plan-price { display: flex; align-items: baseline; gap: 6px; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--border); }
.plan-price .num {
  font-size: 34px; font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.plan-price .unit { font-size: 13px; color: var(--text-muted); }

.plan-features { margin-bottom: 24px; flex: 1; }
.plan-features li { padding: 8px 0; font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; }
.plan-features li svg { width: 18px; height: 18px; color: var(--accent-cyan); flex-shrink: 0; }
.plan-features li.dim { color: var(--text-muted); }
.plan-features li.dim svg { color: var(--text-muted); }

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

/* ---------- About Page ---------- */
.about-hero { padding: 160px 0 80px; text-align: center; position: relative; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.about-text h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; margin-bottom: 18px; line-height: 1.3; }
.about-text p { color: var(--text-secondary); margin-bottom: 14px; line-height: 1.9; }

.about-visual {
  position: relative; height: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
}
[data-theme="light"] .about-visual { background: rgba(255, 255, 255, 0.9); box-shadow: var(--shadow-card); }

.about-visual-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; height: 100%; }

.about-stat-card {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(139, 92, 246, 0.04));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
}
[data-theme="light"] .about-stat-card { background: linear-gradient(135deg, rgba(8, 145, 178, 0.07), rgba(124, 58, 237, 0.04)); }

.about-stat-card .num {
  font-size: 32px; font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.about-stat-card .label { font-size: 13px; color: var(--text-secondary); margin-top: auto; padding-top: 12px; }
.about-stat-card .icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(0, 229, 255, 0.12);
  display: grid; place-items: center;
  color: var(--accent-cyan); margin-bottom: 14px;
}
[data-theme="light"] .about-stat-card .icon { background: rgba(8, 145, 178, 0.12); }
.about-stat-card .icon svg { width: 18px; height: 18px; }

/* Mission Vision */
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.mv-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
[data-theme="light"] .mv-card { background: rgba(255, 255, 255, 0.85); box-shadow: var(--shadow-card); }

.mv-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }

.mv-card .num {
  position: absolute; top: 20px; left: 20px;
  font-size: 56px; font-weight: 800;
  color: rgba(0, 229, 255, 0.08); line-height: 1;
}
[data-theme="light"] .mv-card .num { color: rgba(8, 145, 178, 0.1); }

.mv-card .icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--gradient-1);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: #001220;
  position: relative; z-index: 1;
}
.mv-card .icon svg { width: 26px; height: 26px; }
.mv-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; position: relative; }
.mv-card p { color: var(--text-secondary); font-size: 14.5px; line-height: 1.9; position: relative; }

/* ---------- Contact Page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 36px; align-items: start; }

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  backdrop-filter: blur(10px);
}
[data-theme="light"] .contact-info-card { background: rgba(255, 255, 255, 0.9); box-shadow: var(--shadow-card); }

.contact-info-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.contact-info-card .sub { color: var(--text-secondary); font-size: 14.5px; margin-bottom: 28px; }

.contact-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-item .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}
[data-theme="light"] .contact-item .ic { background: rgba(8, 145, 178, 0.09); }
.contact-item .ic svg { width: 20px; height: 20px; }
.contact-item .label { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.contact-item .value {
  font-size: 15px; font-weight: 600; color: var(--text-primary);
  direction: ltr; text-align: right; unicode-bidi: plaintext;
}
.contact-item a.value:hover { color: var(--accent-cyan); }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}
[data-theme="light"] .contact-form-card { background: rgba(255, 255, 255, 0.9); box-shadow: var(--shadow-card); }

.contact-form-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.contact-form-card .sub { color: var(--text-secondary); font-size: 14.5px; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text-secondary); }

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14.5px;
  transition: var(--transition);
  outline: none;
}
[data-theme="light"] .form-control { background: #f8fafc; }

.form-control:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.12);
}
[data-theme="light"] .form-control:focus { background: #ffffff; box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12); }

textarea.form-control { resize: vertical; min-height: 140px; line-height: 1.7; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}
[data-theme="light"] .faq-item { background: rgba(255, 255, 255, 0.85); }

.faq-item.open { border-color: var(--border-strong); background: rgba(19, 26, 46, 0.85); }
[data-theme="light"] .faq-item.open { background: rgba(255, 255, 255, 0.96); box-shadow: var(--shadow-card); }

.faq-q {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 15.5px; font-weight: 600;
  text-align: right;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: inherit;
}
.faq-q .icn {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(0, 229, 255, 0.08);
  display: grid; place-items: center;
  color: var(--accent-cyan);
  transition: var(--transition);
  flex-shrink: 0;
}
[data-theme="light"] .faq-q .icn { background: rgba(8, 145, 178, 0.1); }

.faq-item.open .faq-q .icn { background: var(--gradient-1); color: #001220; transform: rotate(45deg); }
.faq-q .icn svg { width: 16px; height: 16px; }

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.9;
}
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 300px; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
[data-theme="light"] .cta-banner { background: linear-gradient(135deg, rgba(8, 145, 178, 0.08), rgba(124, 58, 237, 0.06)); }

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.2), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.cta-banner h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-banner p { color: var(--text-secondary); font-size: 16px; margin-bottom: 28px; max-width: 600px; margin-inline: auto; position: relative; z-index: 1; }
.cta-banner .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.footer {
  padding: 70px 0 24px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 5;
}
[data-theme="light"] .footer { background: #f1f5f9; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }

.footer-about p { color: var(--text-secondary); font-size: 14.5px; margin: 18px 0 22px; line-height: 1.9; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
[data-theme="light"] .footer-socials a { background: rgba(8, 145, 178, 0.06); }

.footer-socials a:hover { background: var(--gradient-1); color: #001220; border-color: transparent; transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; }

.footer-col h4 { font-size: 15px; font-weight: 700; margin-bottom: 18px; color: var(--text-primary); }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: var(--text-secondary); font-size: 14px; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--accent-cyan); gap: 10px; }

.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 13.5px; color: var(--text-secondary); }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--accent-cyan); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--accent-cyan); }
.footer-contact-item .ltr { direction: ltr; unicode-bidi: plaintext; }

/* Trust badges */
.footer-trust {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding: 24px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
}
[data-theme="light"] .footer-trust { background: #ffffff; }

.trust-badge {
  width: 110px; height: 130px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.06), rgba(139, 92, 246, 0.03));
  border: 1px dashed var(--border-strong);
  border-radius: 12px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 11.5px; text-align: center;
  padding: 10px;
  transition: var(--transition);
  cursor: pointer;
}
[data-theme="light"] .trust-badge { background: linear-gradient(135deg, rgba(8, 145, 178, 0.05), rgba(124, 58, 237, 0.03)); }

.trust-badge:hover { border-color: var(--accent-cyan); border-style: solid; background: rgba(0, 229, 255, 0.05); }
[data-theme="light"] .trust-badge:hover { background: rgba(8, 145, 178, 0.06); }

.trust-badge svg { width: 38px; height: 38px; color: var(--accent-cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  gap: 14px;
  color: var(--text-muted);
  font-size: 13.5px;
}
.footer-bottom a { color: var(--accent-cyan); }

/* ---------- Page Header ---------- */
.page-header { padding: 150px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(0, 229, 255, 0.12), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
[data-theme="light"] .page-header::before { background: radial-gradient(ellipse, rgba(8, 145, 178, 0.1), transparent 70%); }

.page-header h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; margin-bottom: 14px; line-height: 1.25; }
.page-header p { color: var(--text-secondary); font-size: 17px; max-width: 640px; margin: 0 auto; }

.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 22px;
}
[data-theme="light"] .breadcrumb { background: rgba(8, 145, 178, 0.06); }

.breadcrumb a { color: var(--accent-cyan); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .grid-4, .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .services-grid, .mv-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .hero { padding: 130px 0 60px; }
  .page-header { padding: 130px 0 50px; }

  .nav-menu, .nav-actions .btn-outline { display: none; }
  .menu-toggle { display: inline-flex; }

  .nav-menu.show {
    display: flex;
    position: absolute;
    top: 100%;
    inset-inline: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    margin-top: 10px;
    gap: 4px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  }
  [data-theme="light"] .nav-menu.show { box-shadow: 0 24px 50px rgba(15, 23, 42, 0.15); }

  .nav-menu.show a { padding: 12px 14px; }

  .grid-4, .grid-3, .plans-grid, .services-grid, .mv-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 14px; }
  .hero-stat .num { font-size: 22px; }
  .hero-visual { height: 420px; }
  .hero-card-main { width: 280px; }
  .hero-card-secondary, .hero-card-tertiary { width: 180px; }

  .cta-banner { padding: 40px 24px; }
  .contact-form-card { padding: 28px 22px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 32px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .plans-tabs { gap: 6px; }
  .tab-btn { padding: 9px 18px; font-size: 13px; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
