/* ── Design tokens ──────────────────────────────────── */
:root {
  --bg:       #f4f1eb;
  --surface:  #faf8f4;
  --text:     #1a1714;
  --muted:    #57514b;
  --blue:     #1d4ed8;
  --sage:     #49593a;
  --copper:   #8b5e3c;
  --border:   #e0dbd2;
  --shadow:   0 1px 4px rgba(0,0,0,.06), 0 4px 20px rgba(0,0,0,.04);
  --shadow-md:0 4px 28px rgba(0,0,0,.09);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* ── Layout ─────────────────────────────────────────── */
/* 80px sides → 5rem | 96px sections → 6rem */
.container { max-width: 1280px; margin: 0 auto; padding: 0 5rem; }
.section    { padding: 6rem 0; }

/* ── Nav ────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(244,241,235,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.125rem 0; gap: 1.5rem;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo { height: 6rem; width: auto; display: block; object-fit: contain; }
.nav nav { display: flex; gap: 1.75rem; font-size: .875rem; font-weight: 500; color: var(--muted); }
.nav nav a { transition: color .15s; position: relative; padding-bottom: .125rem; }
.nav nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--blue);
  transition: width .25s ease;
}
.nav nav a:hover { color: var(--text); }
.nav nav a:hover::after { width: 100%; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; border-radius: .5rem;
  font-weight: 700; font-size: .875rem;
  border: 1.5px solid transparent; letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer; white-space: nowrap;
}
.btn-primary  { background: var(--blue); color: #fff; }
.btn-primary:hover  { background: #1539a6; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(29,78,216,.32); }
.btn-secondary { border-color: var(--border); background: var(--surface); color: var(--text); }
.btn-secondary:hover { border-color: var(--text); transform: translateY(-2px); }

/* ── Eyebrow ────────────────────────────────────────── */
.eyebrow {
  display: block; letter-spacing: .12em; text-transform: uppercase;
  font-size: .6875rem; color: var(--sage); font-weight: 700; margin-bottom: .625rem;
}

/* ── Hero ───────────────────────────────────────────── */
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 5rem; align-items: center; padding: 1.5rem 0;
}
.hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  line-height: 1; letter-spacing: -.03em; font-weight: 800;
  margin: .2em 0 .55em;
}
.lead { font-size: 1.0625rem; max-width: 50ch; color: var(--muted); line-height: 1.72; }
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }
.stats {
  list-style: none; display: grid;
  grid-template-columns: repeat(3,1fr); gap: .875rem; margin-top: 1.75rem;
}
.stats li { background: var(--surface); border: 1px solid var(--border); border-radius: .875rem; padding: 1.125rem; }
.stats strong { display: block; font-size: 1.375rem; font-weight: 800; line-height: 1.15; }
.stats span { display: block; color: var(--muted); font-size: .8rem; margin-top: .15rem; }

.hero-card {
  border-radius: 1.75rem; overflow: hidden;
}
.hero-image {
  width: 100%; height: auto; display: block;
}
.hero-card-content { padding: 1.375rem 1.5rem; display: flex; flex-direction: column; gap: .625rem; }
.hero-card-content p {
  font-size: .875rem; color: var(--muted); font-weight: 500;
  display: flex; align-items: center; gap: .625rem;
}
.hero-card-content p::before {
  content: ''; display: inline-block;
  width: .4375rem; height: .4375rem;
  border-radius: 50%; background: var(--sage); flex-shrink: 0;
}

