:root {
  --ink: #17131b;
  --paper: #f8f6f3;
  --plum: #4b183f;
  --purple: #6f1d61;
  --coral: #ff5964;
  --pink: #ff9aa0;
  --line: rgba(255, 255, 255, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  height: 92px;
  margin: auto;
  border-bottom: 1px solid var(--line);
  color: white;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: auto; max-width: 145px; height: 42px; object-fit: contain; }
.brand-mark { display: flex; align-items: flex-end; gap: 3px; width: 33px; height: 33px; transform: skewX(-15deg); }
.brand-mark i { display: block; width: 8px; border-radius: 1px; background: var(--coral); }
.brand-mark i:nth-child(1) { height: 15px; }
.brand-mark i:nth-child(2) { height: 24px; }
.brand-mark i:nth-child(3) { height: 33px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1.18rem; letter-spacing: .11em; }
.brand-copy small { margin-top: 7px; color: rgba(255,255,255,.68); font-size: .72rem; letter-spacing: 0; }

nav { display: flex; gap: 34px; color: rgba(255,255,255,.76); font-size: .88rem; }
nav a { transition: color .2s ease; }
nav a:hover, nav a:focus-visible { color: white; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  font-size: .82rem;
  transition: background .2s ease, color .2s ease;
}
.header-cta:hover, .header-cta:focus-visible { background: white; color: var(--plum); }

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  min-height: 785px;
  overflow: hidden;
  padding: 150px max(28px, calc((100vw - 1180px) / 2)) 90px;
  color: white;
  background:
    linear-gradient(90deg, rgba(25,5,22,.46) 0%, rgba(37,7,32,.60) 43%, rgba(60,10,49,.92) 100%),
    var(--hero-image, url("fiber-amman-hero.png")) center / cover no-repeat,
    #3f1036;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-glow { position: absolute; z-index: -1; border-radius: 999px; filter: blur(12px); opacity: .72; }
.hero-glow-one { top: 12%; left: -9%; width: 360px; height: 360px; background: rgba(255,89,100,.20); }
.hero-glow-two { right: 42%; bottom: -34%; width: 530px; height: 530px; background: rgba(120,49,130,.26); }

.fiber-lines { position: absolute; z-index: -1; inset: auto -10% 4% auto; width: 68%; height: 70%; transform: rotate(-5deg); opacity: .8; }
.fiber-lines span { position: absolute; right: 0; width: 100%; height: 2px; border-radius: 100%; background: linear-gradient(90deg, transparent, rgba(255,134,144,.22) 20%, #ff5964 75%, white); box-shadow: 0 0 18px #ff5964; transform-origin: right; }
.fiber-lines span:nth-child(1) { top: 20%; transform: rotate(9deg) scaleX(.92); }
.fiber-lines span:nth-child(2) { top: 38%; transform: rotate(-4deg) scaleX(.82); }
.fiber-lines span:nth-child(3) { top: 55%; transform: rotate(4deg) scaleX(1.03); }
.fiber-lines span:nth-child(4) { top: 73%; transform: rotate(-10deg) scaleX(.73); }

.hero-content { position: relative; z-index: 2; max-width: 650px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 26px; color: #ffc8cb; font-size: .88rem; font-weight: 700; }
.eyebrow span { width: 25px; height: 2px; background: var(--coral); }
.hero h1 { margin: 0; font-size: clamp(3.5rem, 7vw, 6.8rem); line-height: .95; letter-spacing: -.065em; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.82); }
.hero-lead { max-width: 580px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: 1.1rem; line-height: 1.9; }
.hero-lead b { color: white; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 28px; padding: 0 25px; border-radius: 8px; font-weight: 700; font-size: .9rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--coral); box-shadow: 0 13px 35px rgba(255,89,100,.25); }
.button-primary:hover { box-shadow: 0 16px 40px rgba(255,89,100,.38); }
.button-secondary { border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.04); }
.button-secondary:hover { background: rgba(255,255,255,.1); }
.quick-points { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; color: rgba(255,255,255,.58); font-size: .76rem; }
.quick-points span::before { content: "✓"; margin-left: 7px; color: #ff8b92; font-weight: 900; }

.speed-card {
  position: relative;
  justify-self: end;
  width: min(390px, 100%);
  min-height: 420px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  box-shadow: 0 38px 90px rgba(18,5,16,.35);
  backdrop-filter: blur(14px);
}
.speed-card::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.06); border-radius: 20px; pointer-events: none; }
.speed-card-top { display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.62); font-size: .82rem; }
.speed-card-top i { padding: 7px 10px; border-radius: 99px; background: rgba(255,89,100,.18); color: #ffb1b6; font-size: .65rem; font-style: normal; letter-spacing: .14em; }
.speed-value { display: flex; direction: ltr; align-items: flex-end; justify-content: center; gap: 8px; margin: 55px 0 38px; }
.speed-value b { font-size: clamp(5rem, 9vw, 7.8rem); line-height: .74; letter-spacing: -.09em; }
.speed-value small { color: #ffb5ba; font-size: .86rem; }
.speed-meter { position: relative; height: 5px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.12); }
.speed-meter span { display: block; width: 92%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #8b3277, #ff5964, #ffd0d3); box-shadow: 0 0 18px var(--coral); }
.speed-card-foot { display: grid; gap: 8px; margin-top: 34px; text-align: center; }
.speed-card-foot span { color: rgba(255,255,255,.56); font-size: .76rem; }
.speed-card-foot strong { font-size: 1rem; }

.scroll-hint { position: absolute; right: max(28px, calc((100vw - 1180px) / 2)); bottom: 30px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.43); font-size: .68rem; }
.scroll-hint span { display: block; width: 34px; height: 1px; background: rgba(255,255,255,.32); }

.intro-strip { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 35px; width: min(1180px, calc(100% - 40px)); min-height: 120px; margin: auto; border-bottom: 1px solid #ded9d5; }
.intro-strip p { color: #837a82; font-size: .82rem; }
.intro-strip strong { font-size: 1.18rem; }
.intro-strip a { color: var(--purple); font-size: .86rem; font-weight: 800; }
.intro-strip a span { margin-right: 12px; }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 115px 0; }
.section-heading { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 60px; margin-bottom: 52px; }
.section-heading h2, .benefits-content h2, .coverage-copy h2, .contact-card h2 { margin: 0; font-size: clamp(2.35rem, 5vw, 4.6rem); line-height: 1.1; letter-spacing: -.055em; }
.section-heading > p { margin: 0; color: #736b71; line-height: 1.9; }
.section-kicker { margin: 0 0 15px; color: var(--coral); font-size: .78rem; font-weight: 800; }
.section-kicker::before { content: ""; display: inline-block; width: 25px; height: 2px; margin-left: 9px; vertical-align: middle; background: currentColor; }
.section-kicker.light { color: #ff9ba1; }

.offers-grid { display: grid; grid-template-columns: repeat(min(var(--offers-count, 4), 4), 1fr); gap: 13px; }
.offer-card { position: relative; overflow: hidden; padding: 28px; border: 1px solid #ded8d3; border-radius: 20px; background: #fff; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.offer-card:hover { transform: translateY(-5px); border-color: #bfa7b9; box-shadow: 0 22px 55px rgba(51, 22, 44, .08); }
.offer-card.featured { border-color: var(--purple); color: white; background: linear-gradient(150deg, #3b1233, #692058); box-shadow: 0 25px 60px rgba(69,20,59,.18); }
.featured-ribbon { position: absolute; top: 20px; left: -32px; width: 130px; padding: 6px; transform: rotate(-45deg); background: var(--coral); text-align: center; font-size: .63rem; font-weight: 800; }
.offer-label { margin: 0 0 35px; color: #817980; font-size: .76rem; }
.featured .offer-label { color: rgba(255,255,255,.58); }
.offer-speed { display: flex; direction: ltr; align-items: center; gap: 10px; }
.offer-speed b { font-size: 3.7rem; line-height: 1; letter-spacing: -.06em; }
.offer-speed span { color: #8e858c; font-size: .67rem; line-height: 1.35; }
.featured .offer-speed span { color: rgba(255,255,255,.58); }
.offer-upload { display: flex; justify-content: space-between; margin-top: 28px; padding: 14px 0; border-top: 1px solid #ebe7e4; border-bottom: 1px solid #ebe7e4; color: #8a8288; font-size: .73rem; }
.offer-upload strong { color: var(--ink); }
.featured .offer-upload { border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.55); }
.featured .offer-upload strong { color: white; }
.offer-price { display: flex; direction: ltr; align-items: center; gap: 9px; margin: 25px 0; }
.offer-price b { color: var(--purple); font-size: 2rem; }
.offer-price span { color: #8e858c; font-size: .66rem; line-height: 1.35; }
.featured .offer-price b { color: #ff9ea4; }
.featured .offer-price span { color: rgba(255,255,255,.6); }
.offer-card > a { display: flex; align-items: center; justify-content: space-between; padding: 13px 0 0; color: var(--purple); font-size: .79rem; font-weight: 800; }
.featured > a { color: white; }
.offer-note { display: grid; grid-template-columns: auto 1fr auto; gap: 14px 24px; margin-top: 24px; padding: 20px 22px; border-radius: 12px; background: #ede8e4; color: #6d666b; font-size: .7rem; line-height: 1.7; }
.offer-note strong { color: var(--ink); }
.offer-note a { color: var(--purple); font-weight: 800; }

.benefits-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; color: white; background: #26101f; }
.benefits-photo { position: relative; min-height: 650px; background: linear-gradient(90deg, rgba(38,16,31,.06), rgba(38,16,31,.8)), var(--benefits-image, url("fiber-amman-hero.png")) 27% center / cover no-repeat; }
.photo-badge { position: absolute; left: 7%; bottom: 7%; display: grid; min-width: 150px; padding: 18px; border: 1px solid rgba(255,255,255,.32); border-radius: 14px; background: rgba(31,7,25,.55); color: rgba(255,255,255,.7); font-size: .72rem; backdrop-filter: blur(10px); }
.photo-badge b { color: white; font-size: 2.6rem; line-height: 1; }
.benefits-content { display: flex; flex-direction: column; justify-content: center; max-width: 620px; padding: 80px 8vw 80px 60px; }
.benefits-lead { max-width: 540px; margin: 28px 0 40px; color: rgba(255,255,255,.61); line-height: 1.9; }
.benefits-list { display: grid; gap: 0; }
.benefits-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 14px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.13); }
.benefits-list > div > span { color: #ff8c93; font-size: .7rem; }
.benefits-list p { display: grid; gap: 8px; margin: 0; }
.benefits-list b { font-size: .96rem; }
.benefits-list small { color: rgba(255,255,255,.5); font-size: .76rem; line-height: 1.7; }

.section-heading.compact { grid-template-columns: 1fr; }
.steps-section { padding-bottom: 125px; }
.steps-grid { display: grid; grid-template-columns: repeat(min(var(--steps-count, 3), 4), 1fr); gap: 1px; overflow: hidden; border: 1px solid #ded9d5; border-radius: 20px; background: #ded9d5; }
.steps-grid article { min-height: 260px; padding: 34px; background: var(--paper); }
.steps-grid span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--coral); background: #fee5e6; font-size: .82rem; font-weight: 900; }
.steps-grid h3 { margin: 55px 0 12px; font-size: 1.25rem; }
.steps-grid p { margin: 0; color: #756d73; font-size: .84rem; line-height: 1.8; }

.coverage-section { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; padding: 110px max(28px, calc((100vw - 1180px) / 2)); color: white; background: linear-gradient(125deg, #4b143f, #7a255f); }
.coverage-copy > p:not(.section-kicker) { max-width: 500px; margin: 25px 0 38px; color: rgba(255,255,255,.63); line-height: 1.9; }
.manager-chip { display: flex; align-items: center; gap: 14px; }
.manager-chip > span { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(255,255,255,.08); font-size: .76rem; }
.manager-chip p { display: grid; gap: 5px; margin: 0; }
.manager-chip small { color: rgba(255,255,255,.5); }
.coverage-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; padding: 31px; border: 1px solid rgba(255,255,255,.15); border-radius: 22px; background: rgba(17,4,14,.18); box-shadow: 0 30px 80px rgba(25,4,20,.2); }
.coverage-form label { display: grid; gap: 9px; color: rgba(255,255,255,.62); font-size: .71rem; }
.coverage-form input, .coverage-form select { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; outline: none; color: white; background: rgba(255,255,255,.08); font: inherit; }
.coverage-form input::placeholder { color: rgba(255,255,255,.37); }
.coverage-form input:focus, .coverage-form select:focus { border-color: #ffadb1; box-shadow: 0 0 0 3px rgba(255,173,177,.13); }
.coverage-form select option { color: var(--ink); }
.coverage-form button { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; min-height: 55px; padding: 0 20px; border: 0; border-radius: 8px; color: white; background: var(--coral); font: inherit; font-weight: 800; cursor: pointer; }
.coverage-form > small { grid-column: 1 / -1; color: rgba(255,255,255,.45); font-size: .66rem; text-align: center; }

.faq-section { display: grid; grid-template-columns: .7fr 1fr; gap: 70px; }
.faq-list { border-top: 1px solid #dcd6d2; }
.faq-list article { border-bottom: 1px solid #dcd6d2; }
.faq-list button { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 78px; padding: 0; border: 0; color: var(--ink); background: transparent; font: inherit; font-weight: 800; text-align: right; cursor: pointer; }
.faq-list button i { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid #d0c7cd; border-radius: 50%; color: var(--purple); font-style: normal; transition: transform .2s ease; }
.faq-list article.open button i { transform: rotate(45deg); }
.faq-list article > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-list article > div p { min-height: 0; overflow: hidden; margin: 0; color: #716970; font-size: .85rem; line-height: 1.9; }
.faq-list article.open > div { grid-template-rows: 1fr; }
.faq-list article.open > div p { padding-bottom: 24px; }

.contact-section { position: relative; overflow: hidden; min-height: 570px; padding: 105px max(28px, calc((100vw - 1180px) / 2)); color: white; background: #1b1018; }
.contact-card { position: relative; z-index: 2; max-width: 700px; }
.contact-details { display: grid; grid-template-columns: .85fr 1.15fr; gap: 14px; margin: 45px 0 25px; }
.contact-details a { display: grid; gap: 12px; min-height: 105px; padding: 22px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(255,255,255,.035); }
.contact-details .address-link { grid-column: 1 / -1; min-height: 90px; }
.contact-details span { color: rgba(255,255,255,.47); font-size: .67rem; }
.contact-details b { font-size: .87rem; line-height: 1.7; }
.contact-button { width: fit-content; }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-links a { display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: rgba(255,255,255,.045); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.social-links a:hover, .social-links a:focus-visible { transform: translateY(-2px); border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.1); }
.social-links img { width: 19px; height: 19px; filter: brightness(0) invert(1); opacity: .86; }
.contact-word { position: absolute; left: -25px; bottom: -65px; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.08); font-size: clamp(9rem, 24vw, 25rem); font-weight: 900; line-height: .8; letter-spacing: -.08em; }

footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 55px; padding: 40px max(28px, calc((100vw - 1180px) / 2)); color: rgba(255,255,255,.45); background: #100a0e; font-size: .67rem; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: white; }
.footer-brand p { display: grid; gap: 5px; margin: 0; }
.footer-brand small { color: rgba(255,255,255,.45); }
.footer-note { margin: 0; text-align: center; line-height: 1.8; }
.footer-meta { display: grid; gap: 8px; text-align: left; }
.footer-meta p { margin: 0; }
.footer-meta a { color: rgba(255,255,255,.72); }
.mobile-actions { display: none; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 55px; padding-top: 135px; }
  .speed-card { justify-self: start; }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .benefits-section { grid-template-columns: 1fr; }
  .benefits-photo { min-height: 500px; }
  .benefits-content { max-width: none; padding: 80px 40px; }
  .coverage-section { gap: 45px; }
  .coverage-form { grid-template-columns: 1fr; }
  .coverage-form button, .coverage-form > small { grid-column: auto; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .faq-section { grid-template-columns: 1fr; gap: 20px; }
  footer { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .footer-brand { justify-content: center; }
}

@media (max-width: 620px) {
  .site-header { width: calc(100% - 28px); height: 78px; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy small { font-size: .61rem; }
  .header-cta { padding: 10px 13px; font-size: .72rem; }
  .header-cta span { display: none; }
  .hero { min-height: auto; padding: 120px 20px 70px; }
  .hero { background-position: 35% center; }
  .hero h1 { font-size: 3.65rem; }
  .hero-lead { font-size: .97rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .quick-points { gap: 11px 18px; }
  .speed-card { min-height: 350px; padding: 25px; }
  .speed-value { margin: 50px 0 32px; }
  .speed-value b { font-size: 5.2rem; }
  .scroll-hint { display: none; }
  .intro-strip { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
  .section { width: calc(100% - 32px); padding: 78px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 35px; }
  .section-heading h2, .benefits-content h2, .coverage-copy h2, .contact-card h2 { font-size: 2.7rem; }
  .offers-grid { grid-template-columns: 1fr; }
  .offer-card { padding: 24px; }
  .offer-note { grid-template-columns: 1fr; }
  .benefits-photo { min-height: 380px; }
  .benefits-content { padding: 65px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: 210px; }
  .steps-grid h3 { margin-top: 35px; }
  .coverage-section { grid-template-columns: 1fr; padding: 75px 20px; }
  .coverage-form { padding: 20px; }
  .contact-section { padding: 75px 20px 120px; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-button { width: 100%; }
  .contact-actions { align-items: stretch; }
  .social-links { justify-content: center; width: 100%; }
  footer { padding-bottom: 95px; }
  .mobile-actions { position: fixed; z-index: 50; right: 12px; bottom: 12px; left: 12px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 8px; padding: 7px; border: 1px solid rgba(255,255,255,.35); border-radius: 14px; background: rgba(28,10,23,.88); box-shadow: 0 16px 50px rgba(15,4,12,.35); backdrop-filter: blur(15px); }
  .mobile-actions a { display: grid; place-items: center; min-height: 48px; border-radius: 9px; color: white; font-size: .8rem; font-weight: 800; }
  .mobile-actions a:first-child { border: 1px solid rgba(255,255,255,.16); }
  .mobile-actions a:last-child { background: var(--coral); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
