/* ================================================
   MAIN CSS - Lidya Israel - Dog Trainer
   CSS Variables + Global Styles
   Style: Warm organic serenity
   ================================================ */

:root {
  /* Colors - from brief */
  --color-accent: #0891B2;
  --color-accent-hover: #067a97;
  --color-accent-soft: rgba(8, 145, 178, 0.12);
  --color-accent-rgb: 8, 145, 178;
  --color-secondary: #052830;
  --color-accent-light: #06b6d4;
  --color-error: #DC2626;
  --color-whatsapp: #25D366;
  --color-star: #FBBF24;

  /* Backgrounds */
  --bg-primary: #FAFAF8;
  --bg-primary-rgb: 250, 250, 248;
  --bg-secondary: #F0F4F3;
  --bg-dark: #0A1A1E;
  --bg-darkest: #051215;
  --bg-card: #FFFFFF;

  /* Text */
  --text-primary: #1A1A1A;
  --text-secondary: #5A6B6E;
  --text-muted: #8A9A9D;
  --text-on-accent: #FFFFFF;
  --text-on-dark: #E8EDED;

  /* Borders */
  --border-color: rgba(0, 0, 0, 0.08);
  --border-color-dark: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: 'Heebo', sans-serif;
  --font-body: 'Heebo', sans-serif;

  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 32px;
  --text-4xl: clamp(40px, 5vw, 56px);
  --text-hero: clamp(48px, 8vw, 96px);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;
  --space-2xl: 128px;

  /* Design */
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
  --transition-fast: 0.22s ease;
  --transition-med: 0.36s ease;
  --container-max: 1200px;
}

/* ================================================
   RESET & BASE
   ================================================ */

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

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

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  text-align: right;
  word-break: keep-all;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Mobile touch targets and input zoom prevention */
@media (max-width: 767px) {
  input, textarea, select {
    font-size: 16px !important;
  }
  button, .btn, a[href^="tel:"], a[href^="https://wa.me"] {
    min-height: 44px;
    min-width: 44px;
  }
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: var(--text-4xl); letter-spacing: -0.02em; }
h2 { font-size: var(--text-3xl); letter-spacing: -0.02em; }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
  max-width: 65ch;
  line-height: 1.6;
}

::placeholder {
  text-align: right;
  direction: rtl;
  color: var(--text-muted);
}

input, textarea, select, button {
  font-family: var(--font-body);
  text-align: right;
}

/* ================================================
   CONTAINER
   ================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

/* ================================================
   SECTIONS
   ================================================ */

section {
  padding-block: var(--space-2xl);
  position: relative;
}

.section--alt {
  background: var(--bg-secondary);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-on-dark);
}

.section--darkest {
  background: var(--bg-darkest);
  color: var(--text-on-dark);
}

/* Section tag/label */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--color-accent);
  background: var(--color-accent-soft);
  border-radius: 100px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.section--dark .section-tag {
  border-color: rgba(8, 145, 178, 0.5);
  background: rgba(8, 145, 178, 0.15);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header p {
  margin: var(--space-md) auto 0;
  color: var(--text-secondary);
  font-size: var(--text-lg);
  max-width: 60ch;
}

.section--dark .section-header p {
  color: var(--text-muted);
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.36s ease, transform 0.36s ease;
}

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

.stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--text-on-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--text-on-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--color-accent-soft);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.btn-white {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--text-on-accent);
  backdrop-filter: blur(8px);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--text-on-accent);
  transform: translateY(-2px);
}

.btn--loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn--loading .btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.36s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
  .btn {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }
}

/* ================================================
   CARDS
   ================================================ */

.card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  border: 0.5px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.section--dark .card {
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid var(--border-color-dark);
  backdrop-filter: blur(12px);
}

/* ================================================
   FORMS
   ================================================ */

.field {
  position: relative;
  margin-bottom: var(--space-md);
}

.field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: var(--text-base);
  outline: none;
  background: var(--bg-card);
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.field input.error,
.field textarea.error {
  border-color: var(--color-error);
}

.field .error-msg {
  font-size: var(--text-sm);
  color: var(--color-error);
  margin-top: var(--space-xs);
}

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

/* Floating label */
.field--float {
  position: relative;
}

