/* ============================================
   PRATAP MOTORS — Main Stylesheet
   Mobile-first. Desktop enhanced.
   ============================================ */

:root {
  --black:    #0a0a0a;
  --charcoal: #141414;
  --steel:    #1e1e1e;
  --fire:     #ff4d00;
  --amber:    #ffaa00;
  --white:    #f0ece4;
  --muted:    #888888;
  --border:   #2a2a2a;
  --nav-h:    64px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* Noise texture — purely decorative */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

/* ── CURSOR ─────────────────────────────── */
.c-dot, .c-ring {
  display: none; /* hidden until JS confirms mouse device */
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  top: -200px; left: -200px;
  opacity: 0;
  transition: opacity 0.2s;
}
.c-dot  { width: 8px; height: 8px; background: #fff; }
.c-ring {
  width: 34px; height: 34px;
  border: 2px solid var(--fire);
  background: transparent;
  transition: width 0.18s, height 0.18s, border-color 0.18s, opacity 0.2s;
}
.c-ring.hover { width: 50px; height: 50px; border-color: var(--amber); }
body.has-cursor         { cursor: none !important; }
body.has-cursor *       { cursor: none !important; }
body.has-cursor .c-dot,
body.has-cursor .c-ring { display: block; opacity: 1; }

/* ── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.4rem;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,77,0,0.18);
  box-shadow: 0 2px 40px rgba(0,0,0,0.6);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 0.12em;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 0.35em;
}
.nav-logo .o { color: var(--fire); }
.nav-links { display: none; list-style: none; gap: 2rem; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fire); }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--fire); color: var(--black);
  padding: 0.55rem 1.1rem; text-decoration: none;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--amber); }

/* ── HERO ────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  padding: var(--nav-h) 1.4rem 3rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(135deg, rgba(255,77,0,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 20%, rgba(10,5,2,0.25) 0%, transparent 60%);
}
.gear-ring { display: none; }
.hero-inner { position: relative; z-index: 2; }

/* Label — shown immediately, short animation */
.hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--fire);
  margin-bottom: 1rem; display: block;
  opacity: 1; /* always visible */
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 15vw, 5rem);
  line-height: 0.9; color: var(--white);
  animation: fadeUp 0.7s 0.2s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title .accent { color: var(--fire); }
.hero-title .dim    { color: var(--muted); opacity: 0.55; }

.hero-sub {
  margin-top: 1.2rem;
  font-size: 0.93rem; line-height: 1.75; color: #aaa;
  animation: fadeUp 0.7s 0.35s both;
}
.hero-actions {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 1rem; margin-top: 2rem;
  animation: fadeUp 0.7s 0.5s both;
}
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--fire); color: var(--black);
  padding: 1rem 2.2rem; text-decoration: none; display: inline-block;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--amber); }
.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.93rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

/* Stats — inline flow on mobile */
.hero-stats {
  display: flex; gap: 2rem;
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.7s 0.65s both;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; line-height: 1; color: var(--fire);
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.63rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); margin-top: 0.2rem;
}

/* ── MARQUEE ─────────────────────────────── */
.marquee-wrap {
  overflow: hidden; background: var(--fire);
  padding: 0.75rem 0; position: relative; z-index: 2;
}
.marquee-track {
  display: flex;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem; letter-spacing: 0.1em;
  color: var(--black); padding: 0 1.4rem; flex-shrink: 0;
}
.marquee-sep { color: rgba(0,0,0,0.3); align-self: center; flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS ────────────────────────────── */
section { padding: 3.5rem 1.4rem; position: relative; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--fire);
  margin-bottom: 0.8rem; display: block;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 10vw, 5.5rem);
  line-height: 0.92; color: var(--white);
}

/* ── ABOUT ───────────────────────────────── */
#about {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-card {
  background: var(--steel); border: 1px solid var(--border);
  padding: 2rem 1.5rem; position: relative; overflow: hidden; margin-bottom: 2.5rem;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--fire), var(--amber));
}
.about-card-icon  { font-size: 3rem; margin-bottom: 1rem; display: block; }
.about-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; line-height: 1.05; color: var(--white);
}
.about-card-sub { margin-top: 0.8rem; color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
.about-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--fire); color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.1em; padding: 0.3rem 0.8rem;
}
.about-body { color: #bbb; line-height: 1.85; font-size: 0.93rem; margin-bottom: 1.2rem; }
.about-body strong { color: var(--fire); }
.about-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.value-row    { border-left: 2px solid var(--fire); padding-left: 1rem; }
.value-title  {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.93rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--white);
}
.value-desc { font-size: 0.8rem; color: var(--muted); margin-top: 0.1rem; }

