/* =========================================================
   KELINHO ÁVILA — Online Fight Coaching Landing Page
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol { margin: 0; }
ul { list-style: none; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- Variables ---------- */
:root{
  --bg: #0a0a0c;
  --bg-alt: #121215;
  --surface: #18181c;
  --surface-2: #1e1e23;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);

  --white: #f6f5f2;
  --muted: #a4a4ab;
  --muted-2: #77777e;

  --gold: #d4af37;
  --gold-bright: #f0c14b;
  --gold-dim: rgba(212,175,55,0.14);

  --green: #14a05c;
  --green-dim: rgba(20,160,92,0.14);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.6);
  --shadow-gold: 0 10px 30px -8px rgba(212,175,55,0.45);

  --ease: cubic-bezier(.16,.84,.44,1);
}

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

.container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography helpers ---------- */
.eyebrow{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow.center{ text-align: center; }

.section-title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.section-title.center{ text-align: center; }

.section-lead{
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
}
.section-lead.center{ margin: 0 auto; text-align: center; }

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

section[class] { padding: 96px 0; position: relative; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #16130a;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(212,175,55,0.55); }
.btn-ghost{
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--white);
}
.btn-ghost:hover{ border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-large{ padding: 18px 34px; font-size: 16px; }
.btn-small{ padding: 10px 20px; font-size: 13px; }
.btn-full{ width: 100%; }

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header.scrolled{
  padding: 14px 0;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo{
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.05em;
}
.logo span{ color: var(--gold); }

.main-nav{
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link{
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s var(--ease);
}
.nav-link:hover{ color: var(--white); }
.nav-cta{ margin-left: 8px; }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span{
  width: 24px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  display: flex;
  min-height: 100vh;
  align-items: stretch;
  padding-top: 90px;
}
.hero-content{
  flex: 1 1 54%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 6vw 60px 24px;
  max-width: 640px;
}
.hero-title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.hero-subtitle{
  color: var(--muted);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-trust{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.hero-media{
  flex: 1 1 46%;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.hero-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-media::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(10,10,12,0) 16%);
  z-index: 1;
}
.hero-media::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0) 45%);
  z-index: 1;
}

/* ---------- Authority ---------- */
.authority{ background: var(--bg-alt); }
.authority-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.authority-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.authority-card:hover{ transform: translateY(-4px); border-color: var(--gold-dim); }
.authority-icon{
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--gold-dim);
  color: var(--gold);
  margin-bottom: 20px;
}
.authority-card h3{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.authority-card p{ color: var(--muted); font-size: 14.5px; }

/* ---------- About ---------- */
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media{ position: relative; }
.about-media img{
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  box-shadow: var(--shadow-lg);
}
.about-media-frame{
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about-content p{ color: var(--muted); margin-bottom: 18px; font-size: 16px; }
.pull-quote{
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 22px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-top: 24px;
}

/* ---------- Gallery ---------- */
.gallery{ background: var(--bg); overflow: hidden; }
.gallery .container{ margin-bottom: 46px; }
.gallery-track{ width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); }
.gallery-track-inner{
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scroll-left 46s linear infinite;
}
.gallery-track-inner img{
  height: 280px;
  width: auto;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  filter: grayscale(15%);
  transition: filter .3s var(--ease);
}
.gallery-track-inner img:hover{ filter: grayscale(0%); }
@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ---------- Programs ---------- */
.programs{ background: var(--bg-alt); }
.programs-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.program-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.program-card:hover{ transform: translateY(-4px); border-color: var(--gold-dim); }
.program-media{ height: 220px; overflow: hidden; }
.program-media img{ width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s var(--ease); }
.program-card:hover .program-media img{ transform: scale(1.05); }
.program-card--icon{ justify-content: flex-start; }
.program-icon{
  margin: 30px 0 0 30px;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--gold-dim);
  color: var(--gold);
}
.program-body{ padding: 26px 30px 30px; }
.program-tag{
  display: inline-block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.program-body h3{ font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.program-body p{ color: var(--muted); font-size: 14.5px; }

/* ---------- How it works ---------- */
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.step{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 26px;
  position: relative;
}
.step-number{
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.step h3{ font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step p{ color: var(--muted); font-size: 14px; }
.how-cta{ text-align: center; margin-top: 50px; }

.steps--three{ grid-template-columns: repeat(3, 1fr); max-width: 940px; margin: 50px auto 0; }

/* ---------- Who it's for ---------- */
.who-for{ background: var(--bg-alt); }
.who-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 50px;
}
.who-card{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.who-check{
  flex-shrink: 0;
  color: var(--green);
  background: var(--green-dim);
  border-radius: 50%;
  padding: 6px;
  width: 34px; height: 34px;
}
.who-card p{ font-size: 15px; font-weight: 500; padding-top: 4px; }

/* ---------- Assessment Form ---------- */
.assessment{ background: var(--bg); }
.assessment-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: stretch;
}
.assessment-media{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
}
.assessment-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 85% 15%;
  position: absolute; inset: 0;
}
.assessment-media::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.9) 10%, rgba(10,10,12,0.05) 60%);
}
.assessment-quote{
  position: relative;
  z-index: 2;
  align-self: flex-end;
  margin-top: auto;
  padding: 30px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
}
.assessment-media{ display: flex; flex-direction: column; }

