/* ============================================================
   TRADIEZ — Global Design System
   Font: Poppins (loaded via Google Fonts in app.blade.php)
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand colours */
  --green:          #16a34a;
  --green-dark:     #14532d;
  --green-hover:    #15803d;
  --green-light:    #dcfce7;
  --orange:         #f97316;
  --orange-dark:    #c2410c;
  --orange-light:   rgba(249, 115, 22, 0.08);

  /* Neutrals */
  --dark:           #0f172a;
  --dark-2:         #1e293b;
  --text:           #334155;
  --text-light:     #64748b;
  --text-muted:     #94a3b8;
  --border:         #e2e8f0;
  --surface:        #f8fafc;
  --white:          #ffffff;

  /* Gradients */
  --grad-green:     linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  --grad-dark:      linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);

  /* Shadows */
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow:         0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:      0 8px 28px rgba(0,0,0,0.12);
  --shadow-lg:      0 16px 48px rgba(0,0,0,0.15);
  --shadow-green:   0 4px 20px rgba(22,163,74,0.28);

  /* Radii */
  --radius-sm:      6px;
  --radius:         10px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-full:    9999px;

  /* Spacing scale */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-10: 40px;
  --space-12: 48px;--space-16: 64px;--space-20: 80px;--space-24: 96px;

  /* Typography */
  --font:           'Poppins', 'Segoe UI', system-ui, sans-serif;
  --text-xs:        0.75rem;
  --text-sm:        0.875rem;
  --text-base:      1rem;
  --text-lg:        1.125rem;
  --text-xl:        1.25rem;
  --text-2xl:       1.5rem;
  --text-3xl:       1.875rem;
  --text-4xl:       2.25rem;
  --text-5xl:       3rem;

  /* Transitions */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --transition:     0.25s var(--ease);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-2);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); font-weight: 600; }
h6 { font-size: var(--text-base); font-weight: 600; }

p { margin-bottom: 0; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-hover); }

img { max-width: 100%; height: auto; display: block; }

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--green-hover); }

/* ── Section utility ────────────────────────────────────────── */
.section { padding: var(--space-24) 0; }
.section-sm { padding: var(--space-16) 0; }

.section-title {
  text-align: center;
  margin-bottom: var(--space-16);
}
.section-title .eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-3);
}
.section-title h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: var(--space-4);
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  border-radius: var(--radius-full);
}
.section-title p {
  font-size: var(--text-lg);
  color: var(--text-light);
  max-width: 580px;
  margin: var(--space-6) auto 0;
  line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  padding: 11px 28px;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(22,163,74,0.25); }

.btn-primary {
  --bs-btn-bg: var(--green);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-bg: var(--green-hover);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-bg: var(--green-dark);
  --bs-btn-active-border-color: transparent;
  background-color: var(--green) !important;
  color: var(--white) !important;
  border-color: transparent;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background-color: var(--green-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,163,74,0.38);
  color: var(--white) !important;
}

.btn-outline-primary {
  background: transparent;
  color: var(--green) !important;
  border-color: var(--green);
}
.btn-outline-primary:hover {
  background: var(--green);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-light {
  background: rgba(255,255,255,0.12);
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}
.btn-light:hover {
  background: rgba(255,255,255,0.22);
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.5);
}

.btn-sm { padding: 8px 18px; font-size: var(--text-xs); }
.btn-lg { padding: 14px 36px; font-size: var(--text-base); }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  padding: 14px 0;
  transition: padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow);
}

.navbar-brand {
  font-size: 1.65rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  color: var(--dark-2) !important;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.navbar-brand .brand-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 10px;
}

.nav-link {
  font-size: var(--text-sm) !important;
  font-weight: 500 !important;
  color: var(--text) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--green);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--green) !important; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--green) !important; font-weight: 600 !important; }

.navbar-toggler {
  border: 2px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 6px 10px !important;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(22,163,74,0.2) !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23334155' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  background: var(--grad-dark);
  color: var(--white);
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(22,163,74,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(249,115,22,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.04;
}

.hero h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

/* Stats strip */
.stats-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-4);
  transition: background var(--transition);
}
.stats-item:hover { background: rgba(255,255,255,0.12); }
.stats-item span {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--white);
  display: block;
  letter-spacing: -0.02em;
}
.stats-item p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--space-1);
}

