/*
Theme Name: Moa TV Store
Theme URI: https://moatv.store
Author: Moa TV
Author URI: https://moatv.store
Description: Premium IPTV streaming service theme for Moa TV Store — modern light design with SEO optimization, Schema markup, and complete page templates.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: moatv
Tags: iptv, streaming, entertainment, custom-menu, featured-images
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
*/

/* ============================================================
   DESIGN SYSTEM — Refined Warm Luxury / Premium SaaS
   ============================================================ */
:root {
  /* Brand Palette */
  --gold: #F7A638;
  --gold-hover: #E8941F;
  --gold-light: #FFF5E6;
  --gold-glow: rgba(247, 166, 56, 0.12);

  /* Neutrals */
  --white: #FFFFFF;
  --cream: #FDFCFA;
  --sand: #F7F5F0;
  --mist: #EDEBE6;
  --stone: #C4BFB5;
  --slate: #8A8580;
  --charcoal: #4A4744;
  --ink: #1B1B1F;

  /* Semantic */
  --success: #2ECC71;
  --surface: var(--white);
  --surface-alt: var(--sand);

  /* Typography */
  --font-display: 'Clash Display', 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: 120px;
  --container: 1180px;

  /* Effects */
  --shadow-xs: 0 1px 3px rgba(27,27,31,0.04);
  --shadow-sm: 0 4px 12px rgba(27,27,31,0.06);
  --shadow-md: 0 8px 30px rgba(27,27,31,0.08);
  --shadow-lg: 0 20px 60px rgba(27,27,31,0.10);
  --shadow-gold: 0 8px 30px rgba(247,166,56,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;
  --radius-full: 100px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold-hover); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER — Floating glass bar
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease);
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(27,27,31,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(27,27,31,0.06);
  border-radius: var(--radius-full);
  padding: 8px 8px 8px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}

.site-header.scrolled .header-inner {
  background: transparent;
  backdrop-filter: none;
  border-color: transparent;
  box-shadow: none;
  border-radius: 0;
}

.site-logo img {
  height: 42px;
  width: auto;
  transition: transform 0.3s var(--ease);
}

.site-logo:hover img { transform: scale(1.04); }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}

.main-nav a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease);
  position: relative;
}

.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--ink);
  background: var(--sand);
}

.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 10px 26px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease);
  text-align: center;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--mist);
}

.btn-outline:hover {
  border-color: var(--ink);
  background: var(--sand);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--ink);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* ============================================================
   HERO — Dramatic editorial
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

/* Decorative mesh gradient */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at 30% 40%, var(--gold-glow) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(247,166,56,0.06) 0%, transparent 50%);
  border-radius: 50%;
  animation: meshFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247,166,56,0.05) 0%, transparent 60%);
  border-radius: 50%;
  animation: meshFloat 15s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.98); }
}

/* Subtle grid texture */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,27,31,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,27,31,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--mist);
  color: var(--charcoal);
  padding: 7px 18px 7px 10px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  margin-bottom: 22px;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.hero h1 .text-gold {
  color: var(--gold);
  position: relative;
}

.hero h1 .text-gold::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--gold-glow);
  border-radius: 4px;
  z-index: -1;
}

.hero p {
  font-size: 1.12rem;
  color: var(--slate);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.75;
}

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero right — visual card */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-card-logo {
  height: 60px;
  width: auto;
  margin-bottom: 28px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hero-stat {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-stat-value.gold { color: var(--gold); }

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 4px;
  font-weight: 500;
}

/* Floating badge on card */
.hero-float-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--gold);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  animation: floatBadge 3s ease-in-out infinite;
}

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

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-light { background: var(--white); }
.section-alt { background: var(--sand); }
.section-cream { background: var(--cream); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  color: var(--gold-hover);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-header p {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   FEATURES — Icon cards
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hover));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: all 0.4s var(--ease);
}

.feature-card:hover .feature-icon {
  background: var(--gold);
  transform: scale(1.05);
}

.feature-card:hover .feature-icon span {
  filter: brightness(10);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 700;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ============================================================
   ABOUT — Split layout
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-tag { margin-bottom: 16px; }

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.about-content > p {
  color: var(--slate);
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.about-list {
  list-style: none;
  margin-bottom: 32px;
}

.about-list li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  font-weight: 500;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--gold-light);
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.about-list li::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Decorative corner */
.about-image::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  opacity: 0.3;
  z-index: -1;
}