.assessment-form-wrap{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
}
.form-alert{
  background: rgba(214,74,74,0.12);
  border: 1px solid rgba(214,74,74,0.4);
  color: #ff9b9b;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 22px;
}
.form-alert.success{
  background: var(--green-dim);
  border-color: rgba(20,160,92,0.4);
  color: #6fe3ab;
}
.assessment-form{ display: flex; flex-direction: column; gap: 18px; }
.form-row{ display: flex; flex-direction: column; gap: 8px; }
.form-row-split{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label{ font-size: 13.5px; font-weight: 600; color: var(--muted); }
.form-row label span{ color: var(--gold); }
.form-row input, .form-row select, .form-row textarea{
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-row input.invalid, .form-row select.invalid, .form-row textarea.invalid{
  border-color: #d64a4a;
}
.form-row textarea{ resize: vertical; min-height: 100px; }
.form-row 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='%23a4a4ab' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 44px; }
.form-microcopy{ text-align: center; font-size: 13px; color: var(--muted-2); margin-top: 4px; }

.hp-field{ position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- FAQ ---------- */
.faq-list{ max-width: 780px; margin: 50px auto 0; }
.faq-item{
  border-bottom: 1px solid var(--border);
}
.faq-question{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
}
.faq-icon{ color: var(--gold); flex-shrink: 0; transition: transform .3s var(--ease); }
.faq-item.open .faq-icon{ transform: rotate(180deg); }
.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
}
.faq-item.open .faq-answer{ padding-bottom: 22px; }
.faq-answer p{ color: var(--muted); font-size: 15px; max-width: 680px; }

/* ---------- Final CTA ---------- */
.final-cta{
  padding: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.final-cta-media{ position: absolute; inset: 0; z-index: 0; }
.final-cta-media img{ width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.final-cta-media::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,7,0.96) 10%, rgba(6,6,7,0.75) 55%, rgba(6,6,7,0.55) 100%);
}
.final-cta-content{
  position: relative; z-index: 1;
  text-align: center;
  padding: 110px 24px;
}
.final-cta-content h2{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.final-cta-content p{
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 34px;
  font-size: 17px;
}

/* ---------- Footer ---------- */
.site-footer{ background: var(--bg-alt); border-top: 1px solid var(--border); padding-top: 60px; }
.footer-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p{ color: var(--muted); margin-top: 10px; font-size: 14px; }
.footer-nav{ display: flex; flex-wrap: wrap; gap: 24px; }
.footer-nav a, .footer-contact a{ color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s var(--ease); }
.footer-nav a:hover, .footer-contact a:hover{ color: var(--gold); }
.footer-contact{ display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-bottom{ padding: 24px; text-align: center; }
.footer-bottom p{ color: var(--muted-2); font-size: 13px; }

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float{
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  background: #22c35e;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(34,195,94,0.6);
  z-index: 90;
  animation: pulse-wa 2.6s ease-in-out infinite;
}
.whatsapp-float:hover{ transform: scale(1.08); }
@keyframes pulse-wa{
  0%, 100%{ box-shadow: 0 10px 30px -6px rgba(34,195,94,0.6); }
  50%{ box-shadow: 0 10px 30px -6px rgba(34,195,94,0.9), 0 0 0 10px rgba(34,195,94,0.12); }
}

/* ---------- Thank You Page ---------- */
.ty-header-back{ display: inline-flex; align-items: center; gap: 8px; }

.ty-hero{
  padding-top: 168px;
  padding-bottom: 70px;
  overflow: hidden;
  position: relative;
}
.ty-hero::before{
  content: "";
  position: absolute;
  top: -15%; left: -12%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.ty-hero-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.ty-badge{
  position: relative;
  width: 104px; height: 104px;
  margin-bottom: 30px;
  display: flex; align-items: center; justify-content: center;
}
.ty-badge-pulse{
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0;
  animation: ty-pulse 2.6s ease-out infinite;
}
.ty-badge-pulse--delay{ animation-delay: 1.3s; }
@keyframes ty-pulse{
  0%{ transform: scale(0.72); opacity: 0.65; }
  100%{ transform: scale(1.5); opacity: 0; }
}
.ty-badge-circle{
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  transform: scale(0.6);
  animation: ty-pop .5s var(--ease) .1s forwards;
}
@keyframes ty-pop{ to{ opacity: 1; transform: scale(1); } }
.ty-badge-circle svg{ color: #16130a; }
.ty-check-path{
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: ty-draw .5s var(--ease) .5s forwards;
}
@keyframes ty-draw{ to{ stroke-dashoffset: 0; } }

.ty-title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.ty-lead{ color: var(--muted); font-size: 17px; max-width: 520px; margin-bottom: 16px; }
.ty-actions{ display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; }

.ty-hero-media{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.ty-hero-media img{ width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.ty-hero-media::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.5) 0%, rgba(10,10,12,0) 45%);
}

.ty-next{ background: var(--bg-alt); }

/* ---------- Scroll reveal ----------
   Visible by default so content never depends on JS running.
   Only hidden-then-revealed when script.js confirms it can drive it. */
.reveal{ transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal{ opacity: 0; transform: translateY(28px); }
html.js .reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px){
  .hero{ flex-direction: column; min-height: auto; }
  .hero-content{ max-width: 100%; padding: 50px 24px 40px; }
  .hero-media{ min-height: 60vh; order: -1; }
  .hero-media::before{ background: linear-gradient(to bottom, var(--bg) 0%, rgba(10,10,12,0) 20%); }

  .about-grid{ grid-template-columns: 1fr; gap: 40px; }
  .about-media-frame{ display: none; }

  .assessment-grid{ grid-template-columns: 1fr; }
  .assessment-media{ min-height: 260px; }

  .steps{ grid-template-columns: repeat(2, 1fr); }
  .programs-grid{ grid-template-columns: 1fr; }

  .ty-hero{ padding-top: 130px; }
  .ty-hero-grid{ grid-template-columns: 1fr; gap: 40px; }
  .ty-hero-media{ aspect-ratio: 16/10; order: -1; }
}

@media (max-width: 780px){
  section[class]{ padding: 70px 0; }

  .main-nav{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--bg-alt);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }
  .main-nav.open{ transform: translateX(0); }
  .nav-cta{ margin-left: 0; }
  .nav-toggle{ display: flex; }

  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ width: 100%; }

  .ty-actions{ flex-direction: column; align-items: stretch; }
  .ty-actions .btn{ width: 100%; }

  .form-row-split{ grid-template-columns: 1fr; }
  .assessment-form-wrap{ padding: 28px; }

  .footer-inner{ flex-direction: column; }
  .footer-contact{ align-items: flex-start; }

  .steps{ grid-template-columns: 1fr; }
  .whatsapp-float{ width: 54px; height: 54px; bottom: 18px; right: 18px; }
}
