:root {
  --tm: #e20074;
  --bg: #f3f3f3;
  --white: #fff;
  --ink: #111;
  --muted: #666;
  --line: rgba(0, 0, 0, 0.1);
  --shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  --radius2: 18px;
  --container: 1480px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* top bar */
.top-announce {
  background: var(--tm);
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
  padding: 10px 0;
}

/* header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.logo-box {
  width: 34px;
  height: 34px;
  background: var(--tm);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}
.nav-link {
  color: #111;
  opacity: 0.92;
}
.nav-link:hover {
  opacity: 1;
}
.chev {
  font-size: 12px;
  margin-left: 4px;
  opacity: 0.9;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hdr-action {
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  color: #111;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
}
.hdr-action:hover {
  background: rgba(0, 0, 0, 0.05);
}
.hdr-action .txt {
  display: inline;
}

.account-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tm);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  box-shadow: 0 8px 16px rgba(226, 0, 116, 0.25);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #111;
  margin: 5px 0;
  border-radius: 2px;
}

/* icons */
.ico {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
}
.ico-pin:before {
  content: "";
  position: absolute;
  inset: 2px 5px 6px 5px;
  border: 2px solid #111;
  border-radius: 12px 12px 14px 14px;
}
.ico-pin:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: 6px;
  top: 6px;
  background: #111;
  border-radius: 50%;
}
.ico-help:before {
  content: "?";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.ico-cart:before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  top: 6px;
  border: 2px solid #111;
  border-radius: 4px;
}
.ico-cart:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  left: 3px;
  top: 2px;
  border: 2px solid #111;
  border-right: none;
  border-bottom: none;
  transform: skewX(-18deg);
}
.ico-search:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #111;
  border-radius: 50%;
  left: 1px;
  top: 1px;
}
.ico-search:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: #111;
  right: 0;
  bottom: 1px;
  transform: rotate(45deg);
  border-radius: 2px;
}
.ico-close:before,
.ico-close:after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: 7px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}
.ico-close:before {
  transform: rotate(45deg);
}
.ico-close:after {
  transform: rotate(-45deg);
}
.ico-left:before {
  content: "";
  position: absolute;
  inset: 6px 5px;
  border-left: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
}
.ico-right:before {
  content: "";
  position: absolute;
  inset: 6px 5px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(-45deg);
}
.ico-fb:before {
  content: "f";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.ico-ig:before {
  content: "⌁";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.ico-x:before {
  content: "X";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.ico-yt:before {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.icon-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
}
.icon-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}
.modal.is-open {
  display: block;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.modal-panel {
  position: absolute;
  left: 50%;
  top: 90px;
  transform: translateX(-50%);
  width: min(640px, calc(100% - 24px));
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.modal-body {
  padding: 14px;
}
.searchbox {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}
.searchbox input {
  border: 0;
  outline: 0;
  width: 100%;
  font-size: 16px;
}
.hint {
  margin: 10px 0 0;
  color: #666;
  font-size: 12px;
}

/* drawer */
.mobile-drawer {
  display: none;
}
.mobile-drawer.is-open {
  display: block;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 80;
}
.drawer-panel {
  position: fixed;
  right: 14px;
  top: 14px;
  width: min(360px, calc(100% - 28px));
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  z-index: 81;
  overflow: hidden;
}
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}
.drawer-title {
  font-weight: 900;
}
.drawer-links {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer-links a {
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
}
.drawer-links a:hover {
  background: rgba(0, 0, 0, 0.05);
}
.drawer-links hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 10px 0;
}
.drawer-account {
  background: var(--tm);
  color: #fff !important;
  text-align: center;
}

/* common */
.card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* hero */
.hero {
  padding: 26px 0 18px;
}
.hero-top {
  text-align: center;
  padding: 6px 0 14px;
}
.hero-top h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.hero-ctas {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-sub {
  margin-top: 10px;
  font-size: 11px;
  color: #444;
}
.hero-sub a {
  color: var(--tm);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;

    margin-top: 10px !important;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.btn-magenta {
  background: var(--tm);
  border-color: var(--tm);
  color: #fff;
  box-shadow: 0 8px 16px rgba(226, 0, 116, 0.25);
}
.btn-ghost {
  background: #fff;
}
.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.05);
}
.btn-white {
  background: #fff;
  border-color: #fff;
  color: var(--tm);
}
.btn-outline {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.18);
}
.btn-outline:hover {
  background: rgba(0, 0, 0, 0.05);
}

.hero-main {
  display: grid;
  grid-template-columns: 2fr 1.05fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 6px;
}
.hero-photo {
  min-height: 320px;
  overflow: hidden;
}
.hero-offer {
  padding: 16px 16px 12px;
}
.offer-kicker {
  color: var(--tm);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 2px;
}
.offer-subkicker {
  color: #777;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.hero-offer h2 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.12;
}
.offer-big {
  font-size: 22px;
  font-weight: 900;
}
.offer-text {
  margin: 0 0 12px;
  color: #666;
  font-size: 12px;
  line-height: 1.35;
}
.offer-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.fine {
  margin: 10px 0 0;
  font-size: 10px;
  color: #777;
  line-height: 1.35;
}

.hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.info-card {
  display: grid;
  grid-template-columns: 1.25fr 1.75fr;
  overflow: hidden;
}
.info-media {
  padding: 12px;
}
.info-body {
  padding: 12px 14px 14px;
}
.info-body h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 900;
}
.info-body p {
  margin: 0 0 10px;
  color: #666;
  font-size: 12px;
  line-height: 1.35;
}
.info-kicker {
  font-size: 10px;
  font-weight: 900;
  color: #777;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.link {
  color: var(--tm);
  font-weight: 900;
  font-size: 12px;
}
.link span {
  display: inline-block;
  transition: transform 0.18s ease;
}
.link:hover span {
  transform: translateX(3px);
}

/* placeholders */
.ph {
  height: 100%;
  border-radius: 14px;
  border: 1px dashed rgba(0, 0, 0, 0.18);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.35)
  );
  display: grid;
  place-items: center;
  text-align: center;
  color: #555;
  padding: 12px;
}
.ph-title {
  font-weight: 900;
  letter-spacing: 0.02em;
}
.ph-sub {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 6px;
}
.ph-hero {
  min-height: 320px;
}
.ph-land {
  min-height: 170px;
}
.ph-phone {
  min-height: 170px;
}
.ph-deal {
  min-height: 160px;
}

