/* ================================================================
   ARN Elite Solar — Premium Design System (Laravel Edition)
   Enhanced UI/UX with Glassmorphism, Animations & Premium Feel
   ================================================================ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- CSS Variables ---------- */
:root {
  --primary-900: #020617;
  --primary-800: #0A1628;
  --primary: #0F2847;
  --primary-600: #133562;
  --primary-500: #1A4A7A;
  --primary-400: #2563A0;
  --primary-300: #3B82C4;
  --primary-200: #7DB4E0;
  --primary-100: #BFDCF2;
  --primary-50: #E8F2FB;

  --accent-900: #064E24;
  --accent-800: #0A7735;
  --accent: #22C55E;
  --accent-light: #4ADE80;
  --accent-subtle: #DCFCE7;
  --accent-50: #F0FDF4;

  --solar-gold: #F59E0B;
  --solar-gold-light: #FBBF24;
  --solar-gold-subtle: #FEF3C7;

  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  --danger: #EF4444;
  --success: #22C55E;
  --warning: #F59E0B;
  --info: #3B82F6;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --shadow-glow-green: 0 0 30px rgba(34,197,94,0.25);
  --shadow-glow-blue: 0 0 30px rgba(37,99,160,0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal-backdrop: 300;
  --z-modal: 400;
  --z-fab: 500;
  --z-toast: 600;

  --container-max: 1280px;
  --container-padding: 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--gray-900);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { color: var(--gray-600); line-height: 1.7; }

.highlight { color: var(--accent-light); }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ---------- Section ---------- */
.section { padding: 100px 0; }

.section--dark {
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary) 50%, var(--primary-600) 100%);
  color: var(--white);
  position: relative;
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: var(--primary-200); }

.section--gray { background: var(--gray-50); }

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header__label::before,
.section-header__label::after {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 1px;
}

.section-header__label::after {
  background: linear-gradient(90deg, transparent, var(--accent));
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.0625rem; color: var(--gray-500); }

.section--dark .section-header__label { color: var(--accent-light); }
.section--dark .section-header__label::before { background: linear-gradient(90deg, var(--accent-light), transparent); }
.section--dark .section-header__label::after { background: linear-gradient(90deg, transparent, var(--accent-light)); }
.section--dark .section-header p { color: var(--primary-200); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #16A34A 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(34,197,94,0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34,197,94,0.4);
}

.btn--secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary-300);
}

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

.btn--dark {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-800) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15,40,71,0.3);
}

.btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,40,71,0.4);
}

.btn--white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

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

.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg { padding: 18px 40px; font-size: 1rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-slow);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.15);
}

.card--glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
}

.card--glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.card--gradient-border {
  position: relative;
  border: none;
}

.card--gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--accent), var(--primary-400), var(--solar-gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.card--gradient-border:hover::before { opacity: 1; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.1);
}

.form-input::placeholder { color: var(--gray-400); }

.form-input--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}

.form-input--dark:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.12);
}

.form-input--dark::placeholder { color: rgba(255,255,255,0.4); }

textarea.form-input { resize: vertical; min-height: 120px; }

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge--accent { background: var(--accent-subtle); color: var(--accent-900); }
.badge--primary { background: var(--primary-50); color: var(--primary); }
.badge--gold { background: var(--solar-gold-subtle); color: #92400E; }
.badge--white { background: rgba(255,255,255,0.15); color: var(--white); }

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

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  :root { --container-padding: 16px; }
}

/* ---------- Stat Counter ---------- */
.stat { text-align: center; }

.stat__number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section--dark .stat__number { color: var(--accent-light); }
.section--dark .stat__label { color: var(--primary-200); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: 16px 0;
  transition: all var(--transition-slow);
  background: transparent;
}

.header.scrolled {
  background: rgba(15, 40, 71, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.header__logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.header__logo-text span {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-light);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.header__nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* Dropdown */
.header__dropdown { position: relative; }

.header__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-dropdown);
}

.header__dropdown:hover .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header__dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.header__dropdown-link:hover {
  background: var(--accent-subtle);
  color: var(--accent-900);
}

.header__dropdown-link i { color: var(--accent); font-size: 1rem; }

.header__cta { margin-left: 8px; }

