/* =====================================================
   PROFESSOR RAFIK — SPIRITUAL OASIS
   Design System: Mystical Dark
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;900&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ── CSS Custom Properties ─────────────────────────── */
:root {
  /* Colors */
  --bg-primary:     #080412;
  --bg-secondary:   #0e0820;
  --bg-card:        #130a24;
  --bg-card-hover:  #1a0e30;
  --bg-section-alt: #0b061a;

  --gold:           #c9913a;
  --gold-light:     #dea84e;
  --gold-dim:       #8a6020;
  --gold-pale:      rgba(201, 145, 58, 0.12);
  --gold-glow:      rgba(201, 145, 58, 0.35);

  --purple:         #7c3aed;
  --purple-light:   #a78bfa;
  --purple-pale:    rgba(124, 58, 237, 0.15);
  --purple-glow:    rgba(124, 58, 237, 0.3);

  --text-primary:   #e8e0f0;
  --text-secondary: #b0a0c8;
  --text-muted:     #6b5d7f;

  --border:         rgba(201, 145, 58, 0.18);
  --border-hover:   rgba(201, 145, 58, 0.45);
  --border-subtle:  rgba(167, 139, 250, 0.12);

  --shadow-gold:    0 0 40px rgba(201, 145, 58, 0.25);
  --shadow-purple:  0 0 40px rgba(124, 58, 237, 0.25);
  --shadow-card:    0 8px 40px rgba(0, 0, 0, 0.6);

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

  /* Layout */
  --nav-height:     85px;
  --container:      1240px;
  --radius:         12px;
  --radius-lg:      20px;

  /* Transitions */
  --ease:           0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow:      0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Selection ─────────────────────────────────────── */
::selection {
  background: var(--gold-pale);
  color: var(--gold-light);
}

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: var(--text-primary);
}

.text-gold {
  color: var(--gold);
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #a06820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }

/* ── Layout ────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; overflow: hidden; }

.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 70px 0; }

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Gold Divider */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 60px auto;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  display: block;
  height: 1px;
  width: 120px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.gold-divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.gold-divider-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ── NAVIGATION ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--ease), box-shadow var(--ease);
}

.nav.scrolled {
  background: rgba(8, 4, 18, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 10px 40px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--ease);
  transform-origin: center;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all var(--ease);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-primary);
  box-shadow: var(--shadow-gold);
}

.nav-cta svg { width: 16px; height: 16px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(8, 4, 18, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform var(--ease-slow);
}

.nav-mobile.open { transform: translateX(0); }

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  transition: color var(--ease);
}
.nav-mobile a:hover { color: var(--gold); }

.nav-mobile .nav-mobile-cta {
  margin-top: 20px;
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 4, 18, 0.55) 0%,
    rgba(8, 4, 18, 0.4) 50%,
    rgba(8, 4, 18, 0.9) 100%
  );
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 40px 28px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-title .line-gold {
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #a06820);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--ease);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg-primary);
  box-shadow: 0 4px 24px rgba(201, 145, 58, 0.4);
}
.btn-primary::before { background: linear-gradient(135deg, #eebf60, var(--gold-light)); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201, 145, 58, 0.5); }

.btn-outline {
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
}
.btn-outline::before { background: var(--gold-pale); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-sm { padding: 10px 24px; font-size: 0.75rem; }
.btn-lg { padding: 18px 44px; font-size: 0.88rem; }

/* ── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 36px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }

.trust-item-icon {
  font-size: 1.4rem;
  color: var(--gold);
}

.trust-item-text { line-height: 1.3; }

.trust-item-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.trust-item-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── SERVICE CARDS ─────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--ease);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--gold-pale), transparent 60%);
  opacity: 0;
  transition: opacity var(--ease);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  background: var(--bg-card-hover);
}

.service-card:hover::before,
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all var(--ease);
}

.service-card:hover .service-icon {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.service-card:hover .service-icon span { filter: brightness(0); }

.service-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: gap var(--ease);
}
.service-link:hover { gap: 12px; }
.service-link svg { width: 14px; height: 14px; }

/* ── ABOUT TEASER ──────────────────────────────────── */
.about-teaser {
  background: var(--bg-section-alt);
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-teaser-art {
  position: relative;
}

.about-teaser-art img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.about-teaser-art::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 8px);
  animation: spin-slow 30s linear infinite;
}

.about-teaser-art::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  opacity: 0.4;
}

.about-label { margin-bottom: 20px; }

.about-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 24px;
}

