/* ============================================================
   FeniXSalud — Design System
   Paleta hermana de fenixsalud-guia: verde bosque + dorado
   + base "salud natural" (crema, verde salvia, tinta verde-carbón)
   ============================================================ */

:root {
  /* Base neutra (hermana de fenixsalud-guia) */
  --cream: #FAF7EE;
  --white: #FFFFFF;
  --ink: #172420;
  --ink-soft: #4B5A53;
  --ink-faint: #8A988E;
  --sage: #F2EDE0;
  --border: rgba(11, 61, 42, 0.10);

  /* Verde (naturaleza / salud) */
  --green-deep: #0B3D2A;
  --green-mid: #0F5C3D;
  --green-light: #6FCF9E;

  /* Dorado (fénix) */
  --gold-deep: #8C6D0F;
  --gold: #C9A227;
  --gold-light: #E6C869;

  --gradient-fenix: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  --gradient-green: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 100%);

  --shadow-soft: 0 20px 50px -25px rgba(30, 42, 34, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(30, 42, 34, 0.25);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --font-head: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
svg { width: 22px; height: 22px; flex-shrink: 0; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; color: var(--ink); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.08rem; }
em { font-style: italic; background: var(--gradient-fenix); -webkit-background-clip: text; background-clip: text; color: transparent; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 560px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.96rem;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--gradient-fenix); color: #fff; box-shadow: var(--shadow-card); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(11, 61, 42, 0.4); }
.btn-ghost { border-color: var(--border); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-gold { background: #fff; color: var(--green-deep); box-shadow: var(--shadow-card); }
.btn-gold:hover { transform: translateY(-2px); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 20px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-header.is-scrolled { background: rgba(251, 247, 239, 0.92); backdrop-filter: blur(10px); box-shadow: 0 8px 30px -20px rgba(30,42,34,0.4); padding: 12px 0; }

.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.brand img { height: 40px; width: auto; }

.nav-desktop { display: flex; align-items: center; gap: 30px; }
.nav-desktop a { font-size: 0.95rem; font-weight: 600; color: var(--ink-soft); position: relative; padding: 4px 0; }
.nav-desktop a:hover { color: var(--gold-deep); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border); background: var(--white);
  font-weight: 700; font-size: 0.8rem; color: var(--ink-soft);
  cursor: pointer; transition: border-color 0.25s ease, color 0.25s ease;
  text-decoration: none;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold-deep); }

.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; border: none; background: transparent; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 0 auto; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.overlay { position: fixed; inset: 0; background: rgba(15, 20, 17, 0.5); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 600; }
.overlay.is-visible { opacity: 1; pointer-events: auto; }

.nav-mobile {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 82vw);
  background: var(--white); z-index: 700;
  transform: translateX(100%); transition: transform 0.35s ease;
  padding: 90px 32px 40px; display: flex; flex-direction: column;
}
.nav-mobile.is-open { transform: translateX(0); }
.nav-close { position: absolute; top: 22px; right: 22px; width: 40px; height: 40px; border: none; background: var(--sage); border-radius: 50%; font-size: 1.4rem; cursor: pointer; color: var(--ink); }
.nav-mobile ul { display: flex; flex-direction: column; gap: 22px; }
.nav-mobile a { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; }

/* ===== Hero ===== */
.hero {
  padding: 170px 0 100px; position: relative; overflow: hidden;
  background-image:
    linear-gradient(90deg, var(--cream) 0%, var(--cream) 38%, rgba(250,247,238,0.8) 55%, rgba(250,247,238,0.4) 75%, rgba(250,247,238,0.18) 100%),
    url('../assets/img/hero-bg.jpg');
  background-size: auto, cover;
  background-position: left, right 20%;
  background-repeat: no-repeat, no-repeat;
}
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero h1 { margin-bottom: 20px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-stats { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: 1.6rem; color: var(--green-deep); }
.hero-stats span { font-size: 0.84rem; color: var(--ink-faint); max-width: 140px; }

.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--ink-soft);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.social-row a svg { width: 18px; height: 18px; }
.social-row a:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-3px); }