/* ── Strip ──────────────────────────────────────────── */
.strip { padding: 1.375rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.center-text { text-align: center; color: var(--muted); font-size: .875rem; font-weight: 500; letter-spacing: .04em; }

/* ── Section head ───────────────────────────────────── */
.section-head { margin-bottom: 3rem; }
.section-head h2 {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  margin: .2em 0 0; letter-spacing: -.025em; font-weight: 800; line-height: 1.1;
}

/* ── Portfolio ──────────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.case-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 1.5rem; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case-thumb { height: 14rem; background-size: cover; background-position: center; }
.thumb-one   { background-image: url('Images/outdoortara.webp'); }
.thumb-two   { background-image: url('Images/perucicabase.webp'); }
.thumb-three { background-image: url('Images/adrialux.jpg'); }
.thumb-four  { background-image: url('Images/canyoningba.webp'); }
.case-body { padding: 1.5rem; }
.case-body h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: .375rem; }
.case-body p  { color: var(--muted); font-size: .875rem; margin-bottom: .875rem; line-height: 1.6; }
.case-body ul { padding-left: 1rem; color: var(--muted); font-size: .8125rem; display: flex; flex-direction: column; gap: .25rem; }
.case-link {
  display: inline-flex; align-items: center; gap: .25rem;
  margin-top: 1rem; font-size: .8125rem; font-weight: 700;
  color: var(--blue); transition: gap .2s ease, color .15s;
}
.case-link:hover { gap: .5rem; color: var(--text); }

/* ── Testimonials ───────────────────────────────────── */
.testimonials { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonial { border: 1px solid var(--border); border-radius: 1.5rem; padding: 2rem; background: var(--bg); }
.testimonial p { color: var(--muted); }
.testimonial.featured { background: var(--blue); border-color: transparent; }
.testimonial.featured p { color: rgba(255,255,255,.75); }
.stars { font-size: 1rem; letter-spacing: .12em; margin-bottom: .875rem; color: var(--copper); }
.testimonial.featured .stars { color: #f5c842; }
.author { font-weight: 700; font-size: .875rem; margin-top: 1.25rem; color: var(--blue); }
.testimonial.featured .author { color: rgba(255,255,255,.95); }

/* ── Pricing ────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 1.5rem; padding: 2rem; }
.price-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: .25rem; }
.price-card ul { padding-left: 1rem; color: var(--muted); font-size: .875rem; display: flex; flex-direction: column; gap: .4rem; margin-top: .5rem; }
.price-card li { color: var(--muted); }
.featured-price { border: 2px solid var(--blue); transform: translateY(-10px); box-shadow: 0 12px 40px rgba(29,78,216,.12); }
.badge {
  display: inline-block; background: var(--blue); color: #fff;
  border-radius: 999px; padding: .3rem .8rem;
  font-size: .6875rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: .875rem;
}
.price-desc { font-size: .8125rem; color: var(--muted); line-height: 1.5; margin: .25rem 0 1rem; }
.price { font-size: 2.75rem; font-weight: 800; color: var(--text); letter-spacing: -.04em; margin: .375rem 0 1.25rem; line-height: 1; }
.concept-badge {
  display: inline-block; font-size: .6875rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--copper); border: 1.5px solid var(--copper);
  border-radius: 999px; padding: .2rem .65rem; margin-bottom: .625rem;
}

/* ── FAQ ────────────────────────────────────────────── */
.faq-list details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 1rem; padding: 1.25rem 1.5rem;
  margin-bottom: .875rem; transition: box-shadow .2s;
}
.faq-list details[open] { box-shadow: var(--shadow); }
.faq-list summary {
  cursor: pointer; font-weight: 700; font-size: .9375rem;
  list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-size: 1.25rem; font-weight: 400; color: var(--muted); }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { color: var(--muted); margin-top: .875rem; font-size: .9375rem; line-height: 1.65; }

/* ── Contact ────────────────────────────────────────── */
.contact { padding-bottom: 7.5rem; }
.contact-box {
  background: var(--blue); border: none; border-radius: 2rem;
  padding: 5rem; text-align: center; color: #fff;
}
.contact-box h2 {
  font-size: clamp(1.625rem, 2.75vw, 2.625rem);
  letter-spacing: -.02em; font-weight: 800; color: #fff;
  max-width: 22ch; margin: 0 auto .875rem; line-height: 1.2;
}
.contact-box p { color: rgba(255,255,255,.7); margin-bottom: 2rem; font-size: 1.0625rem; }
.contact-box .btn-primary { background: #fff; color: var(--blue); }
.contact-box .btn-primary:hover { background: rgba(255,255,255,.92); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.14); }

/* ── Hero review ────────────────────────────────────── */
.hero-review {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 1.125rem 1.25rem;
  margin: 1.75rem 0 0;
}
.hero-review-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
}
.hero-review-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-review-body { flex: 1; }
.hero-review-stars { color: #f5c842; font-size: .875rem; letter-spacing: .1em; margin-bottom: .25rem; }
.hero-review-quote { font-size: .875rem; color: var(--text); line-height: 1.55; font-style: italic; margin-bottom: .375rem; }
.hero-review-name { font-size: .75rem; font-weight: 700; color: var(--muted); letter-spacing: .02em; }

/* ── Logo slider ────────────────────────────────────── */
.logos-section {
  overflow: hidden; padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.logos-track-wrap {
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logos-track {
  display: flex; align-items: center; gap: 2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-item {
  font-weight: 700; font-size: .8125rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); white-space: nowrap;
  opacity: .45;
  text-shadow: 0 0 18px rgba(29,78,216,.25);
  transition: opacity .3s, text-shadow .3s;
}
.logo-item:hover {
  opacity: 1;
  text-shadow: 0 0 22px rgba(29,78,216,.55);
}
.logo-sep { color: var(--border); font-size: .75rem; user-select: none; }

/* ── Services ──────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 1.5rem; padding: 2rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 2.625rem; height: 2.625rem;
  background: var(--blue); color: #fff; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.0625rem; margin-bottom: 1.25rem; flex-shrink: 0;
}
.service-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: .625rem; }
.service-card > p:not(.retainer-price) {
  color: var(--text); font-size: .875rem; line-height: 1.65; margin-bottom: 1rem;
}
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; margin-top: auto; }
.service-card li {
  font-size: .8125rem; color: var(--muted);
  display: flex; align-items: center; gap: .5rem;
}
.service-card li::before {
  content: ''; display: inline-block;
  width: .3125rem; height: .3125rem;
  border-radius: 50%; background: var(--sage); flex-shrink: 0;
}
.service-card--retainer { background: var(--blue); border-color: transparent; }
.service-card--retainer h3 { color: #fff; }
.service-card--retainer > p:not(.retainer-price) { color: var(--bg); }
.service-card--retainer .service-icon { background: rgba(255,255,255,.15); }
.service-card--retainer li { color: var(--bg); }
.service-card--retainer li::before { background: rgba(255,255,255,.38); }
.service-card--retainer:hover { box-shadow: 0 8px 32px rgba(29,78,216,.25); }
.retainer-price {
  font-size: 2.5rem; font-weight: 800;
  color: #fff; letter-spacing: -.04em;
  margin: .25rem 0 .75rem; line-height: 1;
}
.retainer-price span { font-size: 1rem; font-weight: 500; opacity: .6; letter-spacing: 0; }

/* ── Testimonials (2×2) ──────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }

/* ── Hero entrance animations ───────────────────────── */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}
.hero .eyebrow   { animation: heroIn .6s ease both .1s; }
.hero h1         { animation: heroIn .7s ease both .2s; }
.hero .lead      { animation: heroIn .7s ease both .3s; }
.hero .cta-row   { animation: heroIn .7s ease both .4s; }
.hero-review     { animation: heroIn .7s ease both .5s; }
.hero .stats     { animation: heroIn .7s ease both .6s; }
.hero-card       { animation: heroIn .85s ease both .25s, cardFloat 6s ease-in-out 1.5s infinite; }

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

/* ── Announcement bar ───────────────────────────────── */
.announce-bar {
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; padding: .625rem 1.25rem;
  font-size: .8125rem; font-weight: 600; letter-spacing: .01em;
  position: relative;
}
.announce-bar p { text-align: center; }
.announce-bar.hidden { display: none; }
.announce-close {
  background: none; border: none; color: #fff;
  font-size: 1.125rem; cursor: pointer; line-height: 1;
  padding: .125rem .375rem; opacity: .75; transition: opacity .15s;
  position: absolute; right: 1rem;
}
.announce-close:hover { opacity: 1; }

/* ── Scarcity badge ─────────────────────────────────── */
.scarcity-badge {
  display: inline-flex; align-items: center; gap: .375rem;
  background: rgba(29,78,216,.08); color: var(--blue);
  border: 1.5px solid rgba(29,78,216,.25);
  border-radius: 999px; padding: .3rem .875rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: .875rem;
}
.scarcity-badge::before {
  content: ''; display: inline-block;
  width: .5rem; height: .5rem; border-radius: 50%;
  background: var(--blue);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.75); }
}

/* ── WhatsApp nav icon ──────────────────────────────── */
.nav-whatsapp {
  display: inline-flex; align-items: center;
  padding: .5rem; flex-shrink: 0;
  transition: opacity .15s;
}
.nav-whatsapp:hover { opacity: .75; }
.wa-icon { width: 3rem; height: 3rem; display: block; object-fit: contain; }

/* ── Founder intro ──────────────────────────────────── */
.founder-intro { border-top: 1px solid var(--border); }
.founder-inner {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 5rem; align-items: center;
}
.founder-photo-wrap {
  border-radius: 1.5rem; overflow: hidden;
  aspect-ratio: 4/5; flex-shrink: 0;
}
.founder-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.founder-text h2 { font-size: 1.75rem; margin: .625rem 0 1.125rem; line-height: 1.25; }
.founder-text > p { font-size: 1rem; color: var(--muted); max-width: 42ch; }
.founder-signature {
  display: block; max-width: 150px; height: auto;
  margin-top: 1.5rem; opacity: .85;
  mix-blend-mode: multiply;
}

@media (max-width: 1024px) {
  .founder-inner { grid-template-columns: 260px 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .founder-inner { grid-template-columns: 1fr; gap: 2rem; }
  .founder-photo-wrap { max-width: 100%; aspect-ratio: auto; border-radius: 1.25rem; }
  .founder-text h2 { font-size: 1.375rem; }
  .founder-text > p { max-width: 100%; }
  .founder-signature { max-width: 120px; }
}

@media (max-width: 480px) {
  .founder-signature { max-width: 100px; }
}

/* ── Problem → Solution ─────────────────────────────── */
.problems-section { background: var(--surface); }
.problems-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
}
.problems-col h2,
.solutions-col h2 { margin-bottom: 2rem; }
.problem-card, .solution-card {
  padding: 1.5rem; border-radius: 1rem; margin-bottom: 1rem;
  border: 1px solid var(--border);
}
.problem-card { background: var(--bg); }
.problem-card h3 {
  font-size: .9375rem; font-weight: 700; margin-bottom: .5rem;
  color: var(--text);
}
.problem-card p { font-size: .875rem; color: var(--muted); }
.solution-card { background: rgba(29,78,216,.04); border-color: rgba(29,78,216,.15); }
.solution-card h3 {
  font-size: .9375rem; font-weight: 700; margin-bottom: .5rem;
  color: var(--blue);
}
.solution-card p { font-size: .875rem; color: var(--muted); }

/* ── Process section ────────────────────────────────── */
.process-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
  margin-top: 1rem;
}
.process-step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 1.5rem; padding: 2.5rem 2rem;
  position: relative;
}
.step-label {
  font-size: .6875rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: .875rem;
}
.process-step h3 { font-size: 1.125rem; margin-bottom: .75rem; }
.process-step p { font-size: .9rem; color: var(--muted); }