.about-body {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-quote {
  border-left: 2px solid var(--gold);
  padding: 16px 24px;
  margin: 30px 0;
  font-style: italic;
  color: var(--text-primary);
  font-size: 1.05rem;
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Stats in about */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
}

.about-stat {
  text-align: center;
  padding: 20px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.about-stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}

.about-stat-lbl {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── TESTIMONIALS ──────────────────────────────────── */
.testimonials-section { background: var(--bg-section-alt); }

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 80px;
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 1.1rem;
}

.testimonial-quote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 36px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -30px;
  left: -20px;
  line-height: 1;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.carousel-btn svg { width: 18px; height: 18px; }

.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all var(--ease);
}
.carousel-dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--gold);
}

/* ── FINAL CTA SECTION ─────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0e0820 0%, #160c2a 50%, #0e0820 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 44px;
  font-weight: 300;
}

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

/* ── PAGE HERO (inner pages) ───────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 80px) 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(124, 58, 237, 0.2), transparent 70%);
}

.page-hero-label { margin-bottom: 16px; }

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ── SERVICES PAGE ─────────────────────────────────── */
.service-full {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.service-full:nth-child(even) { background: var(--bg-section-alt); }

.service-full-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

.service-full:nth-child(even) .service-full-inner {
  grid-template-columns: 1.6fr 1fr;
  direction: rtl;
}
.service-full:nth-child(even) .service-full-inner > * { direction: ltr; }

.service-full-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-full-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--gold-pale), transparent 70%);
}

.service-full-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 20px;
  position: relative;
}

.service-full-icon-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  position: relative;
}

.service-full-content .section-label { justify-content: flex-start; }
.service-full-content .section-label::after { display: none; }

.service-full-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.service-pain {
  background: var(--bg-card);
  border-left: 2px solid var(--purple-light);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
}

.service-full-body {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 28px;
}

.service-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.service-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.service-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--gold);
  flex-shrink: 0;
}

.service-step-text {
  padding-top: 5px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-step-text strong { color: var(--text-primary); }

/* ── TESTIMONIALS PAGE ─────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.tcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--ease);
}

.tcard:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.tcard::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.06;
  position: absolute;
  top: -10px;
  left: 10px;
  line-height: 1;
}

.tcard-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.tcard-quote {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
}

.tcard-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--purple));
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
  flex-shrink: 0;
}

.tcard-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

.tcard-loc {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── INSIGHTS / BLOG ───────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--ease);
}

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

.article-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--ease-slow);
}
.article-card:hover .article-img { transform: scale(1.04); }

.article-img-wrapper { overflow: hidden; }

.article-body { padding: 36px 32px; }

.article-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.article-title {
  font-size: 1.3rem;
  margin-bottom: 14px;
  line-height: 1.35;
}

.article-excerpt {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.article-read-more {
  color: var(--gold);
  font-weight: 700;
  transition: color var(--ease);
}
.article-read-more:hover { color: var(--gold-light); }

/* Article Expanded (modal-like) */
.article-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 4, 18, 0.97);
  overflow-y: auto;
  padding: 40px 20px;
}
.article-modal.open { display: block; }

.article-modal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.article-modal-close {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
  cursor: pointer;
  transition: color var(--ease);
}
.article-modal-close:hover { color: var(--gold); }
.article-modal-close svg { width: 16px; height: 16px; }

.article-modal-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
}

.article-modal-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 24px;
}

.article-modal-content {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
}

.article-modal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 32px 0 14px;
  letter-spacing: 0.05em;
}

.article-modal-content p { margin-bottom: 18px; }

/* ── CONTACT ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.form-sub {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201, 145, 58, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b5d7f' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  cursor: pointer;
}

.form-select option { background: var(--bg-card); }

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

/* Contact Side */
.contact-side { display: flex; flex-direction: column; gap: 24px; }

.whatsapp-card {
  background: linear-gradient(135deg, rgba(18, 140, 126, 0.15), rgba(37, 211, 102, 0.08));
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}