.hero-media { position: relative; display: flex; align-items: flex-end; justify-content: center; height: 560px; }
.halo-ring {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  border: 2px dashed rgba(201, 162, 39, 0.45); top: -25px; z-index: 1;
  animation: spin 40s linear infinite;
}
.halo {
  position: absolute; width: 430px; height: 430px; border-radius: 50%;
  background: var(--gradient-green); top: 10px; box-shadow: var(--shadow-soft); z-index: 1;
}
.founder {
  position: relative; z-index: 2; width: 430px; max-width: 92%; height: auto;
  border-radius: 0; border: none; box-shadow: none;
  filter: drop-shadow(0 20px 30px rgba(11, 61, 42, 0.3));
}
@keyframes spin { to { transform: rotate(360deg); } }

.badge-float {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: var(--white); padding: 10px 16px; border-radius: 999px;
  box-shadow: var(--shadow-card); font-size: 0.82rem; font-weight: 700; color: var(--ink);
}
.badge-float svg { width: 16px; height: 16px; color: var(--gold-deep); }
.badge-1 { top: 50px; left: -10px; z-index: 3; animation: float 6s ease-in-out infinite; }
.badge-2 { bottom: 70px; right: -20px; z-index: 3; animation: float 6s ease-in-out infinite 1.4s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== Quote band ===== */
.quote-band { background: var(--gradient-green); padding: 70px 0; position: relative; overflow: hidden; }
.quote-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(231,180,75,0.18), transparent 55%); }
.quote-band .container { position: relative; z-index: 1; text-align: center; max-width: 780px; }
.quote-band p.quote { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.1rem); color: #fff; font-weight: 600; line-height: 1.35; }
.quote-band p.quote-sub { color: rgba(255,255,255,0.78); margin-top: 18px; font-size: 1rem; }

/* ===== About ===== */
.about { padding: 110px 0; }
.about .container { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-visual .frame {
  background: var(--gradient-green); border-radius: var(--radius-lg); padding: 44px; color: #fff;
  box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
}
.about-visual .frame::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 90% 90%, rgba(231,180,75,0.25), transparent 60%); }
.about-visual .frame > * { position: relative; z-index: 1; }
.about-visual .frame h3 { color: #fff; margin: 14px 0 16px; font-size: 1.5rem; text-align: center; }
.about-visual .frame p { color: rgba(255,255,255,0.85); text-align: justify; }
.about-copy h2 { text-align: center; }
.about-copy > p { text-align: justify; }
.about-visual .founder-photo { width: 100%; border-radius: var(--radius-md); margin-bottom: 24px; object-fit: cover; max-height: 260px; }
.about-visual .founder-3d {
  width: auto; max-width: 78%; max-height: 300px; margin: 0 auto 24px; display: block;
  border-radius: 0; object-fit: contain; background: var(--sage); padding: 20px 0 0;
  border-radius: var(--radius-md);
}

.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 32px; }
.pillar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; transition: transform 0.25s ease, box-shadow 0.25s ease; min-width: 0; }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pillar svg { color: var(--gold-deep); margin-bottom: 12px; }
.pillar h4 { margin-bottom: 6px; }
.pillar p { font-size: 0.9rem; color: var(--ink-soft); }

/* ===== Section head ===== */
.section-head { max-width: 640px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-soft); margin-top: 10px; }

