:root {
  --paper: #EEF3EE;
  --card: #FBFDFB;
  --ink: #152A1E;
  --ink-soft: #4E6156;
  --accent: #2DB865;
  --accent-soft: #D9F0E1;
  --highlight: #D98E2B;
  --line: #C4D4C9;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent);
}

/* ---------- announcement/promo bar ---------- */
.promo-bar {
  background: var(--accent-soft);
  color: var(--ink);
  font-size: clamp(11.5px, 1.8vw, 13.5px);
  padding: clamp(6px, 1.5vw, 10px) 24px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
  z-index: 70;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(12px, 3vw, 24px);
  line-height: 1.4;
}

#promo-countdown {
  font-variant-numeric: tabular-nums;
  opacity: 0.95;
  flex-shrink: 0;
}

.countdown-unit {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  background: var(--paper);
  color: #000;
  padding: 1px 4px;
  border-radius: 3px;
  border: 1px solid var(--line);
  margin: 0 1px;
  font-size: 1.02em;
  display: inline-block;
  min-width: 18px;
  text-align: center;
}

@media (max-width: 768px) {
  .promo-bar {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 6px;
    padding: 8px 16px;
  }
  #promo-countdown {
    font-size: 0.95em;
    opacity: 0.9;
  }
}

.promo-bar a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.promo-bar a:hover {
  color: var(--ink);
}

/* ---------- hero ---------- */
.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(12px, 3vw, 24px) 0 clamp(6px, 1.5vw, 16px);
  text-align: center;
}

.hero__logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(6px, 1.5vw, 12px);
}

.hero__logo {
  height: clamp(32px, 6vw, 48px);
  width: auto;
  object-fit: contain;
}

.hero p {
  font-size: clamp(12px, 2vw, 15.5px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 800px;
  white-space: normal;
}

.hero__banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(14px, 2.8vw, 26px);
  font-weight: 700;
  padding: clamp(10px, 2vw, 18px) 24px;
  margin-top: clamp(10px, 2.5vw, 24px);
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.35;
}

/* ---------- phone mockup container ---------- */
.phone-wrap {
  display: flex;
  justify-content: center;
  padding: 6px 0 4px;
}

@media (min-width: 860px) {
  .hero {
    max-width: 980px;
    transition: max-width 0.3s ease;
  }
}

@media (min-width: 860px) {
  body.layout-3 .hero {
    max-width: 1400px;
  }
}

