/* ============================================================
   LP Apps Clicksoft — style.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  color: #101828;
  line-height: 1.6;
  font-size: 15px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Utilities ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1186px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Scroll fade-in ───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s, box-shadow .2s, transform .15s;
}

/* Pulse glow on yellow CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,252,23,.5); }
  55%       { box-shadow: 0 0 0 10px rgba(220,252,23,0); }
}
.btn--yellow {
  background: #DCFC17;
  color: #000;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  animation: pulse-glow 2.8s ease-in-out infinite;
}
.btn--yellow:hover {
  background: #c8e800;
  animation: none;
  box-shadow: 0 0 20px rgba(220,252,23,.45);
  transform: translateY(-1px);
}

.btn--white-pill {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 47px;
  font-size: 15px;
  padding: 13px 28px;
}
.btn--white-pill:hover {
  border-color: #DCFC17;
  color: #DCFC17;
  box-shadow: 0 0 16px rgba(220,252,23,.15);
  transform: translateY(-1px);
}
.btn--dark-pill {
  background: transparent;
  color: #160d30;
  border: 1.5px solid rgba(22,13,48,.30);
  border-radius: 47px;
  font-size: 15px;
  padding: 13px 28px;
}
.btn--dark-pill:hover {
  border-color: #6941C6;
  color: #6941C6;
  box-shadow: 0 0 16px rgba(105,65,198,.12);
  transform: translateY(-1px);
}

.btn--purple {
  background: #6941C6;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 22px;
}
.btn--purple:hover {
  background: #5835b0;
  transform: translateY(-1px);
}

/* ── Sticky Header ────────────────────────────────────────── */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 9, 33, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220,252,23,.10);
  transform: translateY(-100%);
  transition: transform .35s ease;
  padding: 10px 0;
}
.sticky-header.visible { transform: translateY(0); }
.sticky-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sticky-logo img { height: 32px; width: auto; }
.sticky-cta {
  padding: 10px 24px !important;
  width: auto !important;
  max-width: fit-content !important;
  flex: 0 0 auto !important;
  font-size: 14px !important;
  animation: none !important;
}
.sticky-cta:hover { animation: none !important; }

/* ── SECTION 1 — Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  background-color: #180d3a;
  background-image: url('https://clicksoft.com.br/wp-content/uploads/2024/03/Desenvolvimento-de-apps.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,13,58,0.75) 0%, rgba(13,9,33,0.88) 100%);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

/* navbar */
.hero-nav { padding: 16px 0; }
.hero-nav .container--wide { display: flex; align-items: center; }
.hero-logo img { width: auto; max-width: 160px; height: 36px; object-fit: contain; }

/* hero body */
.hero-body .container--wide {
  display: grid;
  grid-template-columns: 44fr 56fr;
  gap: 48px;
  align-items: start;
}
.hero-left { padding-top: 48px; }