.whatsapp-card-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.whatsapp-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.whatsapp-card-sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item span:first-child { font-size: 1.1rem; }

/* ── FAQ ───────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease);
}

.faq-item.open { border-color: var(--border-hover); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-question-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.4;
}

.faq-item.open .faq-question-text { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--ease);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--bg-primary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.footer-logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--gold); }

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--ease);
}
.footer-legal a:hover { color: var(--gold); }

/* ── FLOATING WHATSAPP ─────────────────────────────── */
.float-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
  transition: all var(--ease);
  animation: pulse-whatsapp 2.5s ease-in-out infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
  animation: none;
}

.float-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.float-whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--ease);
}

.float-whatsapp:hover .float-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── BACK TO TOP ───────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--ease);
  background: var(--bg-card);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.back-to-top svg { width: 18px; height: 18px; }

/* ── SCROLL PROGRESS BAR ───────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--purple-light));
  z-index: 1001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── ANIMATION CLASSES ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── KEYFRAMES ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 6px 50px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

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

.float-anim { animation: float 6s ease-in-out infinite; }

/* ── SERVICES PAGE FULL DESCRIPTIONS ───────────────── */
.service-full {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.service-full:last-child {
  border-bottom: none;
}
.service-full-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.service-full:nth-child(even) .service-full-inner {
  direction: rtl;
}
.service-full:nth-child(even) .service-full-content {
  direction: ltr;
}
.service-full-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-full-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--gold-pale), transparent 70%);
  opacity: 0.5;
}
.service-full-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.service-full-icon-name {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}
.service-full-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 24px;
}
.service-pain {
  font-size: 1.1rem;
  color: var(--text-primary);
  border-left: 2px solid var(--gold);
  padding: 12px 24px;
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 30px;
}
.service-full-body {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-steps {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-step {
  display: flex;
  gap: 20px;
  background: var(--bg-section-alt);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}
.service-step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}
.service-step-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.service-step-text strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

/* ── INSIGHTS PAGE ARTICLES ────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--ease);
}
.article-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}
.article-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.article-card:hover .article-img {
  transform: scale(1.05);
}
.article-body {
  padding: 30px;
}
.article-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.article-title {
  font-size: 1.3rem;
  margin-bottom: 16px;
  line-height: 1.4;
}
.article-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.article-read-more {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color var(--ease);
}
.article-read-more:hover {
  color: var(--gold-light);
}

/* ── ARTICLE MODALS ────────────────────────────────── */
.article-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 4, 18, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.article-modal.active {
  display: flex;
  opacity: 1;
}
.article-modal-inner {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 50px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.article-modal.active .article-modal-inner {
  transform: translateY(0);
}
.article-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--ease);
}
.article-modal-close:hover {
  color: var(--gold);
}
.article-modal-close svg {
  width: 20px;
  height: 20px;
}
.article-modal-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 30px;
  margin-top: 20px;
}
.article-modal-title {
  font-size: 2rem;
  margin: 16px 0 24px;
}
.article-modal-content {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 1.05rem;
}
.article-modal-content h3 {
  color: var(--text-primary);
  margin: 30px 0 16px;
  font-size: 1.4rem;
}
.article-modal-content p {
  margin-bottom: 20px;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-teaser-inner { gap: 50px; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-full-inner { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-subtitle { font-size: 1rem; }

  .trust-bar-inner { flex-direction: column; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }

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

  .about-teaser-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-teaser-art { order: -1; }
  .about-teaser-art::before { display: none; }

  .testimonial-card { padding: 0 20px; }

  .service-full-inner,
  .service-full:nth-child(even) .service-full-inner {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .service-full-visual { padding: 30px; }

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

  .about-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .contact-info, .contact-form-container { padding: 24px !important; }

  .float-whatsapp { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .back-to-top { bottom: 84px; right: 20px; }

  .insights-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .article-modal-inner { padding: 30px 20px; }
  .article-modal-close { top: 15px; right: 15px; }
  .article-modal-title { font-size: 1.5rem; }
  .article-modal-img { height: 200px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section-pad { padding: 80px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .service-step { flex-direction: column; gap: 12px; }
}