/* ============================================================
   PRICING — Elegant cards
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
  transform: scale(1.04);
  z-index: 2;
}

.pricing-card.featured .pricing-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 5px 20px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.pricing-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}

.pricing-duration {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-price sup {
  font-size: 1.1rem;
  vertical-align: super;
  margin-right: 2px;
  font-weight: 600;
}

.pricing-divider {
  height: 1px;
  background: var(--mist);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}

.pricing-features li {
  padding: 7px 0;
  padding-left: 26px;
  position: relative;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ============================================================
   WHY CHOOSE US — Clean grid
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: transparent;
}

.why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.why-card h4 {
  font-size: 0.98rem;
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 700;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(247,166,56,0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247,166,56,0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: var(--stone);
  margin-bottom: 32px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn { position: relative; z-index: 1; }

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--mist);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
}

.testimonial-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--slate);
}

/* ============================================================
   FAQ — Clean accordion
   ============================================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
  transition: all 0.35s var(--ease);
}

.faq-item:hover { border-color: var(--stone); }
.faq-item.active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold-glow); }

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.3s var(--ease);
  user-select: none;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--charcoal);
  transition: all 0.35s var(--ease);
}

.faq-item.active .faq-toggle {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.35s var(--ease);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 24px;
}

.faq-answer p {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================================
   FREE TRIAL STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  counter-reset: steps;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-xl);
  padding: 36px 24px 28px;
  text-align: center;
  counter-increment: steps;
  position: relative;
  transition: all 0.4s var(--ease);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  color: var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 700;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
}

.step-code {
  display: block;
  background: var(--sand);
  border: 1px solid var(--mist);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--gold-hover);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  word-break: break-all;
}

/* ============================================================
   RESELLER BENEFITS
   ============================================================ */
.reseller-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.reseller-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.reseller-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.reseller-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.reseller-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 700;
}

.reseller-card p {
  font-size: 0.88rem;
  color: var(--slate);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-card {
  background: var(--sand);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: all 0.35s var(--ease);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-info-card h4 {
  font-size: 0.82rem;
  color: var(--slate);
  font-weight: 500;
  font-family: var(--font-body);
  margin-bottom: 2px;
}

.contact-info-card a,
.contact-info-card .info-value {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--sand);
  border: 1px solid var(--mist);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 14px;
  transition: all 0.3s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--gold-glow);
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--stone); }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-content {
  max-width: 760px;
  margin: 0 auto;
}

.policy-content h3 {
  font-size: 1.25rem;
  margin: 40px 0 14px;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
}

.policy-content h3:first-child { margin-top: 0; }

.policy-content p { margin-bottom: 14px; color: var(--charcoal); font-size: 0.95rem; }

.policy-content ul { margin: 10px 0 20px 24px; }
.policy-content ul li { margin-bottom: 8px; color: var(--charcoal); font-size: 0.93rem; }
.policy-content strong { color: var(--ink); }

/* ============================================================
   PAGE HEADER — Clean with subtle gradient
   ============================================================ */
.page-header {
  padding: 150px 0 60px;
  text-align: center;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 10px;
  position: relative;
}

.page-header p {
  color: var(--slate);
  font-size: 1.05rem;
  position: relative;
}

.breadcrumbs {
  position: relative;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--stone);
}

.breadcrumbs a { color: var(--gold); font-weight: 500; }

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.blog-card-img { height: 200px; object-fit: cover; width: 100%; }
.blog-card-content { padding: 24px; }
.blog-card-meta { font-size: 0.78rem; color: var(--stone); margin-bottom: 8px; font-weight: 500; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.88rem; color: var(--slate); margin-bottom: 14px; }
.read-more { color: var(--gold); font-weight: 600; font-size: 0.88rem; }

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.widget {
  background: var(--sand);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.widget h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mist);
  font-family: var(--font-body);
  font-weight: 700;
}

/* ============================================================
   FOOTER — Clean light footer
   ============================================================ */
