/* ============================================
   MAIN STYLES — Brazil Solutions LLC
   ============================================ */

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition-smooth);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 0;
  /* Drop shadow so white SOLUTIONS text reads on any background */
  filter:
    drop-shadow(1px 1px 0px rgba(0,0,0,0.9))
    drop-shadow(-1px -1px 0px rgba(0,0,0,0.7))
    drop-shadow(1px -1px 0px rgba(0,0,0,0.7))
    drop-shadow(-1px 1px 0px rgba(0,0,0,0.7))
    drop-shadow(0px 3px 6px rgba(0,0,0,0.5));
}
.logo-img--footer {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-sm);
  opacity: 0.95;
}

.site-nav { flex: 1; }
.site-nav ul { display: flex; gap: var(--space-6); list-style: none; }
.site-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.site-nav a:hover { color: var(--color-text); border-color: var(--color-primary); }

.header-actions { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }

.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.theme-toggle:hover { color: var(--color-text); background: var(--color-surface-offset); }

.nav-toggle { display: none; color: var(--color-text); padding: var(--space-2); }

/* ===== HERO — Pixelab-style: pure white, person right, orange mist ===== */
.hero {
  background: #ffffff;
  overflow: hidden;
  position: relative;
  padding-block: 0;
}
[data-theme="dark"] .hero {
  background: var(--color-bg);
}

/* Full-bleed grid — bypasses container centering so person can bleed to the right edge */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 0;
  align-items: stretch;
  min-height: 600px;
  max-width: 1280px;
  margin-inline: auto;
  padding-left: clamp(1.5rem, 5vw, 5rem);
  /* No padding-right — person sits flush right */
}

/* === Left: content === */
.hero-content {
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1rem, 3vw, 3rem) clamp(3rem, 5vw, 5rem) 0;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content .label-tag {
  margin-bottom: var(--space-5);
}
.hero-heading {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--color-text);
  font-family: var(--font-display);
  margin-bottom: var(--space-5);
  letter-spacing: -0.025em;
}
.hero-heading em {
  font-style: normal;
  color: var(--color-primary);
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  max-width: 42ch;
}
.hero-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
  align-items: center;
}

/* Ghost button style */
.btn-ghost {
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-text);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Proof row */
.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.hero-proof-stat {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hero-proof-stat strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-display);
}
.hero-proof-stat span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.hero-proof-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--color-border);
}

/* === Right: orange mist + person flush bottom-right === */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}
/* Orange mist blob — large, vivid, centered behind the person */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 80% at 55% 75%, rgba(232,80,10,0.18) 0%, rgba(255,140,60,0.10) 40%, transparent 72%),
    radial-gradient(ellipse 60% 50% at 70% 100%, rgba(232,80,10,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-person {
  display: block;
  position: relative;
  z-index: 1;
  width: auto;
  height: clamp(480px, 56vw, 640px);
  max-width: 100%;
  object-fit: contain;
  object-position: bottom right;
  animation: person-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes person-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* hero-card-stack kept for backward compat but unused */
.hero-card-stack { display: none; }

.stat-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  width: 100%;
}

.stat-card--1 {
  background: var(--brand-navy);
  color: white;
  animation: float1 4s ease-in-out infinite;
}
.stat-card--1 .stat-number { font-size: var(--text-xl); font-weight: 800; font-family: var(--font-display); color: #ffffff; }
.stat-card--1 .stat-label  { font-size: var(--text-xs); color: rgba(255,255,255,0.8); margin-top: var(--space-1); }

.stat-card--2 { animation: float2 5s ease-in-out infinite; }
.stat-card--3 { animation: float1 4.5s ease-in-out infinite; }

.stat-card .stat-icon  { font-size: 1.8rem; margin-bottom: var(--space-2); }
.stat-card .stat-label { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); }
.stat-card .stat-name  { font-size: var(--text-xs); color: var(--color-text-muted); }
.stat-card--1 .stat-label { color: rgba(255,255,255,0.85) !important; font-weight: 500; }

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

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--brand-navy);
  color: rgba(255,255,255,0.8);
  padding: var(--space-3) 0;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.trust-divider { opacity: 0.3; }

/* ===== SERVICES ===== */
.services-section { background: var(--color-surface-2); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}
.section-header .label-tag { margin-bottom: var(--space-4); }
.section-header h2 { margin-bottom: var(--space-4); }
.section-desc { font-size: var(--text-base); line-height: 1.7; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

.service-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-smooth);
}
.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon { font-size: 2rem; }
.service-card h3 { font-size: var(--text-lg); font-weight: 700; color: var(--color-secondary); }
.service-card p  { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; flex: 1; }

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}
.service-price { font-size: var(--text-sm); color: var(--color-text-muted); }
.service-price strong { color: var(--color-primary); font-weight: 700; }
.service-cta { font-size: var(--text-sm); font-weight: 600; color: var(--color-primary); }

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--color-bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  opacity: 0.2;
}