/* deals */
.deals {
  padding: 18px 0 24px;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px;
}
.section-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}
.arrows {
  display: flex;
  gap: 10px;
}
.arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.arrow-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.carousel {
  position: relative;
}
.track {
  display: flex;
  gap: 14px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 2px 16px;
  scrollbar-width: none;
}
.track::-webkit-scrollbar {
  display: none;
}

.deal {
  flex: 0 0 260px;
  scroll-snap-align: start;
  overflow: hidden;
}
.deal-top {
  padding: 10px 12px 0;
}
.deal-pill {
  display: inline-block;
  background: #111;
  color: #fff;
  font-weight: 900;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 999px;
}
.deal-body {
  padding: 10px 12px 6px;
}
.deal-body h4 {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}
.deal-body p {
  margin: 0;
  font-size: 11px;
  color: #666;
  line-height: 1.35;
}
.deal-media {
  padding: 8px 12px 12px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding-bottom: 6px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.dot.active {
  background: var(--tm);
}

/* plans */
.plans {
  padding: 20px 0 30px;
}
.plans-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.plans-wrap {
  overflow: visible;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.plan {
  padding: 14px;
  min-height: 290px;
}
.plan-title {
  font-weight: 900;
  font-size: 12px;
  color: #fff;
}
.plan-title.pink {
  color: var(--tm);
}
.plan-price {
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  margin-top: 8px;
}
.plan-price.dark {
  color: #111;
}
.plan-sub {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}
.plan-sub.dark {
  color: #666;
}
.plan-fine {
  margin-top: 10px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}
.plan-fine.dark {
  color: #666;
}

.plan-magenta {
  background: var(--tm);
  border-color: rgba(255, 255, 255, 0.18);
}

/* footer */
.footer {
  margin-top: 22px;
  background: #1f1f1f;
  color: #eee;
}
.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  padding: 22px 0;
}
.footer-follow {
  font-weight: 900;
  margin-bottom: 10px;
}
.social {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.social a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}
.social a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.lang {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lang-btn {
  padding: 8px 12px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}
.lang-btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.fhead {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 0 10px;
  cursor: default;
}
.fbody a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  padding: 7px 0;
}
.fbody a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 0;
}
.footer-bottom-row {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.mini-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--tm);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.bottom-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.bottom-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}
.bottom-links a:hover {
  color: #fff;
}
.copy {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.hero-imggg {
    max-height: 420px;
}

.miniboximg {
    max-height: 320px;
}

.minicards {
    max-height: 200px;
}

/* SVG icons */
.svg-ico{
  width:16px;
  height:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#111;
}
.svg-ico svg{
  width:100%;
  height:100%;
  display:block;
}

.branfav {
  width: 34px;   
  margin-top: 6px;
}


/* responsive like screenshot */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .hdr-action .txt {
    display: none;
  }
  .account-btn {
    display: none;
  }
  .hamburger {
    display: inline-block;
  }

  .container {
    width: calc(100% - 26px);
  }
  .hero-top {
    text-align: left;
  }
  .hero-ctas {
    justify-content: flex-start;
  }
  .hero-top h1 {
    font-size: 22px;
  }

  .hero-main {
    grid-template-columns: 1fr;
  }
  .hero-row {
    grid-template-columns: 1fr;
  }
  .info-card {
    grid-template-columns: 1fr;
  }
  .ph-hero {
    min-height: 240px;
  }

  /* deals cards wider on mobile like screenshot */
  .deal {
    flex-basis: 78%;
  }

  /* plans become horizontal scroll on mobile */
  .plans-grid {
    display: flex;
    gap: 14px;
    overflow: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 2px 8px;
    scrollbar-width: none;
  }
  .plans-grid::-webkit-scrollbar {
    display: none;
  }
  .plan {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .fhead {
    cursor: pointer;
  }
  .fbody {
    display: none;
  }
  .fcol.open .fbody {
    /* display: block; */
  }
}

@media (max-width: 980px){
  .hdr-action .txt{display:none}

  .hdr-action{
    width:38px;
    height:38px;
    padding:0;
    border-radius:999px;
    display:grid;
    place-items:center;
  }

  .svg-ico{ width:18px; height:18px; }
}