.field--float label {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-base);
  color: var(--text-muted);
  pointer-events: none;
  transition: transform var(--transition-fast), font-size var(--transition-fast), color var(--transition-fast);
  background: var(--bg-card);
  padding: 0 4px;
  margin-bottom: 0;
}

.field--float textarea ~ label {
  top: 14px;
  transform: none;
}

.field--float input:focus ~ label,
.field--float input:not(:placeholder-shown) ~ label,
.field--float textarea:focus ~ label,
.field--float textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-28px);
  font-size: var(--text-xs);
  color: var(--color-accent);
}

/* Dark section form fields */
.section--dark .field input,
.section--dark .field textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-on-accent);
}

.section--dark .field input::placeholder,
.section--dark .field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.section--dark .field input:focus,
.section--dark .field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.2);
}

.section--dark .field--float label {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
}

/* Form success message */
.form-success {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  animation: fadeIn 0.36s ease;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: var(--color-accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.form-success .success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-accent);
}

.form-success h3 {
  margin-bottom: var(--space-sm);
}

.form-success p {
  color: var(--text-secondary);
  margin: 0 auto;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================
   GRID LAYOUTS
   ================================================ */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

/* ================================================
   IMAGES
   ================================================ */

.img-container {
  overflow: hidden;
  border-radius: var(--border-radius);
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}

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

/* ================================================
   DECORATIVE ELEMENTS
   ================================================ */

/* Grain overlay */
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* Gradient orb */
.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent-soft) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ================================================
   FLOATING BUTTONS (WhatsApp + Phone)
   ================================================ */

.floating-buttons {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  z-index: 1000;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.floating-btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--text-on-accent);
}

.floating-btn--phone {
  background: var(--color-accent);
  color: var(--text-on-accent);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
}

/* ================================================
   ACCORDION (FAQ)
   ================================================ */

.accordion-item {
  border: 0.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  background: var(--bg-card);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border: none;
  background: none;
  cursor: pointer;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
  transition: background var(--transition-fast);
}

.accordion-trigger:hover {
  background: var(--bg-secondary);
}

.accordion-trigger svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.accordion-item.active .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med);
}

.accordion-content-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================================================
   SOCIAL PROOF / RATING
   ================================================ */

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  font-size: var(--text-sm);
  font-weight: 500;
}

.social-proof .stars {
  color: var(--color-star);
}

/* ================================================
   TESTIMONIAL CARDS
   ================================================ */

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  border: 0.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '\201D';
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  font-size: 48px;
  color: var(--color-accent-soft);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-accent);
  font-size: var(--text-sm);
}

.testimonial-card .author-name {
  font-weight: 600;
  font-size: var(--text-sm);
}

.testimonial-card .author-role {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ================================================
   STATS / NUMBERS
   ================================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item .stat-number {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-item .stat-label {
  font-size: var(--text-base);
  color: var(--text-secondary);
  font-weight: 500;
}

.section--dark .stat-item .stat-label {
  color: var(--text-muted);
}

/* ================================================
   BREADCRUMBS
   ================================================ */

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.breadcrumbs a {
  color: var(--text-muted);
}

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

.breadcrumbs .separator {
  color: var(--text-muted);
  opacity: 0.5;
}

/* ================================================
   INNER PAGE HERO (text-only)
   ================================================ */

.inner-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--color-secondary) 100%);
  padding: calc(var(--space-2xl) + 80px) 0 var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

.inner-hero .orb {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  opacity: 0.3;
}

.inner-hero h1 {
  color: var(--text-on-dark);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.inner-hero p {
  color: var(--text-muted);
  font-size: var(--text-lg);
  max-width: 50ch;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.inner-hero .breadcrumbs {
  justify-content: center;
  position: relative;
  z-index: 1;
}

.inner-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.5);
}

.inner-hero .breadcrumbs .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* ================================================
   RESPONSIVE UTILITIES
   ================================================ */

.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile { display: block; }
  .hide-desktop { display: none; }
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ================================================
   SKIP LINK (Accessibility)
   ================================================ */

.skip-link {
  position: absolute;
  top: -100%;
  right: 0;
  background: var(--color-accent);
  color: var(--text-on-accent);
  padding: var(--space-sm) var(--space-md);
  z-index: 10000;
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
}