.hero-title {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
  line-height: 1.7;
}
.hero-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hero-list li {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-list li::before {
  content: '•';
  font-size: 10px;
  color: #DCFC17;
  flex-shrink: 0;
}

/* hero form card */
.hero-right { padding-top: 20px; }
.form-card {
  background: rgba(22, 13, 48, 0.72);
  border: 1px solid rgba(220,252,23,.12);
  border-radius: 16px;
  padding: 32px;
  margin-top: 20px;
  backdrop-filter: blur(8px);
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  color: #667085;
  background: #fff;
  outline: none;
  height: 42px;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus {
  border-color: #DCFC17;
  box-shadow: 0 0 0 3px rgba(220,252,23,.2), 0 0 14px rgba(220,252,23,.12);
}
.form-group select { cursor: pointer; }

/* ── Select estilizado (investimento) ─────────────────────── */
select.select-styled {
  appearance: none;
  -webkit-appearance: none;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  border: 1px solid #D0D5DD;
  color: #667085;
  height: 42px;
  padding: 0 44px 0 16px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  width: 100%;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
select.select-styled:focus {
  outline: none;
  border-color: #DCFC17;
  box-shadow: 0 0 0 3px rgba(220,252,23,.2), 0 0 14px rgba(220,252,23,.12);
}
select.select-styled option {
  background: #FFFFFF;
  color: #344054;
}

/* contact section inputs (on semi-transparent bg) */
.contact-form-wrap .form-group input[type="text"],
.contact-form-wrap .form-group input[type="email"],
.contact-form-wrap .form-group select {
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.97);
}

/* ── Phone field (intl-tel-input overrides) ────────────────── */
.form-group .iti { width: 100%; }
.form-group .iti input[type="tel"] {
  width: 100%;
  padding: 10px 14px 10px 52px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  color: #667085;
  background: #fff;
  outline: none;
  height: 42px;
  transition: border-color .2s, box-shadow .2s;
}
.form-group .iti input[type="tel"]:focus {
  border-color: #DCFC17;
  box-shadow: 0 0 0 3px rgba(220,252,23,.2), 0 0 14px rgba(220,252,23,.12);
}
.iti__flag-container { height: 42px; }
.iti__selected-flag  { height: 42px; padding: 0 10px; border-radius: 8px 0 0 8px; }
.iti--separate-dial-code .iti__selected-flag {
  background: rgba(255,255,255,.12);
  border-right: 1px solid rgba(255,255,255,.15);
}
.iti__selected-dial-code { font-size: 13px; color: #667085; }

/* ── Custom Checkbox ──────────────────────────────────────── */
.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.check-outer {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}
.check-outer input[type="checkbox"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 2;
  cursor: pointer;
}
.check-box {
  position: absolute;
  inset: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: transparent;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
  z-index: 1;
}
.check-outer input[type="checkbox"]:checked ~ .check-box {
  background: #D8FF00;
  border-color: #D8FF00;
  color: #6A0DAD;
  box-shadow: 0 0 8px rgba(216,255,0,.4);
}
.check-label {
  font-size: 13px;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
  cursor: pointer;
}

/* form guarantee line */
.form-guarantee {
  font-size: 13px;
  color: #DCFC17;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* form messages */
.form-success {
  display: none;
  background: rgba(51,173,172,.15);
  border: 1px solid #33ADAC;
  color: #33ADAC;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 10px;
  font-size: 13px;
}
.form-error {
  display: none;
  background: rgba(255,113,113,.1);
  border: 1px solid #FF7171;
  color: #FF7171;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 10px;
  font-size: 13px;
}
.field-error {
  display: none;
  color: #FF7171;
  font-size: 12px;
  margin-top: 4px;
}

/* spinner */
.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,.25);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn--loading .btn-text { display: none; }
.btn--loading .btn-spinner { display: block; }

/* ── Custom Select Dropdown ───────────────────────────────── */
.custom-select-wrap {
  position: relative;
  width: 100%;
  user-select: none;
}

/* esconde o <select> nativo mas mantém no DOM para o form */
.custom-select-wrap select,
.form-group .custom-select-wrap select {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  background: #fff;
  color: #667085;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  gap: 8px;
}
.custom-select-trigger:hover,
.custom-select-wrap.open .custom-select-trigger {
  border-color: #DCFC17;
  box-shadow: 0 0 0 3px rgba(220,252,23,.2), 0 0 14px rgba(220,252,23,.12);
}
.custom-select-trigger .trigger-text {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.custom-select-trigger .trigger-arrow {
  flex-shrink: 0;
  font-size: 11px;
  color: #667085;
  transition: transform .25s;
}
.custom-select-wrap.open .trigger-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #1e1035;
  border: 1px solid rgba(220,252,23,.25);
  border-radius: 10px;
  overflow: hidden;
  z-index: 200;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.custom-select-wrap.open .custom-select-options {
  display: block;
}

.custom-option {
  padding: 11px 16px;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  transition: background .15s, color .15s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-option + .custom-option {
  border-top: 1px solid rgba(255,255,255,.06);
}
.custom-option:hover {
  background: rgba(220,252,23,.12);
  color: #DCFC17;
}
.custom-option.selected {
  background: rgba(220,252,23,.15);
  color: #DCFC17;
  font-weight: 600;
}
.custom-option.selected::after {
  content: '✓';
  margin-left: auto;
  font-size: 12px;
}
.custom-option.placeholder {
  color: rgba(255,255,255,.35);
  font-style: italic;
  pointer-events: none;
}

/* ── Hero clients strip (dentro do hero) ──────────────────── */
.hero-clients {
  position: relative;
  z-index: 1;
  padding: 40px 0 52px;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 56px;
}
.clients-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.38);
  margin-bottom: 24px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* marquee carousel */
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-track img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .45;
  transition: opacity .3s;
}
.marquee-track img:hover { opacity: .72; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION 3 — Process ──────────────────────────────────── */
.process { background: #F9FAFB; padding: 56px 0; }
.process-title {
  font-size: 28px;
  font-weight: 700;
  color: #101828;
  text-align: center;
  line-height: 1.3;
}
.process-subtitle {
  font-size: 15px;
  color: #475467;
  text-align: center;
  margin-top: 10px;
  padding: 0 80px;
  line-height: 1.6;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

/* Process icon circle */
.process-icon {
  width: 56px;
  height: 56px;
  background: rgba(105,65,198,.10);
  border: 1px solid rgba(105,65,198,.20);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
  color: #6941C6;
  transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
}

.process-item {
  text-align: center;
  border-radius: 12px;
  padding: 20px 12px;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s, transform .2s;
  cursor: default;
}
.process-item:hover {
  background: rgba(105,65,198,.05);
  border-color: rgba(105,65,198,.15);
  transform: translateY(-5px);
}
.process-item:hover .process-icon {
  background: rgba(105,65,198,.18);
  border-color: rgba(105,65,198,.40);
  box-shadow: 0 0 16px rgba(105,65,198,.15);
  transform: scale(1.08);
}
.process-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 5px;
}
.process-item p {
  font-size: 13px;
  color: #475467;
  line-height: 1.5;
}
.process-cta { text-align: center; margin-top: 36px; }

/* ── SECTION 4 — Social Proof ─────────────────────────────── */
.proof {
  position: relative;
  background: #F9FAFB;
  overflow: hidden;
}
.proof .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 47fr 53fr;
  align-items: end;
  padding-top: 48px;
}
.proof-img img { width: 100%; margin-bottom: -120px; }
.proof-text { padding: 120px 100px 56px 40px; }
.proof-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 12px;
  line-height: 1.35;
}
.proof-icon {
  width: 60px;
  height: 60px;
  background: rgba(105,65,198,.10);
  border: 1px solid rgba(105,65,198,.20);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #6941C6;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(105,65,198,.10);
  transition: background .2s, border-color .2s, box-shadow .2s, transform .15s;
}
.proof-icon:hover {
  background: rgba(105,65,198,.16);
  border-color: rgba(105,65,198,.36);
  box-shadow: 0 0 0 3px rgba(105,65,198,.12), 0 0 20px rgba(105,65,198,.12);
  transform: translateY(-1px);
}
.proof-icon:hover i {
  transform: scale(1.04);
}
.proof-icon i {
  transition: transform .15s ease;
}
.proof-text p { font-size: 15px; color: #475467; line-height: 1.7; }

/* ── SECTION 5 — FAQ ──────────────────────────────────────── */
.faq { background: #F9FAFB; padding: 56px 0; }
.faq-title {
  font-size: 28px;
  font-weight: 700;
  color: #101828;
  text-align: center;
  margin-bottom: 28px;
}
.accordion { max-width: 840px; margin: 0 auto; }
.accordion-item {
  position: relative;
  border-bottom: 1px solid #EAECF0;
  padding-left: 0;
  transition: padding-left .25s;
}
/* left accent bar */
.accordion-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #6941C6;
  border-radius: 2px;
  transform: scaleY(0);
  transition: transform .25s ease;
  transform-origin: center;
}
.accordion-item.open::before { transform: scaleY(1); }
.accordion-item.open { padding-left: 14px; }

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: #101828;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
  transition: color .2s;
}
.accordion-btn:hover { color: #6941C6; }
.accordion-icon { flex-shrink: 0; font-size: 18px; transition: transform .25s; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-item.open .accordion-btn { color: #6941C6; }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.accordion-item.open .accordion-content { max-height: 800px; }
.accordion-content-inner {
  padding: 0 0 16px;
  font-size: 14px;
  color: #475467;
  line-height: 1.7;
}
.accordion-content-inner a { color: #6941C6; text-decoration: underline; }
.accordion-content-inner a:hover { color: #160d30; }
.faq-cta { text-align: center; margin-top: 36px; }

/* ── SECTION 6 — Mídia ────────────────────────────────────── */
.media { background: #fff; padding: 48px 0 80px; }
.media-inner {
  background: #F9F5FF;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 36fr 64fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}
.media-img {
  overflow: hidden;
  min-height: 260px;
}
.media-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.media-body {
  padding: 36px 40px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.media-content { display: flex; flex-direction: column; gap: 8px; }
.media-tag { font-size: 13px; font-weight: 700; color: #6941C6; text-transform: uppercase; letter-spacing: .06em; }
.media-headline { font-size: 22px; font-weight: 700; color: #101828; line-height: 1.3; }
.media-source { font-size: 14px; font-weight: 500; color: #667085; }
.media-article-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #6941C6;
  margin-top: 4px;
  transition: gap .2s, color .2s;
}
.media-article-link:hover { color: #4e2fa0; gap: 10px; }

/* store badges */
.media-stores-label { font-size: 13px; font-weight: 600; color: #667085; margin-bottom: 10px; }
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a2e;
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  min-width: 150px;
}
.store-badge:hover { background: #2d2d4e; transform: translateY(-2px); }
.store-badge i { font-size: 22px; flex-shrink: 0; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge small { font-size: 10px; color: rgba(255,255,255,.7); font-weight: 400; }
.store-badge span > :last-child { font-size: 14px; font-weight: 700; }

/* ── SECTION 7 — Contact ──────────────────────────────────── */
.contact {
  position: relative;
  background-color: #160d30;
  background-image: url('https://clicksoft.com.br/wp-content/uploads/2026/03/Contact-sections-1.webp');
  background-size: cover;
  background-position: center center;
  padding: 0 0 90px;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 9, 33, 0.80);
  z-index: 0;
}
.contact > * { position: relative; z-index: 1; }
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-left { padding-top: 80px; }
.contact-title { font-size: 30px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 6px; }
.contact-sub { font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.contact-form-wrap {
  padding-top: 16px;
}
.contact-form-wrap .form-group label { color: #fff; }

/* ── SECTION 8 — Footer ───────────────────────────────────── */
.footer { background: #F9FAFB; border-top: 1px solid #EAECF0; padding: 20px 0; }
.footer .container { display: flex; align-items: center; justify-content: space-between; }
.footer-left p { font-size: 13px; color: #98a2b3; line-height: 1.7; }
.footer-left a { color: #98a2b3; transition: color .2s; }
.footer-left a:hover { color: #160d30; }
.footer-socials { display: flex; align-items: center; gap: 10px; }
.footer-socials a {
  color: #98a2b3;
  font-size: 20px;
  padding: 4px;
  transition: color .2s, transform .15s;
}
.footer-socials a:hover { color: #160d30; transform: scale(1.1); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-title { font-size: 34px; }
  .proof-text { padding: 100px 40px 48px 32px; }
  .media-body { padding: 28px 28px 32px; }
  .contact { background-image: none; background-color: #160d30; }
}
@media (max-width: 768px) {
  .hero { padding-bottom: 36px; }
  .hero-body .container--wide { grid-template-columns: 1fr; gap: 24px; }
  .hero-left { padding-top: 40px; }
  .hero-title { font-size: 28px; text-align: center; letter-spacing: 0; }
  .hero-desc { display: none; }
  .hero-list { display: none; }
  .hero-logo img { max-width: 130px; height: 30px; }
  .form-card { padding: 20px; margin-top: 0; }

  .hero-clients { padding: 32px 0 40px; margin-top: 40px; }
  .marquee-track img { height: 36px; }

  .process { padding: 44px 10px 36px; }
  .process-subtitle { padding: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .proof .container { grid-template-columns: 1fr; padding-top: 0; }
  .proof-img img { margin-bottom: 0; }
  .proof-text { padding: 32px 20px 48px; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .proof-text h2 { font-size: 20px; }

  .faq { padding: 44px 10px 36px; }

  .media { padding: 40px 0 48px; }
  .media-inner { grid-template-columns: 1fr; }
  .media-img { min-height: 240px; }
  .media-body { padding: 24px 20px 28px; gap: 20px; }
  .media-headline { font-size: 18px; }
  .store-badges { flex-direction: column; }
  .store-badge { min-width: unset; }

  .contact .container { grid-template-columns: 1fr; gap: 0; }
  .contact-left { padding-top: 44px; }
  .contact-form-wrap { padding: 12px 20px 44px; }
  .contact-title { font-size: 24px; }

  .footer .container { flex-direction: column; gap: 12px; text-align: center; }
  .footer-left p { text-align: center; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 26px; }
}

/* ══════════════════════════════════════════════════════════
   WhatsApp Modal — redesign bubble
   ══════════════════════════════════════════════════════════ */
.wpp-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.wpp-overlay.open { opacity: 1; pointer-events: all; }

.wpp-modal {
  width: 100%; max-width: 390px;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
  transform: scale(.93) translateY(16px);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.wpp-overlay.open .wpp-modal { transform: scale(1) translateY(0); }

/* ── Header ── */
.wpp-header {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  padding: 16px 16px 16px 20px;
  display: flex; align-items: center; gap: 14px;
  position: relative;
}
.wpp-close {
  position: absolute; top: 12px; right: 14px;
  background: rgba(255,255,255,.12); border: none;
  color: #fff; width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; cursor: pointer;
  transition: background .2s;
}
.wpp-close:hover { background: rgba(255,255,255,.25); }
.wpp-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.3);
  position: relative;
}
.wpp-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wpp-avatar::after {
  content: '';
  position: absolute; bottom: 2px; right: 2px;
  width: 11px; height: 11px;
  background: #4ade80; border-radius: 50%;
  border: 2px solid #075e54;
}
.wpp-header-info { flex: 1; min-width: 0; }
.wpp-name { display: block; color: #fff; font-weight: 700; font-size: 15px; line-height: 1.25; }
.wpp-status { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.75); font-size: 12px; margin-top: 3px; }
.wpp-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; flex-shrink: 0; }

/* ── Chat area ── */
.wpp-chat {
  background: #e5ddd5 url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b2a99a' fill-opacity='0.12'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 20px 16px 16px;
}
.wpp-msg-row {
  display: flex; align-items: flex-end; gap: 8px;
}
.wpp-msg-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
}
.wpp-msg-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wpp-bubble {
  background: #fff;
  border-radius: 2px 18px 18px 18px;
  padding: 12px 14px 8px;
  font-size: 14px; color: #111; line-height: 1.55;
  max-width: 82%;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  position: relative;
}
.wpp-time {
  display: block; text-align: right;
  font-size: 11px; color: #999; margin-top: 4px;
}

/* ── Form ── */
.wpp-form-wrap { background: #fff; padding: 20px; }
.wpp-form-wrap .form-group { margin-bottom: 12px; }
.wpp-form-wrap input[type="text"],
.wpp-form-wrap input[type="email"],
.wpp-form-wrap input[type="tel"] {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid #e8e8e8; border-radius: 12px;
  font-size: 14px; background: #f7f7f7; outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  font-family: inherit; color: #111;
}
.wpp-form-wrap input:focus {
  border-color: #25d366; background: #fff;
  box-shadow: 0 0 0 3px rgba(37,211,102,.12);
}
.wpp-form-wrap input.error { border-color: #e53e3e; }
.wpp-form-wrap .field-error {
  color: #e53e3e; font-size: 12px;
  display: none; margin-top: 4px; padding-left: 4px;
}
.wpp-form-wrap .field-error.visible { display: block; }

.btn--wpp-submit {
  width: 100%; background: #25d366; color: #fff;
  font-weight: 700; font-size: 15px; padding: 14px;
  border: none; border-radius: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 4px;
  transition: background .2s, transform .15s, opacity .2s;
  font-family: inherit; letter-spacing: .2px;
}
.btn--wpp-submit:hover { background: #1da851; transform: translateY(-1px); }
.btn--wpp-submit:active { transform: translateY(0); }
.btn--wpp-submit.loading { opacity: .65; pointer-events: none; }
