/* ===== SUDAR VPN — MAIN STYLES ===== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body.sudar-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  background: #0C0C0E;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background radial glow */
.bg-radial {
  position: fixed;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(10,132,255,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.app-wrapper {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.app-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0;
}

.header-logo-wrap {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

.header-logo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.header-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.2px;
}

.header-subtitle {
  font-size: 12px;
  color: #636366;
}

.header-nav {
  margin-left: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 6px;
}

.nav-list a {
  font-size: 13px;
  font-weight: 500;
  color: #8E8E93;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 200ms ease, color 200ms ease;
}

.nav-list a:hover {
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
}

/* ===== HERO ===== */
.hero-section {
  padding: 52px 0 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(48,209,88,0.08);
  border: 1px solid rgba(48,209,88,0.18);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #30D158;
  letter-spacing: 0.1px;
}

.hero-title {
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-desc {
  font-size: 16px;
  color: #8E8E93;
  line-height: 1.6;
  max-width: 400px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* VPN orb */
.vpn-orb-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.vpn-orb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1E2520, #0E1510);
  border: 1.5px solid rgba(48,209,88,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vpn-orb-label {
  font-size: 13px;
  font-weight: 600;
  color: #30D158;
  letter-spacing: 0.2px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: 16px;
  background: #0A84FF;
  border: 1px solid rgba(255,255,255,0.2);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms cubic-bezier(0.22,1,0.36,1), box-shadow 250ms ease;
  box-shadow: 0 0 24px rgba(10,132,255,0.30), 0 4px 16px rgba(10,132,255,0.20);
}

.btn-primary:hover {
  box-shadow: 0 0 32px rgba(10,132,255,0.45), 0 6px 20px rgba(10,132,255,0.30);
  color: #FFFFFF;
  text-decoration: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  color: #FFFFFF;
  text-decoration: none;
}

/* ===== FEATURES ===== */
.features-section {
  padding: 48px 0;
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  color: #636366;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-card {
  border-radius: 20px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.1px;
}

.feature-desc {
  font-size: 13px;
  color: #8E8E93;
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 0 0 48px;
}

.cta-card {
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.3px;
}

.cta-subtitle {
  font-size: 13px;
  color: #8E8E93;
  margin-top: 3px;
}

.cta-note {
  font-size: 13px;
  color: #636366;
  text-align: center;
}

.cta-note a {
  color: #0A84FF;
  text-decoration: none;
}

/* ===== WP CONTENT ===== */
.wp-content-section {
  padding-bottom: 32px;
}

.wp-content-section h1,
.wp-content-section h2,
.wp-content-section h3 {
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.wp-content-section h1 { font-size: 26px; }
.wp-content-section h2 { font-size: 20px; }
.wp-content-section h3 { font-size: 17px; }

.wp-content-section p {
  font-size: 14px;
  color: #AEAEB2;
  line-height: 1.7;
  margin-bottom: 14px;
}

.wp-content-section a {
  color: #0A84FF;
  text-decoration: none;
}

/* ===== CARDS (from vpn.css) ===== */
.card-premium {
  background: #1A1A1F;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 4px 16px rgba(0,0,0,0.4);
}

.card-premium-elevated {
  background: #202027;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 8px 32px rgba(0,0,0,0.5);
}

/* ===== FOOTER ===== */
.app-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #636366;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 12px;
  color: #3A3A3C;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: #8E8E93;
}

.footer-copy {
  font-size: 11px;
  color: #2C2C2E;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .app-wrapper { padding: 0 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .header-nav { display: none; }
}