/* ── Footer ─────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  background: var(--surface);
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo { height: 2rem; }
.footer-nav {
  display: flex; gap: 1.75rem;
  font-size: .875rem; font-weight: 500; color: var(--muted);
  flex-wrap: wrap;
}
.footer-nav a { transition: color .15s; }
.footer-nav a:hover { color: var(--text); }
.footer-copy {
  font-size: .8125rem; color: var(--muted); white-space: nowrap;
}

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .footer-nav { gap: 1.25rem; }
  .footer-logo { height: 1.75rem; }
}
@media (max-width: 480px) {
  .footer-nav { gap: 1rem; font-size: .8125rem; }
  .footer-logo { height: 1.5rem; }
}

/* ── Hamburger ─────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: .3125rem; background: none; border: none; cursor: pointer;
  padding: .375rem; flex-shrink: 0; z-index: 20;
}
.hamburger span {
  display: block; width: 1.5rem; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(.4375rem) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-.4375rem) rotate(-45deg); }

/* ── Mobile nav panel ───────────────────────────────── */
.mobile-nav {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(244,241,235,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem 1.75rem;
  flex-direction: column; gap: .25rem;
}
.mobile-nav.open {
  display: flex;
  animation: slideDown .25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav a:not(.btn) {
  font-size: 1rem; font-weight: 600; color: var(--text);
  padding: .75rem 0; border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.mobile-nav a:not(.btn):last-of-type { border-bottom: none; }
.mobile-nav a:not(.btn):hover { color: var(--blue); }
.mobile-nav .btn {
  margin-top: .75rem; width: 100%; justify-content: center;
  background: var(--blue);
}

/* ── Responsive ─────────────────────────────────────── */


/* Tablet landscape */
@media (max-width: 1024px) {
  .container { padding: 0 3rem; }
  .nav-inner { padding: 1rem 1.25rem; }
  .nav-logo { height: 5rem; }
  .nav .btn { padding: .625rem 1.25rem; font-size: .8125rem; }
  .hero-grid { gap: 3rem; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .featured-price { transform: none; box-shadow: var(--shadow-md); }
}

/* Tablet portrait / large phone */
@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .nav-inner { padding: .875rem 1.25rem; }
  .nav-logo { height: 4.5rem; }
  .nav .btn { padding: .5625rem 1.125rem; font-size: .75rem; }
  .section { padding: 4rem 0; }
  .hero-grid,
  .portfolio-grid,
  .pricing-grid,
  .testimonials-grid,
  .services-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero-grid { gap: 2rem; }
  .stats { grid-template-columns: repeat(3,1fr); }
  .nav nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-whatsapp { display: none; }
  .featured-price { transform: none; }
  .contact-box { padding: 3rem 2rem; margin: 0 1.25rem; border-radius: 1.5rem; }
  .hero-review { margin-top: 1.25rem; }
  .section-head { margin-bottom: 2rem; }
  .case-thumb { height: 11rem; }
  .contact { padding-bottom: 5rem; }
}

/* Large phone */
@media (max-width: 600px) {
  .hero-review { flex-direction: column; gap: .625rem; }
  .hero-review-avatar { width: 2rem; height: 2rem; }
  .pricing-grid,
  .services-grid,
  .portfolio-grid { gap: 1rem; }
  .faq-list details { padding: 1rem 1.25rem; }
  .logos-section { padding: 1rem 0; }
  .announce-bar { font-size: .75rem; padding: .5rem 2.5rem .5rem 1rem; }
}

/* Small phone */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3rem 0; }
  .stats { grid-template-columns: 1fr; }
  .contact-box { padding: 2.25rem 1.5rem; margin: 0 1.25rem; border-radius: 1.25rem; }
  .nav-inner { padding: .75rem 1.25rem; }
  .nav .btn { padding: .5rem .875rem; font-size: .6875rem; }
  .nav-logo { height: 4rem; }
  .btn { padding: .75rem 1.5rem; }
  .hero-review-quote { font-size: .8125rem; }
  .price { font-size: 2.25rem; }
  .retainer-price { font-size: 2rem; }
  .service-icon { width: 2.25rem; height: 2.25rem; font-size: .9375rem; }
}