/* ── SERVICES ────────────────────────────── */
#services { background: var(--black); }
.services-header { margin-bottom: 2rem; }
.diff-banner {
  background: rgba(255,77,0,0.07);
  border: 1px solid rgba(255,77,0,0.22); border-left: 4px solid var(--fire);
  padding: 1rem 1.2rem; margin-bottom: 1.5rem;
  display: flex; align-items: flex-start; gap: 0.8rem;
}
.diff-banner-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--fire);
}
.diff-banner-sub { font-size: 0.8rem; color: #aaa; margin-top: 0.2rem; }
.services-grid   { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.service-card {
  background: var(--charcoal);
  padding: 1.8rem 1.4rem; position: relative; overflow: hidden;
}
.service-card.hot { background: linear-gradient(135deg, rgba(255,77,0,0.12), rgba(255,77,0,0.03)); }
.service-card.hot .service-name { color: var(--fire); }
.diff-badge {
  display: inline-block; background: var(--fire); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.22rem 0.65rem; margin-bottom: 0.8rem;
  clip-path: polygon(5px 0%,100% 0%,calc(100% - 5px) 100%,0% 100%);
}
.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; color: rgba(255,77,0,0.1);
  position: absolute; top: 1rem; right: 1rem; line-height: 1;
}
.service-icon { font-size: 1.9rem; margin-bottom: 0.9rem; display: block; }
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 0.05em; color: var(--white); margin-bottom: 0.5rem;
}
.service-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.service-tag  {
  display: inline-block; margin-top: 0.9rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fire); border: 1px solid rgba(255,77,0,0.3); padding: 0.22rem 0.65rem;
}

/* ── WHY US ──────────────────────────────── */
#why {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid  { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.why-list  { display: flex; flex-direction: column; }
.why-item  { display: flex; gap: 1.2rem; padding: 1.4rem 0; border-bottom: 1px solid var(--border); }
.why-item:first-child { border-top: 1px solid var(--border); }
.why-num   { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; line-height: 1; color: var(--fire); min-width: 2.2rem; }
.why-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin-bottom: 0.35rem;
}
.why-text  { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.why-visual {
  background: var(--steel); border: 1px solid var(--border);
  padding: 2rem 1.4rem; margin-top: 2rem; position: relative; overflow: hidden;
}
.why-visual::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,77,0,0.02) 20px, rgba(255,77,0,0.02) 21px);
}
.quote-mark   { font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem; line-height: 0.8; color: var(--fire); opacity: 0.3; display: block; }
.quote-text   { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.5rem, 5vw, 2.4rem); line-height: 1.15; color: var(--white); margin-top: 0.8rem; }
.quote-text em { color: var(--fire); font-style: normal; }
.quote-author  { margin-top: 1.4rem; font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* ── REVIEWS ─────────────────────────────── */
#reviews       { background: var(--black); }
.reviews-grid  { display: flex; flex-direction: column; gap: 1rem; }
.review-card   { background: var(--charcoal); border: 1px solid var(--border); padding: 1.6rem 1.4rem; transition: border-color 0.2s; }
.review-card:hover { border-color: rgba(255,77,0,0.35); }
.review-stars  { font-size: 0.95rem; margin-bottom: 0.9rem; }
.review-text   { font-size: 0.9rem; color: #ccc; line-height: 1.8; margin-bottom: 1.4rem; font-style: italic; }
.reviewer      { display: flex; align-items: center; gap: 0.8rem; }
.reviewer-av   { width: 36px; height: 36px; background: var(--fire); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; color: var(--black); flex-shrink: 0; }
.reviewer-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); }
.reviewer-car  { font-size: 0.73rem; color: var(--muted); }