/* Search bar */
.form-search {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  margin-bottom: var(--space-8);
}
.form-search .form-control {
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: var(--text-base);
  padding: 15px 20px;
}
.form-search .form-control::placeholder { color: rgba(255,255,255,0.5); }
.form-search .form-control:focus { box-shadow: none; outline: none; background: transparent; color: var(--white); }

/* Search dropdown */
#search-dropdown {
  border-top: none !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  margin-top: -2px;
  box-shadow: var(--shadow-md);
}
#search-dropdown li { border-bottom: 1px solid var(--surface); }
#search-dropdown li:last-child { border-bottom: none; }
#search-dropdown .dropdown-item {
  padding: 12px 20px;
  color: var(--dark-2);
  font-family: var(--font);
  font-size: var(--text-sm);
  transition: all var(--transition);
}
#search-dropdown .dropdown-item:hover,
#search-dropdown .dropdown-item:focus {
  background: var(--green-light);
  color: var(--green);
  padding-left: 26px;
}

/* ── Featured Services ──────────────────────────────────────── */
.featured-services { padding: var(--space-24) 0; background: var(--surface); }

/* ── How It Works ───────────────────────────────────────────── */
.how-it-works { padding: var(--space-24) 0; background: var(--white); }

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-green);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.step-card:hover .step-icon { transform: scale(1.1) rotate(5deg); }

.step-icon {
  width: 72px; height: 72px;
  background: var(--grad-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: 1.8rem;
  color: var(--white);
  transition: transform var(--transition);
  box-shadow: var(--shadow-green);
}
.step-number {
  position: absolute;
  top: var(--space-4); right: var(--space-4);
  width: 28px; height: 28px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-xs);
}
.step-card h4 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: var(--space-3);
}
.step-card p { font-size: var(--text-sm); color: var(--text-light); }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background: var(--grad-green);
  color: var(--white);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='0,0 100,0 75,100 0,100' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── Recommendations / Testimonials ────────────────────────── */
.recommendations { padding: var(--space-24) 0; background: var(--surface); }

.recommendation-card {
  background: var(--dark-2);
  color: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.recommendation-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: var(--green);
  border-radius: 50%;
  transform: translate(50%, -50%);
  opacity: 0.08;
}
.recommendation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15,23,42,0.3);
}
.recommendation-card:hover .recommendation-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(22,163,74,0.4);
}

.recommendation-icon {
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-size: 1.4rem;
  color: var(--white);
  transition: all var(--transition);
}
.rating { color: #fbbf24; margin-bottom: var(--space-3); letter-spacing: 2px; }

/* ── Categories ─────────────────────────────────────────────── */
.categories { padding: var(--space-24) 0; background: var(--white); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-10);
}
.category-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.category-item:hover {
  border-color: var(--green);
  background: var(--green-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.category-item a {
  text-decoration: none;
  color: var(--dark-2);
  font-weight: 600;
  font-size: var(--text-sm);
}
.category-item:hover a { color: var(--green); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: var(--space-20) 0 var(--space-8);
}
.footer h5 {
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}
.footer p.text-light { color: rgba(255,255,255,0.55) !important; font-size: var(--text-sm); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: var(--space-3); }
.footer a {
  color: rgba(255,255,255,0.55);
  font-size: var(--text-sm);
  transition: color var(--transition);
}
.footer a:hover { color: var(--green); }
.footer hr { border-color: rgba(255,255,255,0.08); margin: var(--space-8) 0; }
.footer .text-muted { color: rgba(255,255,255,0.35) !important; font-size: var(--text-xs); }

.social-links { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6) !important;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}

/* ── Page Title Banner ──────────────────────────────────────── */
.page-title {
  padding: 110px 0 70px;
  background: var(--grad-dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-title::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(22,163,74,0.18) 0%, transparent 70%);
}
.page-title h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
  position: relative;
}
.page-title p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ── Pricing Section ────────────────────────────────────────── */
.alt-pricing { padding: var(--space-24) 0; background: var(--surface); }

.pricing-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  margin: var(--space-5) 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
}
.pricing-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.pricing-item.featured {
  border: 2px solid var(--orange);
  background: linear-gradient(160deg, var(--white) 60%, rgba(249,115,22,0.04) 100%);
  box-shadow: 0 8px 32px rgba(249,115,22,0.15);
}
.pricing-item.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: 22px; right: -38px;
  background: var(--orange);
  color: var(--white);
  padding: 7px 48px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transform: rotate(45deg);
}
.pricing-item.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(249,115,22,0.22);
}