.site-footer {
  background: var(--sand);
  padding: 80px 0 0;
  border-top: 1px solid var(--mist);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-about p {
  margin: 16px 0 0;
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
}

.footer-logo img { height: 42px; width: auto; }

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--slate);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item span { font-size: 1.1rem; }
.footer-contact-item a,
.footer-contact-item p { color: var(--charcoal); font-weight: 500; }

.footer-bottom {
  border-top: 1px solid var(--mist);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: var(--stone); }
.footer-bottom a { color: var(--slate); }

.footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-bottom-links a { font-size: 0.82rem; color: var(--stone); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   404
   ============================================================ */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 0 80px;
}

.error-page h1 {
  font-size: 8rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.06em;
}

.error-page h2 { font-size: 1.8rem; margin: 10px 0 20px; }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--ink);
  z-index: 99;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-sm);
}

.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-up-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.fade-up-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.fade-up-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.fade-up-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.fade-up-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.fade-up-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.fade-up-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }

/* ============================================================
   ORDER & PAYMENT — Professional Flow
   ============================================================ */

/* Progress Stepper */
.order-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.order-step {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.3s var(--ease);
}

.order-step.active .step-num {
  background: var(--gold);
  color: var(--white);
}

.order-step.completed .step-num {
  background: var(--success);
  color: var(--white);
}

.step-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
}

.order-step.active .step-text,
.order-step.completed .step-text { color: var(--ink); }

.order-step-line {
  flex: 1;
  height: 2px;
  background: var(--mist);
  margin: 0 12px;
  min-width: 30px;
  transition: all 0.3s var(--ease);
}

.order-step-line.active { background: var(--gold); }

/* Order Layout — 2 columns */
.order-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

.order-section-title {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
}

/* Plan Selector Cards */
.plan-selector { display: flex; flex-direction: column; gap: 10px; }

.plan-option {
  cursor: pointer;
  display: block;
}

.plan-option input { display: none; }

.plan-option-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1.5px solid var(--mist);
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  background: var(--white);
}

.plan-option:hover .plan-option-inner {
  border-color: var(--stone);
}

.plan-option.selected .plan-option-inner {
  border-color: var(--gold);
  background: var(--gold-light);
  box-shadow: 0 0 0 1px var(--gold);
}

.plan-option-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-option-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}

.plan-option.selected .plan-option-check {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.plan-option-left strong {
  font-size: 0.95rem;
  color: var(--ink);
  display: block;
}

.plan-option-dur {
  font-size: 0.8rem;
  color: var(--slate);
}

.plan-option-right { text-align: right; }

.plan-option-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
}

.plan-option-save {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(46,204,113,0.1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-top: 2px;
}

/* Order Form */
.order-form label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.order-form .form-group { margin-bottom: 16px; }

.order-form input,
.order-form select {
  width: 100%;
  padding: 13px 16px;
  background: var(--sand);
  border: 1px solid var(--mist);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: all 0.3s var(--ease);
}

.order-form input:focus,
.order-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--gold-glow);
}

.order-form input::placeholder { color: var(--stone); }
.order-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.order-note { font-size: 0.8rem; color: var(--slate); text-align: center; margin-top: 16px; line-height: 1.6; }
.order-note a { font-weight: 600; }

/* Order Summary Card */
.order-summary-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.order-summary-card h3 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
}

.order-summary-logo { margin-bottom: 16px; }
.order-summary-logo img { height: 36px; width: auto; }

.order-summary-plan {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.order-summary-duration {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 8px;
}

.order-summary-divider {
  height: 1px;
  background: var(--mist);
  margin: 16px 0;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.88rem;
}

.order-summary-row span:first-child { color: var(--slate); }
.order-summary-row span:last-child { font-weight: 600; color: var(--ink); }

.order-summary-total {
  display: flex;
  justify-content: space-between;
  padding: 12px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.order-summary-total span:last-child {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-hover);
}

.order-summary-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--mist);
}

.order-summary-badges span {
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 500;
}

/* Payment Layout */
.payment-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.payment-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.payment-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  color: var(--gold-hover);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.payment-qr-section { margin-bottom: 20px; }

.payment-scan-text {
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 16px;
}

.payment-qr {
  background: var(--white);
  border: 2px solid var(--mist);
  border-radius: var(--radius);
  padding: 12px;
  display: inline-block;
}