.step-item { text-align: center; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: white;
  font-size: var(--text-base);
  font-weight: 800;
  font-family: var(--font-display);
  margin: 0 auto var(--space-5);
  position: relative;
  z-index: 1;
}
.step-item h3 { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--space-2); }
.step-item p  { font-size: var(--text-sm); color: var(--color-text-muted); max-width: 22ch; margin-inline: auto; }

/* ===== PRICING ===== */
.pricing-section { background: var(--color-surface-2); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.pricing-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
}
.pricing-card--featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.plan-name   { font-size: var(--text-lg); font-weight: 800; font-family: var(--font-display); color: var(--color-secondary); }
.plan-ideal  { font-size: var(--text-xs); color: var(--color-text-muted); }

.plan-price { display: flex; align-items: baseline; gap: var(--space-1); }
.price-num  { font-size: var(--text-2xl); font-weight: 800; font-family: var(--font-display); color: var(--color-text); }
.price-period { font-size: var(--text-sm); color: var(--color-text-muted); }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }
.plan-features li { font-size: var(--text-sm); line-height: 1.5; }
.feat-no   { color: var(--color-text-faint); text-decoration: line-through; }
.feat-note { font-size: var(--text-xs); color: var(--color-text-muted); padding-top: var(--space-1); }

.pricing-card .btn { margin-top: var(--space-2); }

.pricing-note {
  text-align: center;
  margin-top: var(--space-8);
  max-width: none;
}

/* ===== ABOUT ===== */
.about-section { background: var(--brand-navy); color: white; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-text .label-tag { background: rgba(255,255,255,0.12); color: white; margin-bottom: var(--space-5); }
.about-text h2 { color: white; margin-bottom: var(--space-6); }
.about-text p  { color: rgba(255,255,255,0.75); margin-bottom: var(--space-4); max-width: none; }

.about-badges { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.about-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.about-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
}
.stat-big  { font-size: var(--text-2xl); font-weight: 800; font-family: var(--font-display); color: var(--color-primary); }
.stat-desc { font-size: var(--text-xs); color: rgba(255,255,255,0.6); margin-top: var(--space-1); }

/* ===== FAQ ===== */
.faq-section { background: var(--color-bg); }
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }

.faq-item {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item:hover  { border-color: var(--color-primary); }
.faq-item[open]  { border-color: var(--color-primary); }

.faq-item summary {
  cursor: pointer;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.faq-item summary::after {
  content: '+';
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.faq-item[open] summary::after { content: '−'; }

.faq-answer {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-divider);
  max-width: none;
}

/* ===== CONTACT ===== */
.contact-section { background: var(--color-surface-2); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-text .label-tag { margin-bottom: var(--space-4); }
.contact-text h2 { margin-bottom: var(--space-4); }
.contact-text > p { color: var(--color-text-muted); margin-bottom: var(--space-8); }

.contact-channels { display: flex; flex-direction: column; gap: var(--space-3); }
.contact-channel {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.contact-channel:hover { border-color: var(--color-primary); box-shadow: var(--shadow-sm); }

.channel-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.channel-wa    { background: #25D366; color: white; }
.channel-email { background: var(--brand-orange-light); color: var(--color-primary); }
.channel-ig    { background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%); color: white; }

.channel-name   { font-weight: 600; font-size: var(--text-sm); }
.channel-detail { font-size: var(--text-xs); color: var(--color-text-muted); }

.contact-form-wrap {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}
.contact-form { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-form h3 { margin-bottom: var(--space-2); }

/* ===== FOOTER ===== */
.site-footer { background: var(--color-secondary); color: rgba(255,255,255,0.7); padding-top: var(--space-16); }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  padding-bottom: var(--space-12);
}

.footer-brand .logo { margin-bottom: var(--space-4); }
.footer-brand p { font-size: var(--text-sm); line-height: 1.6; max-width: 28ch; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.footer-col { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-heading { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: var(--space-1); }
.footer-col a { font-size: var(--text-sm); color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--space-5);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ===== WA FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  background: #25D366;
  color: white;
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.wa-float:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 2px;
  flex-shrink: 0;
}
/* Divider hidden globally — pill shape separates the two flags clearly */
.lang-divider { display: none; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}
.lang-btn .lang-flag { font-size: 1.35rem; line-height: 1; font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif; }
/* Label hidden globally — flags are self-explanatory on all screen sizes */
.lang-btn .lang-label { display: none; }
.lang-btn.lang-active {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--color-primary) 40%, transparent);
}
.lang-btn:not(.lang-active):hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
}
.lang-divider {
  width: 1px;
  height: 16px;
  background: var(--color-border);
  border-radius: 1px;
  flex-shrink: 0;
}

/* Hero content stacking context */
.hero-inner, .hero-content { position: relative; z-index: 1; }

/* ===== PREMIUM DEPTH — Stat cards ===== */
.hero-card-stack {
  position: relative;
  padding: var(--space-6);
}
.stat-card {
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.stat-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-xl);
}
/* Staggered 3D offset to create depth illusion */
.stat-card--1 { transform: translateX(16px); }
.stat-card--2 { transform: translateX(-8px); }
.stat-card--3 { transform: translateX(8px); }

/* ===== PREMIUM DEPTH — Service cards ===== */
.service-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--brand-orange-light), color-mix(in srgb, var(--color-primary) 6%, var(--color-surface)));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  flex-shrink: 0;
}
.service-card .service-icon {
  font-size: 1.6rem;
  display: block;
  line-height: 1;
}
.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--color-primary) 25%, transparent);
}
/* Give service cards real depth */
.service-card {
  box-shadow: var(--shadow-sm);
  background: var(--color-surface);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ===== PREMIUM DEPTH — How it works ===== */
.step-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.step-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 4%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}
.step-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-item:hover::before { opacity: 1; }
.step-num {
  box-shadow: 0 4px 16px color-mix(in srgb, var(--color-primary) 35%, transparent);
}

