:root {
  --purple: #2b0a5a;
  --purple-deep: #1a0638;
  --purple-soft: #f4edff;
  --orange: #f29b2f;
  --orange-deep: #e07812;
  --ink: #17141f;
  --muted: #6b6478;
  --line: #e7e1f0;
  --paper: #ffffff;
  --wash: #f7f5fa;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(23, 20, 31, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
h1, h2, h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.03em;
  margin: 0;
}
p { margin: 0; }

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--purple);
  color: white;
}

.btn-primary:hover {
  background: var(--purple-deep);
  box-shadow: 0 10px 24px rgba(43, 10, 90, 0.22);
}

.btn-accent {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #2a1400;
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--line);
}

.btn-lg { min-height: 52px; padding: 0 28px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.top-bar {
  background: #111;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  font-size: 0.78rem;
  padding: 8px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.wm-bura { color: var(--purple); }
.wm-qtel { color: var(--orange); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.94rem;
  color: #2c2736;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--purple);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  background: white;
}

.account-btn img {
  width: 22px;
  height: 22px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--purple-soft);
  padding: 11px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--purple);
  border-radius: 999px;
}

/* Hero — YOU Broadband style: slick-like fade slider */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfafc 0%, #ffffff 100%);
  padding: 48px 0 56px;
  min-height: 620px;
}

.dots {
  position: absolute;
  width: 180px;
  height: 220px;
  opacity: 0.35;
  background-image: radial-gradient(#c9bfd8 1.4px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 0;
}

.dots-left { left: 0; top: 40px; }
.dots-right { right: 0; bottom: 20px; }

.banner-shape {
  position: absolute;
  width: min(520px, 48vw);
  height: min(520px, 48vw);
  left: 8%;
  top: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, rgba(123, 43, 208, 0.08), transparent 62%),
    radial-gradient(circle at 70% 60%, rgba(242, 155, 47, 0.1), transparent 55%);
  z-index: 0;
  pointer-events: none;
  animation: banner-shape-animation 10s linear infinite;
}

.banner-slider {
  position: relative;
  z-index: 1;
  min-height: 520px;
}

.banner-slide {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    visibility 0.7s;
}

.banner-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.banner-slide.is-leaving {
  opacity: 0;
  transform: translateX(-28px);
}

.banner-slide.is-active .fade-left {
  animation: fadeInLeft 0.85s ease both;
}

.banner-slide.is-active .fade-right {
  animation: fadeInRight 0.85s ease both;
}

.hero-inner {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 480px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.hero-kicker img {
  width: 18px;
  height: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  line-height: 1.08;
  max-width: 11ch;
  margin-bottom: 16px;
  color: #1b1624;
}

.highlight {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 14px;
  background: var(--purple);
  color: white;
  border-radius: 6px;
}

.hero-lead {
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.hero-features > div {
  text-align: center;
}

.feature-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(43, 10, 90, 0.25);
  background:
    radial-gradient(circle at 50% 50%, transparent 38%, var(--purple) 39% 48%, transparent 49%),
    linear-gradient(135deg, transparent 46%, var(--orange) 46% 54%, transparent 54%);
  background-color: white;
}

.hero-features p {
  font-size: 0.78rem;
  font-weight: 600;
  color: #3a3348;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.phone-card,
.speed-card {
  width: min(320px, 86%);
  padding: 28px 24px;
  border-radius: 28px;
  background: linear-gradient(165deg, #2b0a5a 0%, #4b168c 100%);
  color: white;
  box-shadow: 0 28px 60px rgba(43, 10, 90, 0.28);
}

.phone-card.alt {
  background: linear-gradient(165deg, #1a0638 0%, #3d1278 100%);
}

.speed-card {
  min-height: 320px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 4px;
}

.speed-card img {
  margin: 0 auto 10px;
}

.speed-card p {
  opacity: 0.75;
  font-size: 0.9rem;
}

.speed-card strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 4.2rem;
  line-height: 1;
}

.speed-card > span {
  font-weight: 700;
  opacity: 0.85;
}

.phone-mark {
  margin-bottom: 14px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.phone-label {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 6px;
}

.phone-card strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.2rem;
  display: block;
  margin-bottom: 18px;
}

.usage-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  margin-bottom: 8px;
}

.usage-bar span {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ffc56d);
}

.usage-text {
  font-size: 0.82rem;
  opacity: 0.75;
  margin-bottom: 18px;
}

.phone-actions {
  display: grid;
  gap: 8px;
}

.phone-actions span {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 600;
}

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--purple);
}

.float-chip img {
  width: 18px;
  height: 18px;
}

.chip-a { top: 18%; left: 4%; }
.chip-b { bottom: 18%; right: 2%; }

.bob {
  animation: banner-details-icon-move 5s linear infinite;
}

.bob.delay-1 { animation-delay: 0.4s; }
.bob.delay-2 { animation-delay: 0.8s; }
.bob.delay-3 { animation-delay: 1.2s; }

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--purple);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  background: var(--purple);
  color: white;
  transform: translateY(-50%) scale(1.04);
}

.slider-arrow.prev { left: max(12px, calc((100% - 1160px) / 2 - 8px)); }
.slider-arrow.next { right: max(12px, calc((100% - 1160px) / 2 - 8px)); }

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  position: relative;
  z-index: 5;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  font-size: 0;
  background: #d5cfe2;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 24px;
  background: var(--purple);
}