.payment-qr img { width: 220px; height: 220px; }

.payment-or {
  position: relative;
  text-align: center;
  margin: 24px 0;
}

.payment-or::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--mist);
}

.payment-or span {
  position: relative;
  background: var(--white);
  padding: 0 16px;
  font-size: 0.82rem;
  color: var(--slate);
  font-weight: 500;
}

.payment-address-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.payment-address-box {
  background: var(--sand);
  border: 1px solid var(--mist);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.72rem;
  color: var(--charcoal);
  word-break: break-all;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 14px;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--white);
  padding: 11px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.35s var(--ease);
  margin-bottom: 24px;
}

.copy-btn:hover { background: var(--gold); transform: translateY(-2px); }
.copy-btn.copied { background: var(--success); }

.payment-amount-box {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 24px;
}

.payment-amount-label {
  font-size: 0.78rem;
  color: var(--slate);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.payment-amount-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
}

.payment-amount-value span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  font-family: var(--font-body);
}

.payment-instructions {
  background: var(--gold-light);
  border-radius: var(--radius);
  padding: 22px 24px;
  text-align: left;
}

.payment-instructions h4 {
  font-size: 0.92rem;
  margin-bottom: 12px;
  color: var(--gold-hover);
  font-family: var(--font-body);
  font-weight: 700;
}

.payment-instructions ol { margin-left: 18px; font-size: 0.86rem; color: var(--charcoal); }
.payment-instructions ol li { margin-bottom: 8px; line-height: 1.55; }

.payment-client-info { margin-bottom: 0; }

.payment-client-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 500;
}

.payment-help-card {
  background: var(--sand);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 16px;
  text-align: center;
}

.payment-help-card h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 700;
}

.payment-help-card p {
  font-size: 0.82rem;
  color: var(--slate);
  margin-bottom: 14px;
}

/* Responsive — Order & Payment */
@media (max-width: 768px) {
  .order-layout,
  .payment-layout { grid-template-columns: 1fr; }
  .order-summary-card { position: static; }
  .order-steps { flex-wrap: wrap; gap: 8px; }
  .order-step-line { min-width: 16px; }
  .step-text { display: none; }
}

@media (max-width: 480px) {
  .order-form .form-row { grid-template-columns: 1fr; }
  .payment-card { padding: 28px 20px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.8rem; }
  .hero-container { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .main-nav { display: block; }
  .main-nav > ul { display: none; }

  /* Overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(27,27,31,0);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--ease);
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Sidebar drawer — slides from right */
  .main-nav.active {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 82vw;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 999;
    box-shadow: -8px 0 40px rgba(27,27,31,0.12);
    overflow-y: auto;
    padding: 90px 28px 40px;
    transform: translateX(0);
    transition: transform 0.4s var(--ease);
  }
  .main-nav:not(.active) {
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .main-nav.active ul {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 4px;
    list-style: none;
    width: 100%;
  }
  .main-nav.active a {
    font-size: 1.05rem;
    padding: 14px 18px;
    display: block;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    transition: all 0.25s var(--ease);
    border-bottom: 1px solid var(--mist);
  }
  .main-nav.active a:hover {
    background: var(--sand);
    color: var(--gold);
    border-color: transparent;
  }
  .main-nav.active .nav-cta {
    margin-top: 16px;
    background: var(--gold) !important;
    color: var(--white) !important;
    border-radius: var(--radius-full) !important;
    font-size: 0.95rem !important;
    padding: 14px 28px !important;
    text-align: center !important;
    border-bottom: none !important;
  }
  .mobile-toggle { display: flex; }
  .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .header-inner {
    background: rgba(255,255,255,0.95);
    padding: 10px 16px;
  }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.2rem; }

  .features-grid,
  .testimonials-grid,
  .why-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image::before { display: none; }

  .reseller-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .page-header h1 { font-size: 2rem; }
  .blog-layout { grid-template-columns: 1fr; }

  .cta-banner { padding: 48px 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-buttons { flex-direction: column; }
  .reseller-grid, .steps-grid { grid-template-columns: 1fr; }
  .scroll-top { bottom: 16px; right: 16px; }
}