/* ===== Filosofía (5 fuentes) ===== */
.philosophy { padding: 100px 0; background: var(--sage); }
.sources-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.source-card {
  background: var(--white); border-radius: var(--radius-md); padding: 0; overflow: hidden;
  text-align: left; box-shadow: var(--shadow-card); min-width: 0;
  transition: transform 0.25s ease;
}
.source-card:hover { transform: translateY(-6px); }
.source-card .photo { height: 130px; }
.source-card .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.source-card .icon-wrap {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-fenix);
  display: flex; align-items: center; justify-content: center; color: #fff;
  margin: -22px 0 0 20px; position: relative; z-index: 2; border: 4px solid var(--white);
}
.source-card .content { padding: 14px 20px 22px; }
.source-card .num { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; color: var(--gold-deep); }
.source-card h4 { margin: 6px 0 8px; }
.source-card p { font-size: 0.88rem; color: var(--ink-soft); }

/* ===== Metodología ===== */
.methodology { padding: 110px 0; }
.method-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.method-grid .method-card { flex: 0 1 calc(25% - 16.5px); min-width: 240px; }
.method-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 0; overflow: hidden; min-width: 0; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.method-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: transparent; }
.method-card .photo { height: 120px; }
.method-card .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.method-card .icon-wrap {
  width: 46px; height: 46px; border-radius: 14px; background: var(--gradient-fenix);
  display: flex; align-items: center; justify-content: center; color: #fff;
  margin: -23px 0 14px 20px; position: relative; z-index: 2; border: 4px solid var(--white);
}
.method-card .content { padding: 0 20px 22px; }
.method-card h4 { margin-bottom: 8px; }
.method-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* ===== Condiciones / servicios ===== */
.conditions { padding: 110px 0; background: var(--green-deep); color: #fff; position: relative; overflow: hidden; }
.conditions::before { content:""; position:absolute; top:-150px; left:-150px; width:400px; height:400px; background: var(--gradient-fenix); opacity:0.12; border-radius:50%; filter: blur(20px); }
.conditions .section-head h2 { color: #fff; }
.conditions .section-head p { color: rgba(255,255,255,0.72); }
.conditions .eyebrow { color: var(--gold-light); }
.conditions .container { position: relative; z-index: 1; }
.conditions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 40px; }
.condition-chip {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm); padding: 20px 16px; text-align: center;
  font-weight: 600; font-size: 0.92rem; min-width: 0; overflow-wrap: anywhere;
  transition: background 0.25s ease, transform 0.25s ease;
}
.condition-chip:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.scope-note {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md); padding: 24px 26px;
}
.scope-note svg { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.scope-note p { color: rgba(255,255,255,0.82); font-size: 0.94rem; }
.scope-note strong { color: #fff; }

/* ===== Diagnóstico ===== */
.diagnosis { padding: 110px 0; }
.diagnosis .container { display: grid; grid-template-columns: 1fr 0.85fr; gap: 60px; align-items: start; }
.diag-methods { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.diag-methods span { background: var(--white); border: 1px solid var(--border); padding: 9px 16px; border-radius: 999px; font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); }
.alert-list { margin-top: 30px; }
.alert-list h4 { margin-bottom: 12px; font-size: 1rem; }
.alert-list ul { display: flex; flex-wrap: wrap; gap: 8px; }
.alert-list li { font-size: 0.82rem; color: var(--ink-soft); background: var(--sage); padding: 6px 12px; border-radius: 999px; }

.balance-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-soft); text-align: center; border-top: 5px solid transparent;
  border-image: var(--gradient-fenix) 1;
}
.balance-ratio { font-family: var(--font-head); font-size: 3.2rem; font-weight: 700; background: var(--gradient-fenix); -webkit-background-clip: text; background-clip: text; color: transparent; }
.balance-card h4 { margin: 10px 0 12px; }
.balance-card p { font-size: 0.92rem; color: var(--ink-soft); }
.balance-bar { height: 12px; border-radius: 999px; background: var(--gold); overflow: hidden; margin: 22px 0 10px; position: relative; }
.balance-bar span { position: absolute; left: 0; top: 0; bottom: 0; width: 80%; background: var(--green-mid); }
.balance-legend { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--ink-faint); font-weight: 600; }