/* ===== PREMIUM DEPTH — Pricing cards ===== */
.pricing-card {
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.pricing-card:not(.pricing-card--featured):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card--featured {
  background: linear-gradient(160deg, var(--color-surface) 0%, color-mix(in srgb, var(--color-primary) 4%, var(--color-surface)) 100%);
  box-shadow: var(--shadow-lg), 0 0 0 1px color-mix(in srgb, var(--color-primary) 30%, transparent);
}

/* ===== PREMIUM DEPTH — About stat boxes ===== */
.about-stat {
  transition: transform var(--transition-smooth), background var(--transition-smooth);
}
.about-stat:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}

/* ===== PREMIUM DEPTH — Contact form ===== */
.contact-form-wrap {
  box-shadow: var(--shadow-lg);
  background: var(--color-surface);
}

/* ===== PREMIUM DEPTH — Section backgrounds ===== */
.how-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface-2) 100%);
}
.faq-section {
  background: var(--color-bg);
  position: relative;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-divider), transparent);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children if parent has .reveal-stagger */
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 240ms; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  /* Non-hero sections stack at 1024px */
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .about-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  /* Hero narrows the fixed right column on tablet */
  .hero-inner {
    grid-template-columns: 1fr 380px;
    padding-left: clamp(1rem, 3vw, 2.5rem);
  }
  .hero-person {
    height: clamp(400px, 50vw, 560px);
  }
}

@media (max-width: 700px) {
  /* Hero stacks on mobile — person ABOVE copy */
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    padding-left: 0;
  }
  /* Flip order: visual row 1, content row 2 */
  .hero-visual {
    order: -1;
    justify-content: center;
    align-items: flex-end;
    min-height: 260px;
    height: 260px;
  }
  .hero-visual::before {
    background:
      radial-gradient(ellipse 100% 90% at 50% 80%, rgba(232,80,10,0.22) 0%, rgba(255,140,60,0.12) 45%, transparent 75%),
      radial-gradient(ellipse 70% 60% at 50% 100%, rgba(232,80,10,0.15) 0%, transparent 65%);
  }
  .hero-person {
    height: 260px;
    width: auto;
    max-width: 80%;
    object-position: bottom center;
  }
  .hero-content {
    order: 0;
    max-width: 100%;
    padding: 1.25rem var(--space-5) 2rem;
    justify-content: flex-start;
  }
  /* Tighten heading so it doesn't push desc off-screen */
  .hero-heading {
    font-size: clamp(2rem, 9vw, 2.8rem);
    margin-bottom: var(--space-3);
  }
  /* Slightly smaller desc text on mobile */
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: var(--space-5);
    max-width: 100%;
  }
  /* Compact CTA row */
  .hero-ctas {
    margin-bottom: var(--space-4);
    gap: var(--space-2);
  }
  /* Hide proof stats on mobile — save vertical space */
  .hero-proof {
    display: none;
  }
}

@media (max-width: 768px) {
  .lang-divider { display: none; }
  .lang-toggle { padding: 2px; gap: 1px; }
  .lang-btn { padding: var(--space-2); }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.open {
    display: flex;
    position: fixed;
    inset: 68px 0 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: var(--space-8);
    z-index: 99;
    border-top: 1px solid var(--color-divider);
  }
  .site-nav.open ul { flex-direction: column; gap: var(--space-4); }
  .site-nav.open a { font-size: var(--text-lg); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: var(--space-2); text-align: center; }
  .trust-bar-inner { flex-direction: column; gap: var(--space-2); text-align: center; }
  .trust-divider { display: none; }
  .wa-float span { display: none; }
  .wa-float { padding: var(--space-4); }

  /* === How it works — single column on mobile === */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .steps-grid::before { display: none; }

  /* === Pricing — more breathable on mobile === */
  .plan-features li {
    font-size: 0.875rem;
    line-height: 1.55;
  }
  .feat-no {
    font-size: 0.825rem;
  }
  .pricing-card {
    padding: var(--space-6);
  }

  /* === Section header — tighter on mobile === */
  .section-header {
    margin-bottom: var(--space-8);
  }
  .section-header h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  /* === About badges — wrap nicely === */
  .about-badges {
    gap: var(--space-2);
  }

  /* === Contact channels — slightly more compact === */
  .contact-channel {
    padding: var(--space-3) var(--space-4);
  }
}