/* Scroll reveals like WOW.js on YOU Broadband */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.from-left { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.from-left.is-visible,
.reveal.from-right.is-visible {
  transform: translateX(0);
}

.offer-section {
  padding: 56px 0 20px;
  text-align: center;
  background:
    radial-gradient(circle at 8% 20%, rgba(201, 191, 216, 0.35), transparent 24%),
    white;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-eyebrow img {
  width: 22px;
  height: 22px;
}

.section-eyebrow.light {
  color: rgba(255, 255, 255, 0.9);
}

.offer-section h2,
.plans-section h2,
.why-section h2,
.faq-section h2,
.apply-section h2,
.contact-section h2,
.enterprise-section h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.15;
}

.plans-section {
  padding: 28px 0 72px;
  text-align: center;
  background: white;
}

.city-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 700;
}

.city-row select {
  min-height: 42px;
  padding: 0 36px 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--purple) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='white' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 14px center;
  color: white;
  font-weight: 700;
  appearance: none;
  cursor: pointer;
}

.plans-section h2 {
  max-width: 18ch;
  margin: 0 auto 28px;
}

.text-accent { color: var(--purple); }

.speed-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.speed-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1.5px solid #ddd7e8;
  background: white;
  font-weight: 700;
  color: #3a3348;
  cursor: pointer;
}

.speed-tabs button.is-active {
  border-color: var(--purple);
  color: var(--purple);
  box-shadow: inset 0 0 0 1px var(--purple);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
  margin-bottom: 18px;
}

.plan-card {
  position: relative;
  padding: 28px 20px 22px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.plan-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 12px;
  background: var(--purple);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  border-bottom-right-radius: 10px;
}

.plan-card h3 {
  margin-top: 18px;
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.plan-card .meta {
  color: #3a3348;
  font-weight: 700;
  margin-bottom: 4px;
}

.plan-card .price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
}

.plan-card .fup {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.plans-note {
  max-width: 820px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.plans-cta { margin-top: 8px; }

.why-section {
  padding: 72px 0;
  background: var(--wash);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.why-grid > div > p:last-child {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.why-list li {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
}

.why-list img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--purple);
}

.why-list span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.enterprise-section {
  padding: 24px 0 72px;
  background: var(--wash);
}

.enterprise-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 42px;
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(242, 155, 47, 0.28), transparent 28%),
    linear-gradient(135deg, #2b0a5a, #4b168c);
}

.enterprise-panel p {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 36rem;
}

.enterprise-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  align-content: center;
}

.enterprise-panel li {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.faq-section {
  padding: 72px 0;
  background: white;
}

.faq-intro {
  color: var(--muted);
  margin: 12px 0 28px;
  max-width: 40rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--wash);
  padding: 4px 18px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 700;
  color: var(--ink);
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--purple);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after { content: "–"; }

.faq-list p {
  padding: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
}

.apply-section {
  padding: 72px 0;
  background: var(--purple-soft);
}

.apply-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.apply-grid > div > p:last-of-type {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.apply-form {
  padding: 26px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.apply-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--purple);
}

.apply-form input,
.apply-form select {
  min-height: 46px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fbfafc;
  outline: none;
}

.apply-form input:focus,
.apply-form select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(43, 10, 90, 0.1);
}

.form-note {
  min-height: 22px;
  margin-top: 10px;
  color: #1f7a45;
  font-weight: 700;
  font-size: 0.9rem;
}

.contact-section {
  padding: 72px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.contact-grid > div > p:last-child {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact-cards > div {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--wash);
}

.contact-cards span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-cards a,
.contact-cards strong {
  font-weight: 800;
  color: var(--purple);
}

.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.72);
  padding: 36px 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .wm-bura { color: #f1e9ff; }
.site-footer .wm-qtel { color: var(--orange); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: flex-end;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 16px auto 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes banner-shape-animation {
  0% { transform: translateX(0); }
  50% { transform: translateX(100px); }
  100% { transform: translateX(0); }
}

@keyframes banner-details-icon-move {
  0% { transform: translateY(0); }
  25% { transform: translateY(-5px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(5px); }
  100% { transform: translateY(0); }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .site-nav,
  .header-actions {
    display: none;
  }

  .site-nav.is-open,
  .header-actions.is-open {
    display: flex;
  }

  .site-nav.is-open,
  .header-actions.is-open {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions.is-open {
    top: calc(100% + 210px);
  }

  .nav-toggle { display: inline-flex; }

  .hero-inner,
  .why-grid,
  .enterprise-panel,
  .apply-grid,
  .contact-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-bottom: 72px;
  }

  .banner-slider {
    min-height: 0;
  }

  .hero-inner {
    min-height: 0;
  }

  .slider-arrow {
    top: auto;
    bottom: 8px;
    transform: none;
  }

  .slider-arrow:hover {
    transform: scale(1.04);
  }

  .slider-arrow.prev { left: 18px; }
  .slider-arrow.next { right: 18px; }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .header-inner,
  .hero-inner,
  .footer-bottom {
    width: calc(100% - 28px);
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .header-actions .btn {
    width: 100%;
  }

  .enterprise-panel {
    padding: 28px;
  }

  .brand-text {
    font-size: 1rem;
  }
}
