/* ═══════════════════════════════════════════════════════════════
   PSIHOCLAR – style.css
   Palette from business card:
     --cream  : #EDE8D5  (background)
     --dark   : #1E2B1E  (Psiho – very dark green)
     --green  : #58B85C  (calm – bright green)
     --mid    : #2D5A2D  (medium green text)
     --footer : #162316  (footer dark)
═══════════════════════════════════════════════════════════════ */

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

:root {
  --cream:        #EDE8D5;
  --cream-light:  #F5F1E4;
  --dark:         #1E2B1E;
  --green:        #58B85C;
  --green-hover:  #47A34B;
  --mid:          #2D5A2D;
  --footer-bg:    #162316;
  --white:        #ffffff;
  --text:         #2A3828;
  --text-muted:   #5A6B58;
  --border:       rgba(30,43,30,.12);
  --shadow-sm:    0 2px 8px rgba(30,43,30,.08);
  --shadow-md:    0 8px 32px rgba(30,43,30,.13);
  --shadow-lg:    0 20px 60px rgba(30,43,30,.18);
  --radius:       14px;
  --radius-lg:    22px;
  --trans:        .25s ease;
  --container:    1140px;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-family: var(--font-body); font-weight: 800; letter-spacing: -.03em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-family: var(--font-display); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .75rem; }
p  { color: var(--text-muted); line-height: 1.75; }
p + p { margin-top: .85rem; }

.text-green       { color: var(--green); }
.text-green-light { color: #8ADA8E; }
.logo-dark        { color: var(--dark); }
.logo-green       { color: var(--green); }

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .6rem;
}

/* ── SECTION LAYOUT ── */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--cream { background: var(--cream-light); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header h2 { margin-bottom: .75rem; }
.section-desc { font-size: 1.05rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 100px;
  padding: .75rem 1.6rem;
  transition: background var(--trans), color var(--trans), box-shadow var(--trans), transform var(--trans);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(88,184,92,.35);
}
.btn-primary:hover {
  background: var(--green-hover);
  box-shadow: 0 6px 24px rgba(88,184,92,.45);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--green);
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
.btn-white:hover { background: var(--cream-light); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-lg  { padding: .95rem 2.1rem; font-size: 1.05rem; }
.btn-sm  { padding: .5rem 1.1rem;  font-size: .85rem; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(237,232,213,.88);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.04em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--trans);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width var(--trans);
}
.nav-link:hover { color: var(--green); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--cream);
  padding-top: calc(68px + clamp(3rem, 8vw, 6rem));
  padding-bottom: 0;
  overflow: hidden;
}

.hero-bg-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.decor-tri {
  position: absolute;
  width: 0; height: 0;
  opacity: .55;
}
.decor-tri--tl {
  top: 0; left: 0;
  border-style: solid;
  border-width: 140px 140px 0 0;
  border-color: #1E2B1E transparent transparent transparent;
}
.decor-tri--br {
  bottom: 0; right: 0;
  border-style: solid;
  border-width: 0 0 120px 120px;
  border-color: transparent transparent #1E2B1E transparent;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-text { max-width: 620px; }
.hero-title {
  margin-block: .5rem 1.25rem;
  line-height: 1;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-sub strong { color: var(--dark); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

/* Info card */
.hero-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hic-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--dark);
}
.hic-icon { font-size: 1.25rem; }
.hic-divider { height: 1px; background: var(--border); }
.hic-row--contact a {
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  transition: color var(--trans);
}
.hic-row--contact a:hover { color: var(--green-hover); }
.hic-row--addr { font-size: .82rem; color: var(--text-muted); }

/* Hero wave */
.hero-wave { display: block; line-height: 0; margin-top: -1px; }
.hero-wave svg { width: 100%; display: block; }

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.svc-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1.5px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--border);
  transition: background var(--trans);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card:hover::before { background: var(--green); }

.svc-card--featured {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.svc-card--featured::before { background: var(--green); }
.svc-card--featured:hover { transform: translateY(-14px); }
.svc-card--featured h3,
.svc-card--featured p { color: rgba(255,255,255,.9); }
.svc-card--featured .svc-icon-wrap { color: var(--green); }
.svc-card--featured .svc-list li { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.svc-card--featured .svc-list li::before { background: var(--green); }

.svc-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--white);
  padding: .28rem .75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.svc-icon-wrap {
  color: var(--green);
  margin-bottom: 1.25rem;
}

.svc-list { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.svc-list li {
  font-size: .88rem;
  color: var(--text-muted);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.svc-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.services-cta { text-align: center; margin-top: clamp(2.5rem, 5vw, 4rem); }

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

/* Visual side */
.about-visual { display: flex; flex-direction: column; gap: 1.5rem; }

.about-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
}
.ag-circle {
  position: absolute;
  border-radius: 50%;
}
.ag-circle--1 {
  width: 220px; height: 220px;
  background: var(--dark);
  opacity: .08;
}
.ag-circle--2 {
  width: 170px; height: 170px;
  background: var(--green);
  opacity: .12;
  top: 20px; left: 30px;
}
.ag-monogram {
  position: relative;
  z-index: 1;
  background: var(--dark);
  width: 130px; height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.ag-monogram span:first-child {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--green);
}
.ag-monogram-sub {
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
  margin-top: .2rem;
}

.cred-stack { display: flex; flex-direction: column; gap: .75rem; }
.cred-chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: .9rem 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.cred-chip-icon { font-size: 1.4rem; flex-shrink: 0; }
.cred-chip strong { display: block; font-size: .9rem; color: var(--dark); margin-bottom: .1rem; }
.cred-chip span  { font-size: .8rem; color: var(--text-muted); }

/* Text side */
.about-role {
  font-size: .9rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .04em;
  margin-bottom: 1.25rem;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.5rem 0 2rem;
}
.value-chip {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: .45rem 1rem;
  font-size: .83rem;
  font-weight: 500;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq { background: var(--white); }

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.faq-item {
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  background: var(--cream-light);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(88,184,92,.12);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  background: transparent;
  border: none;
  transition: color var(--trans);
}
.faq-q:hover { color: var(--green); }
.faq-q[aria-expanded="true"] { color: var(--green); }

.faq-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--trans);
}
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); color: var(--green); }