/* ── CONTACT ─────────────────────────────── */
#contact { background: var(--charcoal); border-top: 1px solid var(--border); }
.contact-grid  { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 2rem; }
.contact-list  { display: flex; flex-direction: column; }
.contact-item  { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.4rem 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-icon  { font-size: 1.4rem; min-width: 1.8rem; }
.contact-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fire); margin-bottom: 0.25rem; }
.contact-value { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.04em; color: var(--white); }
.contact-value a { color: inherit; text-decoration: none; }
.contact-sub   { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }
.contact-form  { display: flex; flex-direction: column; gap: 1rem; }
.form-note     { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.form-row      { display: flex; flex-direction: column; gap: 1rem; }
.form-group    { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label    { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.form-input, .form-textarea { background: var(--steel); border: 1px solid var(--border); color: var(--white); font-family: 'Barlow', sans-serif; font-size: 1rem; padding: 0.85rem 1rem; outline: none; width: 100%; resize: none; -webkit-appearance: none; border-radius: 0; transition: border-color 0.2s; }
.form-input:focus, .form-textarea:focus { border-color: var(--fire); }
.form-textarea { height: 120px; }
.btn-submit { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.18em; text-transform: uppercase; background: var(--fire); color: var(--black); border: none; padding: 1.1rem; width: 100%; cursor: pointer; clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%); transition: background 0.2s; }
.btn-submit:hover { background: var(--amber); }

/* ── FOOTER ──────────────────────────────── */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 2rem 1.4rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.12em; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 0.35em; }
.footer-logo .o { color: var(--fire); }
.footer-copy    { font-size: 0.75rem; color: var(--muted); }
.footer-socials { display: flex; gap: 1.5rem; }
.social-link    { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.social-link:hover { color: var(--fire); }

/* ── WHATSAPP ─────────────────────────────── */
.wa-float { position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 500; display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; }
.wa-bubble { background: #fff; color: #111; font-family: 'Barlow', sans-serif; font-size: 0.82rem; padding: 0.6rem 0.9rem; border-radius: 12px 12px 0 12px; box-shadow: 0 4px 18px rgba(0,0,0,0.3); white-space: nowrap; opacity: 0; transform: translateX(12px); transition: opacity 0.4s, transform 0.4s; pointer-events: none; }
.wa-bubble.show { opacity: 1; transform: translateX(0); }
.wa-btn { width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(37,211,102,0.45); text-decoration: none; position: relative; }
.wa-btn svg { width: 28px; height: 28px; fill: #fff; }
.wa-btn::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.4); animation: waPulse 2s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(0.95); opacity: 1; } 70% { transform: scale(1.25); opacity: 0; } 100% { transform: scale(1.25); opacity: 0; } }

/* ── REVEAL ──────────────────────────────── */
/* Content visible by default — animation only when JS confirms loaded */
.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.js-ready .reveal.in { opacity: 1; transform: none; }

/* ============================================
   DESKTOP — 900px+
   ============================================ */
@media (min-width: 900px) {

  nav { padding: 0 4rem; }
  .nav-logo    { font-size: 1.8rem; }
  .nav-links   { display: flex; }
  .nav-cta     { padding: 0.65rem 1.6rem; font-size: 0.85rem; }

  #hero { padding: 0 4rem 5rem; justify-content: flex-end; }

  .gear-ring {
    display: block; position: absolute;
    right: -4%; top: 50%; transform: translateY(-50%);
    width: 680px; height: 680px;
    border: 2px solid rgba(255,77,0,0.07); border-radius: 50%;
    animation: spin 40s linear infinite; pointer-events: none;
  }
  .gear-ring::before { content: ''; position: absolute; inset: 40px; border: 1px solid rgba(255,77,0,0.04); border-radius: 50%; }
  .gear-ring::after  { content: ''; position: absolute; inset: 100px; border: 1px dashed rgba(255,77,0,0.05); border-radius: 50%; }
  @keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

  .hero-label  { font-size: 0.82rem; letter-spacing: 0.32em; margin-bottom: 1.5rem; }
  .hero-title  { font-size: clamp(5rem, 11vw, 10rem); }
  .hero-title .dim { -webkit-text-stroke: 1.5px rgba(240,236,228,0.4); color: transparent; opacity: 1; }
  .hero-sub    { font-size: 1.05rem; max-width: 500px; margin-top: 2rem; }
  .hero-actions { flex-direction: row; align-items: center; gap: 1.5rem; margin-top: 3rem; }

  /* Stats — column on right, NOT overlapping title */
  .hero-stats {
    position: absolute; right: 4rem; bottom: 5rem;
    flex-direction: column; gap: 2rem;
    margin: 0; padding: 0; border: none; text-align: right;
  }
  .stat-num   { font-size: 3rem; }
  .stat-label { font-size: 0.7rem; }

  section { padding: 7rem 4rem; }

  #about { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .about-card { margin-bottom: 0; padding: 3rem; }
  .about-card-icon  { font-size: 5rem; }
  .about-card-title { font-size: 2.2rem; }
  .about-body { font-size: 1rem; }

  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
  .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
  .service-card { padding: 2.8rem 2.4rem; transition: background 0.3s; }
  .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--fire), var(--amber)); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
  .service-card:hover { background: var(--steel); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-card.hot:hover { background: linear-gradient(135deg, rgba(255,77,0,0.18), rgba(255,77,0,0.06)); }
  .service-num  { font-size: 4rem; }
  .service-name { font-size: 1.6rem; }

  .why-grid   { display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: center; margin-top: 4rem; }
  .why-visual { margin-top: 0; padding: 3rem; }
  .quote-mark { font-size: 8rem; }

  .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
  .review-card  { padding: 2.4rem; }

  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; margin-top: 4rem; }
  .form-row { flex-direction: row; gap: 1.2rem; }
  .btn-submit { width: auto; padding: 1.1rem 2rem; }

  footer { flex-direction: row; justify-content: space-between; padding: 2.5rem 4rem; text-align: left; }
  .footer-logo { font-size: 1.6rem; }
  .wa-btn { width: 60px; height: 60px; }
  .wa-btn svg { width: 32px; height: 32px; }

  .js-ready .reveal { transform: translateY(36px); transition: opacity 0.65s ease, transform 0.65s ease; }
}