.header__toggle {
  display: none;
  color: var(--white);
  padding: 8px;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-800), var(--primary-900));
  z-index: 999;
  padding: 80px 28px 28px;
  overflow-y: auto;
  transition: right var(--transition-slow);
}

.mobile-nav.open { right: 0; }

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-nav__overlay.open { opacity: 1; visibility: visible; }

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  padding: 8px;
}

.mobile-nav__link {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover { color: var(--accent-light); }

.mobile-nav__sublink {
  display: block;
  padding: 10px 0 10px 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.mobile-nav__sublink:hover { color: var(--accent-light); }

@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__toggle { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary) 50%, var(--primary-600) 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.93) 0%, rgba(15,40,71,0.82) 50%, rgba(10,22,40,0.88) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 140px 0 80px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.hero__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.hero__subtitle::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--accent);
}

.hero h1 { color: var(--white); margin-bottom: 24px; }

.hero__text {
  font-size: 1.125rem;
  color: var(--primary-200);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero__trust-item { text-align: center; }

.hero__trust-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero__trust-label {
  font-size: 0.75rem;
  color: var(--primary-300);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* Hero Form */
.hero__form-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero__form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--solar-gold), var(--accent));
}

.hero__form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.hero__form-subtitle {
  font-size: 0.875rem;
  color: var(--primary-300);
  margin-bottom: 28px;
}

/* Particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
  50% { transform: translateY(-120px) scale(1.5); opacity: 0.5; }
}

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  padding: 180px 0 90px;
  background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary) 100%);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(15,40,71,0.85) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }

.page-hero__subtitle {
  color: var(--primary-200);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 16px;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--primary-300);
  margin-top: 16px;
}

.page-hero__breadcrumb a {
  color: var(--accent-light);
  transition: color var(--transition-fast);
}

.page-hero__breadcrumb a:hover { color: var(--accent); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary-300), var(--accent));
  opacity: 0.3;
}

.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-subtle), var(--accent-50));
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all var(--transition-base);
}

.process__step:hover .process__icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow-green);
}

.process__icon i { font-size: 1.75rem; }

.process__number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.process__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.process__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIAL CARD
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
  transition: all var(--transition-slow);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--solar-gold);
}

.testimonial-card__stars i { font-size: 1rem; }

.testimonial-card__text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-800));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.9375rem;
}

.testimonial-card__location {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* ============================================================
   PROJECT CARD
   ============================================================ */
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-card__img {
  transform: scale(1.08);
}

.project-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
}

.project-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.project-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
}

.project-card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   PRICING CARD
   ============================================================ */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow-green);
  transform: scale(1.03);
}

.pricing-card--featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #16A34A);
  color: var(--white);
  padding: 6px 24px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: var(--radius-full);
}

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

.pricing-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.pricing-card__capacity {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.pricing-card__price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__price span { font-size: 0.875rem; font-weight: 400; color: var(--gray-400); }

.pricing-card__subsidy {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 24px;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.pricing-card__feature i { color: var(--accent); font-size: 1rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.08);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-item__question:hover { color: var(--accent); }

.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--gray-50);
  transition: all var(--transition-base);
}

.faq-item__icon i { font-size: 0.875rem; transition: transform var(--transition-base); }

.faq-item.active .faq-item__icon {
  background: var(--accent-subtle);
  color: var(--accent);
}

.faq-item.active .faq-item__icon i { transform: rotate(180deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-item__answer { max-height: 500px; }

.faq-item__answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   BLOG CARD
   ============================================================ */
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-slow);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.blog-card__image {
  height: 200px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img { transform: scale(1.06); }

.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.blog-card__category {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 12px;
}

.blog-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ============================================================
   FILTER TABS
   ============================================================ */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-tab:hover { border-color: var(--accent); color: var(--accent); }

.filter-tab.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-800) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.15), transparent 70%);
  pointer-events: none;
}

.cta-banner__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner__content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__content p {
  color: var(--primary-200);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CALCULATOR
   ============================================================ */
.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.calculator__inputs {
  padding: 48px;
  background: var(--white);
}

.calculator__results {
  padding: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-800));
  color: var(--white);
}

.calculator__result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.calculator__result-label {
  font-size: 0.9rem;
  color: var(--primary-200);
}