.faq-a {
  padding: 0 1.5rem 1.25rem;
  animation: fadeDown .25s ease;
}
.faq-a p { font-size: .95rem; }
.faq-a a { color: var(--green); font-weight: 600; }
.faq-a a:hover { text-decoration: underline; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   LOCATION
══════════════════════════════════════════════ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.loc-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.loc-item-icon {
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
}
.loc-item strong { display: block; font-size: .9rem; color: var(--dark); margin-bottom: .25rem; }
.loc-item p, .loc-item address { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.loc-item a { color: var(--green); font-weight: 600; }
.loc-item a:hover { text-decoration: underline; }

.loc-item--parking .loc-item-icon { background: var(--green); color: var(--white); border-color: var(--green); }

.loc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  padding-top: .5rem;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}
.location-map iframe { display: block; }

/* ══════════════════════════════════════════════
   CONTACT CTA
══════════════════════════════════════════════ */
.cta-section {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
  text-align: center;
}
.cta-bg-decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(88,184,92,.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(88,184,92,.08) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-inner p  { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-actions  { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer { background: var(--footer-bg); color: rgba(255,255,255,.75); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 3rem;
  padding-block: 3.5rem;
}

.footer-brand .nav-logo { font-size: 1.8rem; margin-bottom: 1rem; display: inline-block; }
.footer-brand p { font-size: .88rem; max-width: 280px; margin-top: .5rem; }

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  background: var(--green);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  padding: .5rem 1.1rem;
  border-radius: 100px;
  transition: background var(--trans), transform var(--trans);
}
.footer-wa-btn:hover { background: var(--green-hover); transform: translateY(-2px); }

.footer-nav strong, .footer-contact-info strong {
  display: block;
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a {
  font-size: .9rem;
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--green); }

.footer-contact-info p, .footer-contact-info address {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: .5rem;
}
.footer-contact-info a { color: var(--green); }
.footer-contact-info a:hover { text-decoration: underline; }
.footer-parking { color: rgba(255,255,255,.65); font-size: .85rem; margin-top: .35rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.25rem;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-bottom a { color: var(--green); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--white); }

/* ══════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  background: #25D366;
  color: var(--white);
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.25rem .85rem .9rem;
  box-shadow: 0 6px 28px rgba(37,211,102,.4);
  font-weight: 700;
  font-size: .88rem;
  transition: transform var(--trans), box-shadow var(--trans);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,.55);
  animation: none;
}
.wa-float-label { color: var(--white); }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 28px rgba(37,211,102,.65), 0 0 0 10px rgba(37,211,102,.08); }
}

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
.fade-up, .fade-left, .fade-right {
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up    { transform: translateY(30px); }
.fade-left  { transform: translateX(-30px); }
.fade-right { transform: translateX(30px); }
.fade-up--delay  { transition-delay: .15s; }
.fade-up--delay2 { transition-delay: .3s; }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card-wrap { display: flex; justify-content: flex-start; }
  .hero-info-card { flex-direction: row; flex-wrap: wrap; min-width: auto; width: 100%; max-width: 500px; }

  .services-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .svc-card--featured { transform: none; }
  .svc-card--featured:hover { transform: translateY(-6px); }

  .about-inner { grid-template-columns: 1fr; }
  .about-visual { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 2rem; }
  .about-graphic { flex-shrink: 0; }
  .cred-stack { flex: 1; min-width: 220px; }

  .location-grid { grid-template-columns: 1fr; }
  .location-map iframe { height: 320px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(237,232,213,.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-link {
    padding: .85rem 2rem;
    width: 100%;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav-links li:last-child { padding: 1rem 2rem 0; }
  .nav-links li:last-child .btn { width: 100%; justify-content: center; }

  .hero-info-card { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .about-visual { flex-direction: column; }
  .about-graphic { width: 100%; }

  .about-values { gap: .5rem; }

  .loc-actions { flex-direction: column; }
  .loc-actions .btn { width: 100%; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding-block: 2.5rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 340px; justify-content: center; }

  .wa-float-label { display: none; }
  .wa-float { padding: 1rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  .faq-q { font-size: .92rem; padding: 1rem 1.1rem; }
  .faq-a { padding: 0 1.1rem 1rem; }
  .svc-card { padding: 1.5rem 1.25rem; }
}