/* ===== Presencia LATAM ===== */
.latam { padding: 100px 0; background: var(--sage); }
.latam-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.latam-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border); border-radius: 999px;
  padding: 14px 26px; font-weight: 600; font-size: 0.98rem; color: var(--ink);
  box-shadow: var(--shadow-card); transition: transform 0.25s ease;
}
.latam-chip:hover { transform: translateY(-3px); }
.latam-chip .flag { width: 24px; height: 18px; object-fit: cover; border-radius: 3px; box-shadow: 0 0 0 1px rgba(11,61,42,0.1); }

/* ===== CTA band ===== */
.cta-band {
  background: var(--gradient-green); border-radius: var(--radius-lg);
  margin: 0 24px; max-width: 1132px; margin-inline: auto;
  padding: 80px 40px; text-align: center; color: #fff; position: relative;
}
.cta-band::before { content:""; position:absolute; bottom:40px; right:20px; width:280px; height:280px; background: var(--gradient-fenix); opacity:0.16; border-radius:50%; filter: blur(20px); z-index: 0; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .social-row { justify-content: center; margin-top: 34px; }
.cta-band .social-row a { border-color: rgba(255,255,255,0.25); color: #fff; }
.cta-band .social-row a:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ===== Contact form ===== */
.contact-form-wrap { max-width: 640px; margin: 40px auto 0; }
.contact-form {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-card); text-align: left;
}
.contact-form h3 { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 16px; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--cream); resize: vertical; transition: border-color 0.25s ease;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { margin-bottom: 20px; min-height: 110px; }
.contact-form button { width: 100%; justify-content: center; }

/* ===== Footer ===== */
.site-footer { padding: 90px 0 30px; position: relative; overflow: hidden; }
.footer-deco {
  position: absolute; right: 2%; bottom: 0; width: 220px; height: auto;
  opacity: 0.92; pointer-events: none; z-index: 0;
}
.footer-grid, .footer-bottom { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--border); }
.footer-col { min-width: 0; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; margin-bottom: 14px; }
.footer-brand img { height: 34px; }
.footer-col p { color: var(--ink-soft); font-size: 0.9rem; overflow-wrap: anywhere; }
.footer-col h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: var(--ink-soft); overflow-wrap: anywhere; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-deep); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: var(--ink-faint); }

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%; background: var(--gradient-fenix);
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 14px 30px -10px rgba(11,61,42,0.45);
  animation: pulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 26px; height: 26px; }
@keyframes pulse { 0%,100% { box-shadow: 0 14px 30px -10px rgba(11,61,42,0.45); } 50% { box-shadow: 0 14px 30px -6px rgba(11,61,42,0.6); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero .container, .about .container, .diagnosis .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; margin-bottom: 20px; height: 420px; }
  .halo { width: 320px; height: 320px; }
  .halo-ring { width: 370px; height: 370px; top: -15px; }
  .founder { width: 320px; }
  .hero { background-image: none; }
  .about-visual { max-width: 460px; }
  .method-grid .method-card { flex-basis: calc(50% - 11px); }
  .sources-grid { grid-template-columns: repeat(3, 1fr); }
  .conditions-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-deco { width: 150px; opacity: 0.6; }
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero { padding: 130px 0 70px; }
  .hero-stats { gap: 24px; }
  .btn-text-label { display: none; }
  .btn.header-wa { padding: 12px; }
  .sources-grid { grid-template-columns: repeat(2, 1fr); }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid .method-card { flex-basis: 100%; }
  .steps { grid-template-columns: 1fr; }
  .about-visual .frame { padding: 30px; }
  .cta-band { padding: 56px 24px; margin: 0 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .balance-card { padding: 28px; }
  .contact-form { padding: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-deco { display: none; }
  .badge-float { font-size: 0.72rem; padding: 8px 12px; }
  .badge-1 { left: 0; top: 2%; }
  .badge-2 { right: 0; bottom: 2%; }
}