.calculator__result-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-light);
}

.calculator__result-highlight {
  background: rgba(34,197,94,0.1);
  margin: 0 -48px;
  padding: 16px 48px;
  border-bottom: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--primary-900), #050D1A);
  padding: 80px 0 0;
  color: var(--primary-200);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo { width: 44px; height: 44px; border-radius: var(--radius-sm); object-fit: cover; }

.footer__brand p {
  font-size: 0.9rem;
  color: var(--primary-300);
  line-height: 1.7;
  margin-top: 16px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-300);
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }

.footer__links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--primary-300);
  transition: all var(--transition-fast);
}

.footer__links a:hover { color: var(--accent-light); transform: translateX(4px); }
.footer__links a i { font-size: 0.75rem; }

.footer__contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.footer__contact-item i { color: var(--accent-light); font-size: 1.125rem; margin-top: 2px; }
.footer__contact-item a { color: var(--accent-light); }
.footer__contact-item a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--primary-400);
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a { color: var(--primary-400); }
.footer__bottom-links a:hover { color: var(--accent-light); }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: var(--z-fab);
  transition: all var(--transition-base);
  animation: fabPulse 2s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 96px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: var(--z-fab);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: var(--z-modal-backdrop);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-backdrop.active { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-slow);
  box-shadow: var(--shadow-2xl);
}

.modal-backdrop.active .modal { transform: scale(1) translateY(0); }

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal__close:hover { background: var(--gray-100); color: var(--gray-600); }

/* Success animation */
.success-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  animation: successPop 0.4s var(--transition-spring);
}

@keyframes successPop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible { opacity: 1; transform: scale(1); }

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

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }

/* ============================================================
   ICON CIRCLE
   ============================================================ */
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition-base);
}

.icon-circle--green { background: var(--accent-subtle); color: var(--accent); }
.icon-circle--blue { background: var(--primary-50); color: var(--primary-500); }
.icon-circle--gold { background: var(--solar-gold-subtle); color: var(--solar-gold); }

.card:hover .icon-circle--green { background: var(--accent); color: var(--white); box-shadow: var(--shadow-glow-green); }
.card:hover .icon-circle--blue { background: var(--primary-500); color: var(--white); box-shadow: var(--shadow-glow-blue); }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero__content { padding: 120px 0 60px; }
  .hero__form-card { margin-top: 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .calculator { grid-template-columns: 1fr; }
  .calculator__inputs, .calculator__results { padding: 32px; }
  .page-hero { padding: 140px 0 60px; }
}

@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__trust { gap: 24px; }
  .cta-banner { padding: 60px 0; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .process { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent); }
.text-gold { color: var(--solar-gold); }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }
.w-full { width: 100%; }
.max-w-600 { max-width: 600px; }
.max-w-800 { max-width: 800px; }

/* Range input */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(34,197,94,0.3);
}

/* Responsive table */
.table-responsive { overflow-x: auto; }

.table-responsive table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.table-responsive th {
  padding: 16px 24px;
  text-align: left;
  color: var(--white);
  font-weight: 600;
  background: var(--primary);
}

.table-responsive th:not(:first-child) { text-align: center; }

.table-responsive td {
  padding: 14px 24px;
  color: var(--gray-600);
  font-size: 0.9375rem;
}

.table-responsive td:not(:first-child) { text-align: center; }

.table-responsive tr:not(:last-child) td { border-bottom: 1px solid var(--gray-100); }
.table-responsive tr:nth-child(even) { background: var(--gray-50); }

/* Two-column layout helper */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col--reverse > :first-child { order: 1; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse > :first-child { order: 0; }
}

/* Contact info card */
.contact-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact-card__icon i { font-size: 1.25rem; }

/* Job listing */
.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.job-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-subtle);
}

.job-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--gray-400);
  flex-wrap: wrap;
}

.job-card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Subsidy card */
.subsidy-card {
  text-align: center;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.subsidy-card__label {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.subsidy-card__amount {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.subsidy-card__max {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* Step list */
.step-list { display: flex; flex-direction: column; gap: 16px; }

.step-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-list__number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

/* Mobile sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: var(--z-sticky);
}

@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
  .whatsapp-fab { bottom: 80px; }
  .back-to-top { bottom: 80px; }
}