.pricing-item h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--dark-2);
  text-align: center;
}
.pricing-item.featured h3 { color: var(--orange); }

.pricing-item h4 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  text-align: center;
  letter-spacing: -0.03em;
}
.pricing-item.featured h4 { color: var(--orange); }
.pricing-item h4 sup { font-size: 1.25rem; font-weight: 600; vertical-align: top; margin-right: 2px; }
.pricing-item h4 span { font-size: var(--text-sm); font-weight: 500; color: var(--text-light); vertical-align: bottom; }

.pricing-item ul { list-style: none; padding: 0; margin: 0; }
.pricing-item ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.6;
}
.pricing-item ul li i {
  color: var(--green);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.pricing-item.featured ul li i { color: var(--orange); }

.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--grad-green);
  color: var(--white) !important;
  border: none;
  border-radius: var(--radius-full);
  padding: 13px 32px;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-green);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  min-width: 150px;
}
.buy-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.55s ease;
}
.buy-btn:hover::before { left: 100%; }
.buy-btn:hover {
  background: linear-gradient(135deg, var(--green-hover) 0%, var(--green-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,163,74,0.42);
  color: var(--white) !important;
  text-decoration: none;
}
.buy-btn.loading { pointer-events: none; opacity: 0.65; }
.buy-btn.loading::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 18px; height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.pricing-item.featured .buy-btn {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 4px 20px rgba(249,115,22,0.3);
}
.pricing-item.featured .buy-btn:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  box-shadow: 0 8px 28px rgba(249,115,22,0.45);
}

/* ── Form Controls ───────────────────────────────────────────── */
.form-control, .form-select {
  font-family: var(--font);
  font-size: var(--text-sm);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 16px;
  color: var(--dark-2);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
  outline: none;
}

/* ── Alerts / Flash messages ────────────────────────────────── */
.alert {
  font-family: var(--font);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  border: none;
  padding: var(--space-4) var(--space-6);
}

/* ── Misc ────────────────────────────────────────────────────── */
.badge {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ── Preloader ───────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-spinner {
  width: 42px; height: 42px;
  border: 3px solid var(--green-light);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

/* Prevent AOS from hiding elements when AOS library is not loaded */
[data-aos] { opacity: 1 !important; transform: none !important; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.fade-in-up { animation: fadeInUp 0.6s var(--ease) both; }

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  .navbar, .hero, .cta-section, .footer { display: none !important; }
  body { font-size: 12pt; line-height: 1.5; color: #000; }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  .section-title h2 { font-size: var(--text-3xl); }
  .hero { padding: 100px 0 70px; }
  .hero h1 { font-size: var(--text-4xl); }
  .page-title { padding: 90px 0 60px; }
  .page-title h1 { font-size: var(--text-4xl); }
  .pricing-item.featured { transform: none; }
  .pricing-item.featured:hover { transform: translateY(-4px); }
  .navbar-collapse { background: var(--white); border-top: 1px solid var(--border); padding: var(--space-4) 0; margin-top: var(--space-2); border-radius: var(--radius-md); }
}

@media (max-width: 767px) {
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  .section { padding: var(--space-16) 0; }
  .hero { padding: 90px 0 60px; min-height: auto; }
  .hero h1 { font-size: var(--text-3xl); }
  .hero p { font-size: var(--text-base); }
  .page-title { padding: 80px 0 50px; }
  .page-title h1 { font-size: var(--text-3xl); }
  .step-card { margin-bottom: var(--space-5); }
  .recommendation-card { padding: var(--space-6); }
  .pricing-item { padding: var(--space-6) var(--space-5); }
  .pricing-item h4 { font-size: 2.5rem; }
  .buy-btn { padding: 12px 24px; min-width: 130px; }
  .section-title h2 { font-size: var(--text-2xl); }
}

@media (max-width: 575px) {
  .hero h1 { font-size: 1.9rem; }
  .hero { padding: 80px 0 50px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .category-item { padding: var(--space-4) var(--space-3); font-size: var(--text-xs); }
  .stats-item span { font-size: var(--text-2xl); }
  .pricing-item.featured::after { right: -34px; padding: 6px 42px; font-size: 9px; }
}