/* ---------- steps carousel ---------- */
.carousel-section {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(8px, 2vw, 16px) clamp(32px, 4vw, 48px);
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.carousel-track-wrap {
  overflow: hidden;
  flex: 1;
  min-height: 0;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
  touch-action: pan-y;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: grid;
  gap: clamp(8px, 2vw, 16px);
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 600px) {
  .carousel-slide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .carousel-slide {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-card {
  display: grid;
  grid-template-columns: clamp(56px, 8vw, 80px) 1fr;
  column-gap: clamp(10px, 2vw, 20px);
  min-height: 0;
  align-items: start;
}

.c-card__num {
  width: clamp(56px, 8vw, 80px);
  height: clamp(56px, 8vw, 80px);
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: start;
}

.c-card__num-label {
  font-size: clamp(9px, 1.2vw, 12px);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.9;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.c-card__num-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1;
}

.c-card__body {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(12px, 2vw, 20px);
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.c-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(14px, 2vw, 19px);
  font-weight: 600;
  margin: 0 0 6px;
}

.c-card__text {
  font-size: clamp(12px, 1.5vw, 14.5px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.c-card__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.c-card__list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: clamp(11.5px, 1.4vw, 13.5px);
  line-height: 1.45;
  color: var(--ink-soft);
}

.c-card__list-icon {
  width: clamp(12px, 1.5vw, 14px);
  height: clamp(12px, 1.5vw, 14px);
  stroke: var(--accent);
  stroke-width: 3;
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

.c-card__img img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  flex: 1;
  min-height: 0;
  object-fit: contain;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: -3px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 clamp(1px, 0.5vw, 0px);
}

.carousel-btn {
  width: clamp(28px, 4vw, 38px);
  height: clamp(28px, 4vw, 38px);
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
  pointer-events: all;
  z-index: 10;
}

.carousel-btn:hover {
  background: #25a057;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 3vw, 32px);
  flex-wrap: wrap;
}

.logos-row img {
  max-height: clamp(24px, 4vw, 44px);
  width: auto;
  object-fit: contain;
}

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (min-width: 1024px) {
  .logo-marquee { animation: none !important; }
  .logo-marquee-clone { display: none !important; }
  .logo-marquee-wrap { display: flex; justify-content: center; }
  .logo-marquee { width: auto; }
}

.footer-links {
  text-align: center;
  padding: 8px 24px;
  border-top: 1px solid var(--line);
  margin-top: 0.4%;
  font-size: clamp(11.5px, 2vw, 13.5px);
  color: var(--ink-soft);
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-company {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-divider {
  color: var(--line);
  user-select: none;
}

.footer-tc {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-tc:hover {
  text-decoration: underline;
  color: var(--ink);
}

@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    gap: 4px;
    padding: 12px 24px;
  }
  .footer-divider {
    display: none;
  }
}

/* ---------- floating whatsapp support ---------- */
.support-btn {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(45, 184, 101, 0.25);
  z-index: 9999;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.support-btn:hover {
  background: #20ba59;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(45, 184, 101, 0.35);
}

.support-btn:active {
  transform: scale(0.95);
}

/* ---------- whatsapp support modal ---------- */
.support-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-modal.active {
  opacity: 1;
  pointer-events: all;
}

.support-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 42, 30, 0.45);
  backdrop-filter: blur(4px);
}

.support-modal__container {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 90%;
  max-width: 440px;
  box-shadow: 0 20px 40px rgba(21, 42, 30, 0.15);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 2;
}

.support-modal.active .support-modal__container {
  transform: translateY(0) scale(1);
}

.support-modal__header {
  background: var(--ink);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.support-modal__header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-modal__avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.support-modal__title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.support-modal__subtitle {
  margin: 2px 0 0;
  font-size: 11.5px;
  opacity: 0.85;
}

.support-modal__close {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  opacity: 0.8;
}

.support-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.support-modal__form {
  padding: 20px;
}

.support-modal__intro {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.support-modal__field {
  margin-bottom: 14px;
}

.support-modal__field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
  font-family: 'Space Grotesk', sans-serif;
}

.support-modal__field input,
.support-modal__field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  font-size: 13.5px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.support-modal__field input:focus,
.support-modal__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.support-modal__submit-btn {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 11px 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(45, 184, 101, 0.15);
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 18px;
}

.support-modal__submit-btn:hover {
  background: #20ba59;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(45, 184, 101, 0.25);
}

.support-modal__submit-btn:active {
  transform: translateY(0);
}

/* ---------- step 1 custom mockup ---------- */
.step1-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(6px, 1vh, 10px);
  flex: 1;
  min-height: 0;
  margin-top: clamp(4px, 1vw, 8px);
  width: 100%;
}

.step1-mockup__img-wrap {
  flex: none;
  height: clamp(80px, 14vh, 120px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step1-mockup__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 8px 16px rgba(21, 42, 30, 0.08));
  transition: transform 0.3s ease;
}

.step1-mockup__img:hover {
  transform: scale(1.03);
}

.step1-mockup__list {
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(4px, 0.8vh, 8px);
  text-align: left;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.step1-mockup__item {
  display: flex;
  align-items: flex-start;
  gap: clamp(6px, 1vw, 10px);
  transition: transform 0.2s ease;
  cursor: default;
}

.step1-mockup__item:hover {
  transform: translateX(4px);
}

.step1-mockup__icon-svg {
  width: clamp(11px, 1.3vw, 13px);
  height: clamp(11px, 1.3vw, 13px);
  flex-shrink: 0;
  margin-top: 2px;
}

.step1-mockup__text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

@media (max-width: 599px) {
  .c-card__body {
    padding: 10px;
  }
  .c-card__title {
    font-size: 14.5px;
    margin-bottom: 4px;
  }
  .c-card__text {
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 1.45;
  }

}

/* ---------- quick message pills ---------- */
.support-modal__pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.support-pill {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  padding: 5px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.support-pill:hover {
  border-color: var(--accent);
  color: var(--ink);
  background: var(--accent-soft);
}

.support-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 2px 6px rgba(45, 184, 101, 0.25);
}

.support-modal__note {
  font-size: 11px;
  color: var(--ink-soft);
  margin: 12px 0 0;
  line-height: 1.4;
  text-align: center;
  opacity: 0.85;
}

/* ---------- rental offer card ---------- */
.rental-offer {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.2vh, 10px);
  width: 100%;
  margin-top: clamp(4px, 1vw, 8px);
}

.rental-offer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(6px, 1vw, 10px);
}

@media (max-width: 480px) {
  .rental-offer__grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.rental-offer__benefit {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(6px, 1.2vw, 10px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.rental-offer__benefit:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.rental-offer__badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(7.5px, 0.9vw, 9px);
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 1px 4px;
  border-radius: 3px;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.rental-offer__badge.highlight {
  color: #c2781b;
  background: #fdf1de;
}

.rental-offer__value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  line-height: 1.1;
}

.rental-offer__unit {
  font-size: clamp(10px, 1.2vw, 11px);
  font-weight: 500;
  color: var(--ink-soft);
}

.rental-offer__desc {
  font-size: clamp(9.5px, 1.1vw, 11px);
  line-height: 1.35;
  color: var(--ink-soft);
}

.rental-offer__footer {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: clamp(6px, 1.2vw, 10px);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rental-offer__requirement-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(11px, 1.3vw, 12px);
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 4px;
}

.rental-offer__requirement-icon {
  width: clamp(12px, 1.5vw, 14px);
  height: clamp(12px, 1.5vw, 14px);
  color: var(--accent);
  flex-shrink: 0;
}

.rental-offer__requirement-text {
  margin: 0;
  font-size: clamp(10px, 1.2vw, 11.5px);
  line-height: 1.35;
  color: var(--ink-soft);
}