.skip-link:focus {
  top: 0;
}

/* ================================================
   PREMIUM LIST ITEMS / BULLETS
   ================================================ */

/* ── Style A: Glassmorphic check cards (for trust signals on dark sections) ── */
.premium-checks {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.premium-check {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.premium-check:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-4px);
}

.premium-check .check-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.premium-check .check-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-on-accent);
  stroke-width: 2.5;
}

.premium-check .check-text {
  font-size: var(--text-base);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* ── Style B: Accent-bordered items (for method/feature lists on light sections) ── */
.premium-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.premium-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: 14px 18px;
  background: var(--bg-card);
  border-radius: 12px;
  border-right: 3px solid var(--color-accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.premium-list-item:hover {
  transform: translateX(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-right-color: var(--color-accent-hover);
}

.premium-list-item .item-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--color-accent-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.premium-list-item .item-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent);
  stroke-width: 2.5;
}

.premium-list-item .item-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
}

.premium-list-item .item-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* On alt section */
.section--alt .premium-list-item {
  background: var(--bg-card);
}

/* ── Style C: Icon pill badges (for compact lists) ── */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.pill-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--color-accent-soft);
  border-radius: 100px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-accent);
  transition: background var(--transition-fast), transform var(--transition-fast);
  border: 1px solid transparent;
}

.pill-item:hover {
  background: rgba(8, 145, 178, 0.18);
  transform: translateY(-2px);
  border-color: var(--color-accent-soft);
}

.pill-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-accent);
  stroke-width: 2.5;
}

/* On dark sections */
.section--dark .pill-item {
  background: rgba(8, 145, 178, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(8, 145, 178, 0.3);
}

.section--dark .pill-item svg {
  stroke: var(--color-accent);
}

/* ── Style D: Numbered steps (for processes) ── */
.numbered-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  counter-reset: step-counter;
}

.numbered-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: 20px 24px;
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  counter-increment: step-counter;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.numbered-item::before {
  content: counter(step-counter);
  min-width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-on-accent);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.25);
}

.numbered-item .step-content h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.numbered-item .step-content p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ── Style E: Legal/content page lists (for privacy, accessibility) ── */
.legal-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 16px;
  background: var(--bg-secondary);
  border-radius: 8px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: var(--text-sm);
  transition: background var(--transition-fast);
}

.legal-list li:hover {
  background: rgba(8, 145, 178, 0.06);
}

.legal-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-top: 8px;
}

/* ================================================
   PREMIUM ENHANCEMENTS
   ================================================ */

/* Link hover underline animation (left to right in RTL) */
.footer-nav-list li a,
.nav-list li a {
  position: relative;
}

/* Premium card hover - subtle glow */
.card:hover {
  box-shadow: 0 12px 40px rgba(8, 145, 178, 0.08), var(--shadow-lg);
}

/* Section divider - subtle wave */
.section-wave {
  position: relative;
}

.section-wave::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg-primary);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.section--alt .section-wave::after {
  background: var(--bg-secondary);
}

/* Dot grid decorative pattern */
.dot-grid {
  background-image: radial-gradient(circle, rgba(8, 145, 178, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Premium testimonial card - quote mark */
.testimonial-card {
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

/* Smooth image reveal on load */
.img-container img {
  opacity: 0;
  animation: imageReveal 0.36s ease forwards;
}

@keyframes imageReveal {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

/* Premium focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Accent colored divider line */
.accent-line {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: var(--space-md) auto;
}

/* Premium section header with accent line */
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: var(--space-md) auto 0;
}

/* Smooth scroll-margin for anchors */
section[id] {
  scroll-margin-top: 100px;
}

/* Premium dark section text selection */
.section--dark ::selection,
.section--darkest ::selection {
  background: var(--color-accent);
  color: var(--text-on-accent);
}

/* Gradient text accent for special headings */
.gradient-text {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Floating button pulse animation */
.floating-btn--whatsapp {
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5); }
}

/* Premium stats section background */
.stats-grid .stat-item {
  position: relative;
}

.stats-grid .stat-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--color-accent-soft) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

/* Improved form submit success animation */
.form-success {
  animation: successReveal 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successReveal {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Premium scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent-soft);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}
