/* CRMaps — Advertise sales sheet
   Loads after colors_and_type.css
   ============================================================ */

:root{
  --r:        14px;
  --r-sm:     8px;
  --r-pill:   999px;
  --section-pad-y: clamp(72px, 8vw, 120px);
  --section-pad-x: clamp(20px, 5vw, 72px);
  --container: 1200px;
  --hero-container: 1500px;

  --t-fast: 140ms cubic-bezier(.2,.84,.18,1);
  --t-med:  260ms cubic-bezier(.22,.88,.22,1);

  --shadow-card: 0 6px 16px rgba(15,112,180,0.08);
  --shadow-lift: 0 18px 42px rgba(0,38,78,0.16);
  --shadow-soft: 0 1px 4px rgba(0,0,0,0.06);
}

*,*::before,*::after{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  color: var(--fg-1);
  background: var(--bg-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ----------------------------------------------------------
   Section scaffolding
   ---------------------------------------------------------- */
.section{
  position: relative;
  padding: var(--section-pad-y) var(--section-pad-x);
  overflow: hidden;
}
.section-inner{
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  z-index: 2;
}
.section--cream{ background: #faf8f3; }
.section--blue{
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(35,170,224,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(2,83,145,0.6) 0%, transparent 65%),
    linear-gradient(165deg, #084b88 0%, #0061b4 55%, #023a6a 100%);
  color: #fff;
}
.section--blue::before{
  content:"";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: .65;
}

.kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 800 11px/1 'Roboto';
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crmaps-blue);
  margin-bottom: 14px;
}
.kicker::before{
  content:"";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.section--blue .kicker{ color: var(--crmaps-yellow); }

.title{
  font: 800 clamp(32px, 4.4vw, 56px)/1.02 'Roboto Condensed','Roboto';
  letter-spacing: -0.015em;
  color: var(--fg-1);
  text-wrap: balance;
  max-width: 22ch;
  margin-bottom: 14px;
}
.title em{ font-style: normal; color: var(--crmaps-orange); }
.section--blue .title{ color: #fff; }

.lede{
  font: 300 clamp(16px, 1.3vw, 19px)/1.55 'Roboto';
  color: var(--fg-3);
  max-width: 62ch;
  margin-bottom: 28px;
}
.section--blue .lede{ color: rgba(255,255,255,0.88); }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font: 700 14px/1 'Roboto';
  letter-spacing: 0.02em;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn img{ width: 18px; height: 18px; }
.btn--primary{ background: var(--crmaps-orange); color: #fff; box-shadow: 0 8px 22px rgba(249,115,22,0.32); }
.btn--primary:hover{ background: var(--crmaps-orange-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(249,115,22,0.45); }
.btn--ghost{ background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.32); backdrop-filter: blur(6px); }
.btn--ghost:hover{ background: rgba(255,255,255,0.2); }
.btn--outline{ background: transparent; color: var(--crmaps-blue); border: 1.5px solid var(--crmaps-blue); }
.btn--outline:hover{ background: var(--crmaps-blue); color: #fff; }
.btn--whatsapp{ background: #25d366; color: #fff; }
.btn--whatsapp:hover{ background: #1ebe5d; transform: translateY(-2px); }
.btn--blue{ background: var(--crmaps-blue); color: #fff; }
.btn--blue:hover{ background: var(--crmaps-blue-deep); transform: translateY(-1px); }


/* ----------------------------------------------------------
   Header
   ---------------------------------------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(48,65,72,0.08);
}
.site-header__inner{
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--section-pad-x);
  gap: 16px;
}
.site-header__brand{ display: flex; align-items: center; gap: 12px; }
.site-header__brand img{ height: 38px; width: auto; }
.site-header__brand-text{
  font: 800 14px/1 'Roboto Condensed';
  color: var(--fg-1);
  letter-spacing: -0.01em;
  display: grid;
  gap: 3px;
}
.site-header__brand-text small{
  font: 600 10px/1 'Roboto';
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.site-header__cta{ display: flex; gap: 10px; align-items: center; }
.site-header__cta .btn{ padding: 10px 18px; font-size: 13px; }
@media (max-width: 640px){
  .site-header__cta .btn--ghost-sm{ display: none; }
}

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.hero{
  position: relative;
  display: block;
  background:
    radial-gradient(ellipse 80% 60% at 90% 0%, rgba(35,170,224,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 70% 70% at 0% 100%, rgba(0,136,62,0.4) 0%, transparent 60%),
    linear-gradient(170deg, #023a6a 0%, #0061b4 45%, #084b88 100%);
  color: #fff;
  padding: clamp(96px, 9vw, 132px) var(--section-pad-x) clamp(54px, 6vw, 86px);
  overflow: hidden;
}
.hero::before{
  content:"";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero__grid{
  position: relative;
  z-index: 2;
  max-width: var(--hero-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,1fr);
  gap: clamp(28px, 3vw, 44px);
  align-items: center;
}

.hero__pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  font: 700 11px/1 'Roboto';
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.96);
  margin-bottom: 20px;
}
.hero__pill::before{
  content:"";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--crmaps-yellow);
  box-shadow: 0 0 10px rgba(242,201,76,0.8);
}

.hero__title{
  font: 800 clamp(40px, 4.8vw, 68px)/0.96 'Roboto Condensed','Roboto';
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.22);
}
.hero__title em{
  font-style: normal;
  color: var(--crmaps-yellow);
}
.hero__sub{
  font: 300 clamp(17px, 1.35vw, 21px)/1.38 'Roboto';
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
  max-width: 76ch;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.hero__intro{
  font: 300 clamp(17px, 1.35vw, 21px)/1.38 'Roboto';
  color: var(--crmaps-yellow);
  margin-bottom: 22px;
  max-width: 76ch;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.hero__cta{ display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }

.hero__stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 620px;
}
.hero__stat strong{
  display: block;
  font: 800 clamp(22px, 2.2vw, 30px)/1 'Roboto Condensed';
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.hero__stat span{
  font: 500 11px/1.3 'Roboto';
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero__media-wrap{
  width: 100%;
  max-width: 700px;
  justify-self: end;
}
.hero__media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  width: 700px;
  height: auto;
  max-width: 100%;
  aspect-ratio: 7 / 6;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.16);
}
.hero__slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 520ms ease, transform 900ms ease;
}
.hero__slide.is-active{
  opacity: 1;
  transform: scale(1);
}
.hero__media-badge{
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font: 800 11px/1 'Roboto';
  color: var(--crmaps-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__media-badge::before{
  content:"";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--crmaps-green);
  box-shadow: 0 0 0 0 rgba(0,136,62,0.6);
  animation: pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot{
  0%{ box-shadow: 0 0 0 0 rgba(0,136,62,0.6); }
  100%{ box-shadow: 0 0 0 10px rgba(0,136,62,0); }
}
.hero__edition{
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__edition strong{
  display: block;
  font: 800 13px/1.2 'Roboto Condensed';
  letter-spacing: 0.01em;
}
.hero__edition span{
  font: 500 11px/1 'Roboto';
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__edition-pulse{
  min-width: 52px; height: 38px;
  padding: 0 10px;
  border-radius: 12px;
  background: var(--crmaps-orange);
  display: grid;
  place-items: center;
  font: 800 18px/1 'Roboto Condensed';
  color: #fff;
}
.hero__dots{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
}
.hero__dots button{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.48);
  transition: width var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.hero__dots button.is-active{
  width: 28px;
  background: var(--crmaps-yellow);
  border-color: var(--crmaps-yellow);
}

.hero__ecosystem{
  position: relative;
  z-index: 2;
  max-width: var(--hero-container);
  margin: clamp(18px, 2.4vw, 32px) auto 0;
  padding-top: 0;
}
.hero__ecosystem-head{
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}
.hero__ecosystem-head span{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 800 11px/1 'Roboto';
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crmaps-yellow);
}
.hero__ecosystem-head span::before{
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.hero__ecosystem-head p{
  margin: 0;
  font: 400 14px/1.5 'Roboto';
  color: rgba(255,255,255,0.78);
  max-width: 70ch;
}
.hero__ecosystem .eco-card{
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 18px 42px rgba(0,31,58,0.18);
}

@media (max-width: 920px){
  .hero__grid{ grid-template-columns: 1fr; width: 100%; max-width: 100%; }
  .hero__copy,
  .hero__media-wrap,
  .hero__media{ min-width: 0; max-width: 100%; }
  .hero__media-wrap{ justify-self: center; }
  .hero__media{ width: min(700px, 100%); height: min(600px, calc((100vw - 40px) * 0.857)); margin: 0 auto; }
  .hero__stats{ max-width: none; }
  .hero__ecosystem-head{ grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 480px){
  .hero{
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero__title{
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.02;
    max-width: 100%;
  }
  .hero__sub,
  .hero__intro{
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero__stats{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }
  .hero__stat span{
    white-space: normal;
    overflow-wrap: anywhere;
    letter-spacing: 0.04em;
  }
  .hero__cta .btn{
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
  }
  .hero__media{
    width: min(700px, 100%);
    height: calc((100vw - 48px) * 0.857);
    max-height: 600px;
  }
  .hero__media-badge{
    max-width: calc(100% - 28px);
    font-size: 10px;
  }
  .hero__edition{
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .hero__ecosystem{
    margin-top: 32px;
    padding-top: 24px;
  }
}


/* ----------------------------------------------------------
   ECOSYSTEM (4 cards)
   ---------------------------------------------------------- */
.eco-head{
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 44px;
}
.eco-head .lede{ margin: 0; }
.eco-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.eco-card{
  position: relative;
  background: var(--bg-paper);
  border: 1px solid rgba(48,65,72,0.1);
  border-radius: 18px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  overflow: hidden;
}
.eco-card::after{
  content:"";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,97,180,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.eco-card:hover{
  transform: translateY(-4px);
  border-color: var(--crmaps-blue);
  box-shadow: var(--shadow-lift);
}
.eco-card__num{
  position: absolute;
  top: 18px; right: 22px;
  font: 800 12px/1 'Roboto Condensed';
  color: var(--fg-5);
  letter-spacing: 0.08em;
}
.eco-card__icon{
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--crmaps-blue) 0%, var(--crmaps-blue-bright) 100%);
  display: grid;
  place-items: center;
  color: #fff;
}
.eco-card__icon svg{ width: 26px; height: 26px; }
.eco-card--orange .eco-card__icon{ background: linear-gradient(135deg, var(--crmaps-orange), #ffa867); }
.eco-card--green .eco-card__icon{ background: linear-gradient(135deg, var(--crmaps-green), #4eb274); }
.eco-card--yellow .eco-card__icon{ background: linear-gradient(135deg, #d99c00, var(--crmaps-yellow)); }
.eco-card h3{
  font: 800 19px/1.15 'Roboto Condensed';
  color: var(--fg-1);
  letter-spacing: -0.01em;
}
.eco-card p{
  font: 400 14px/1.55 'Roboto';
  color: var(--fg-3);
}
.eco-card__metric{
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(48,65,72,0.14);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.eco-card__metric strong{
  font: 800 22px/1 'Roboto Condensed';
  color: var(--crmaps-blue);
  letter-spacing: -0.01em;
}
.eco-card--orange .eco-card__metric strong{ color: var(--crmaps-orange); }
.eco-card--green .eco-card__metric strong{ color: var(--crmaps-green); }
.eco-card--yellow .eco-card__metric strong{ color: #d99c00; }
.eco-card__metric span{
  font: 500 11px/1.3 'Roboto';
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-4);
}

@media (max-width: 920px){
  .eco-grid{ grid-template-columns: repeat(2, 1fr); }
  .eco-head{ grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 520px){
  .eco-grid{ grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   INCLUDED (split layout)
   ---------------------------------------------------------- */
.incl-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
.incl-left{
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.5vw, 20px);
}
.incl-visual{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  flex: 1;
  min-height: 200px;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(255,255,255,0.18);
  background: #f4f2ee;
}
.incl-visual img{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
}
.incl-caption{
  padding: 18px 22px;
  background: var(--crmaps-blue);
  border-radius: 14px;
  flex-shrink: 0;
}
.incl-caption strong{
  display: block;
  font: 800 16px/1.2 'Roboto Condensed';
  color: #fff;
  margin-bottom: 5px;
}
.incl-caption span{
  font: 400 13px/1.4 'Roboto';
  color: rgba(255,255,255,0.82);
}

.incl-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 8px;
}
.incl-item{
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--bg-paper);
  border: 1px solid rgba(48,65,72,0.1);
  border-radius: var(--r);
  font: 500 14px/1.4 'Roboto';
  color: var(--fg-1);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.incl-item:hover{ border-color: var(--crmaps-green); transform: translateX(3px); }
.incl-item::before{
  content:"";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--crmaps-green);
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.incl-item.is-star::before{
  background: var(--crmaps-orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2l2.5 6.5L21 9l-5 4.5L17.5 21 12 17.5 6.5 21 8 13.5 3 9l6.5-.5L12 2z'/%3E%3C/svg%3E");
  background-size: 13px;
}

@media (max-width: 920px){
  .incl-grid{ grid-template-columns: 1fr; }
  .incl-left{ max-width: 520px; margin: 0 auto; width: 100%; }
  .incl-visual{ flex: none; aspect-ratio: 6/5; }
}
@media (max-width: 520px){
  .incl-list{ grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   PRINTED MAPS (image collage)
   ---------------------------------------------------------- */
.print-head{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0,1fr);
  gap: clamp(24px, 3.5vw, 48px);
  align-items: end;
  margin-bottom: 36px;
}
.print-head .lede{ margin-bottom: 0; }

.print-collage{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.print-tile{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(0,0,0,0.06);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,0.6);
  transition: transform var(--t-med);
}
.print-tile:hover{ transform: translateY(-3px); }
.print-tile img{ width: 100%; height: 100%; object-fit: cover; }

.print-points{
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 14px;
  margin-top: 32px;
}
.print-point{
  padding: 18px 16px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(48,65,72,0.1);
  border-radius: var(--r);
  text-align: center;
}
.print-point strong{
  display: block;
  font: 800 14px/1.2 'Roboto Condensed';
  color: var(--fg-1);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.print-point span{
  font: 400 12px/1.4 'Roboto';
  color: var(--fg-4);
}

@media (max-width: 920px){
  .print-head{ grid-template-columns: 1fr; }
  .print-collage{ grid-template-columns: repeat(2, 1fr); }
  .print-points{ grid-template-columns: repeat(2, 1fr); }
}


/* ----------------------------------------------------------
   PRICING
   ---------------------------------------------------------- */
.section-heading-center{
  text-align: center;
  margin-bottom: 48px;
}
.section-heading-center .kicker,
.section-heading-center .title,
.section-heading-center .lede{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading-left{
  margin-bottom: 36px;
}
.section-heading-left--white{
  max-width: 780px;
  margin-bottom: 44px;
}
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
  margin-top: 8px;
}
.price-card{
  position: relative;
  padding: 32px 28px 28px;
  background: var(--bg-paper);
  border: 1px solid rgba(48,65,72,0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.price-card:hover{
  transform: translateY(-4px);
  border-color: var(--crmaps-blue);
  box-shadow: var(--shadow-lift);
}
.price-card--featured{
  background: linear-gradient(165deg, #ffffff 0%, #fff5ec 100%);
  border: 2px solid var(--crmaps-orange);
  transform: translateY(-12px);
  box-shadow: 0 24px 50px rgba(249,115,22,0.18);
}
.price-card--featured:hover{ transform: translateY(-16px); }
.price-card__badge{
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--crmaps-orange);
  color: #fff;
  border-radius: var(--r-pill);
  font: 800 10px/1 'Roboto';
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-card__sample{
  width: 100%;
  aspect-ratio: 3082/2369;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
}
.price-card__sample img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.price-card__name{
  font: 800 28px/1 'Roboto Condensed';
  color: var(--fg-1);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.price-card__tag{
  display: block;
  font: 600 11px/1 'Roboto';
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-5);
  margin-bottom: 18px;
}
.price-card ul{
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  flex: 1;
}
.price-card ul li{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font: 400 13px/1.4 'Roboto';
  color: var(--fg-2);
}
.price-card ul li::before{
  content: "✓";
  font-weight: 800;
  color: var(--crmaps-green);
  font-size: 15px;
}
.price-card__cta{
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: var(--crmaps-blue);
  color: #fff;
  font: 700 13px/1 'Roboto';
  letter-spacing: 0.04em;
  transition: background var(--t-fast);
  text-align: center;
}
.price-card__cta:hover{ background: var(--crmaps-blue-deep); }
.price-card--featured .price-card__cta{ background: var(--crmaps-orange); }
.price-card--featured .price-card__cta:hover{ background: var(--crmaps-orange-deep); }

.pricing-note{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding: 18px 22px;
  background: rgba(0,97,180,0.06);
  border: 1px dashed rgba(0,97,180,0.28);
  border-radius: 14px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-note__icon{
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--crmaps-blue);
  display: grid;
  place-items: center;
  color: #fff;
}
.pricing-note__icon svg{ width: 22px; height: 22px; }
.pricing-note p{
  font: 500 14px/1.5 'Roboto';
  color: var(--fg-2);
}
.pricing-note p strong{ color: var(--crmaps-blue); font-weight: 800; }

@media (max-width: 920px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .price-card--featured{ transform: none; }
  .price-card--featured:hover{ transform: translateY(-4px); }
}

/* ----------------------------------------------------------
   REGIONS
   ---------------------------------------------------------- */
.regions-grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}
.region-card{
  flex: 0 0 calc((100% - 42px) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px 18px;
  text-align: center;
  background: var(--bg-paper);
  border: 1px solid rgba(48,65,72,0.1);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
}
.region-card:hover{
  transform: translateY(-3px);
  border-color: var(--crmaps-orange);
  box-shadow: var(--shadow-card);
}
.region-card__logo{
  width: 100%;
  padding: 0 8px 14px;
}
.region-card__logo img{
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.region-card__name{
  font: 700 14px/1.2 'Roboto';
  color: var(--fg-1);
}
.region-card__name small{
  display: block;
  font: 500 11px/1.2 'Roboto';
  color: var(--fg-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ----------------------------------------------------------
   WHY (benefit cards)
   ---------------------------------------------------------- */
.why-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 8px;
}
.why-card{
  padding: 24px 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(6px);
  transition: background var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
}
.why-card:hover{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-3px);
}
.why-card__num{
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--crmaps-yellow);
  color: var(--fg-1);
  font: 800 14px/1 'Roboto Condensed';
  letter-spacing: -0.01em;
}
.why-card p{
  font: 500 15px/1.45 'Roboto';
  color: rgba(255,255,255,0.92);
  text-wrap: pretty;
}

@media (max-width: 920px){
  .why-grid{ grid-template-columns: 1fr; }
  .region-card{ flex: 0 0 calc((100% - 14px) / 2); }
}
@media (max-width: 480px){
  .region-card{ flex: 0 0 100%; }
}

/* ----------------------------------------------------------
   CONTACT / CLOSING
   ---------------------------------------------------------- */
.contact-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact-info h3{
  font: 800 clamp(26px, 2.8vw, 38px)/1.1 'Roboto Condensed';
  color: var(--fg-1);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.contact-info p{
  font: 300 17px/1.5 'Roboto';
  color: var(--fg-3);
  margin-bottom: 28px;
  max-width: 42ch;
}
.contact-channels{
  display: grid;
  gap: 12px;
  margin-bottom: 0;
}
.contact-channel{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg-paper);
  border: 1px solid rgba(48,65,72,0.1);
  border-radius: 12px;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.contact-channel:hover{ border-color: var(--crmaps-blue); transform: translateX(4px); }
.contact-channel img{ width: 44px; height: 44px; padding: 8px; border-radius: 10px; background: rgba(0,97,180,0.06); }
.contact-channel strong{ display: block; font: 800 14px/1.2 'Roboto'; color: var(--fg-1); margin-bottom: 2px; }
.contact-channel span{ font: 400 13px/1.3 'Roboto'; color: var(--fg-4); }

.contact-form{
  background: var(--bg-paper);
  border: 1px solid rgba(48,65,72,0.1);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-lift);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row--full{ grid-template-columns: 1fr; }
.form-field{ display: flex; flex-direction: column; gap: 6px; }
.form-field label{
  font: 700 11px/1 'Roboto';
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.form-field input, .form-field select, .form-field textarea{
  font: 400 14px/1.4 'Roboto';
  padding: 12px 14px;
  border: 1.5px solid rgba(48,65,72,0.18);
  border-radius: 10px;
  background: #fff;
  color: var(--fg-1);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline: none;
  border-color: var(--crmaps-orange);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.14);
}
.form-field textarea{ resize: vertical; min-height: 100px; }
.form-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(48,65,72,0.08);
}
.form-actions small{ font: 400 12px/1.4 'Roboto'; color: var(--fg-5); max-width: 32ch; }

@media (max-width: 920px){
  .contact-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
}
@media (max-width: 767px){
  .contact-info p{ font-size: 16px; }
  .contact-channel{ grid-template-columns: 40px 1fr; gap: 12px; padding: 13px 14px; }
  .contact-channel img{ width: 40px; height: 40px; }
  .contact-form{ padding: 20px; border-radius: 14px; }
  .form-actions{ align-items: stretch; flex-direction: column; }
  .form-actions .btn{ width: 100%; }
  .form-actions small{ max-width: none; }
}

/* ----------------------------------------------------------
   PRINT
   ---------------------------------------------------------- */
@media print{
  :root{ --section-pad-y: 36px; --section-pad-x: 24px; }
  .site-header{ position: static; }
  .hero, .section--blue{ -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .price-card--featured{ transform: none !important; }
  .eco-card, .price-card, .contact-channel, .incl-item{ break-inside: avoid; }
  .section{ break-inside: avoid; }
  .hero{ padding: 40px 24px; }
}
