@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

:root {
  --font: "Roboto", Arial, sans-serif;

  --ink: #070a1c;
  --text: #15172a;
  --muted: rgba(21, 23, 42, .68);
  --soft: #f8f2ff;
  --white: #ffffff;
  --line: rgba(15, 18, 45, .12);

  --purple: #4906AB;
  --violet: #6C16D7;
  --magenta: #DA18AA;
  --pink: #F02C76;
  --coral: #F5544D;
  --gradient: linear-gradient(135deg, #4906AB 0%, #DA18AA 55%, #F5544D 100%);
  --shadow: 0 24px 70px rgba(73, 6, 171, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 24px clamp(28px, 4vw, 58px);
  background: rgba(255, 249, 255, .54);
  backdrop-filter: blur(14px);
}

.brand img {
  width: clamp(210px, 16vw, 285px);
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  color: #11142a;
  font-weight: 700;
  font-size: 17px;
}

.main-nav a {
  opacity: .92;
}

.phone-button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  background: #070a1c;
  color: white;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(7, 10, 28, .20);
  white-space: nowrap;
}

.phone-button span {
  color: #f3b1ff;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(470px, .82fr) minmax(720px, 1.18fr);
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(28px, 4vw, 58px) 42px;
  background:
    radial-gradient(circle at 68% 45%, rgba(218, 24, 170, .16), transparent 35%),
    radial-gradient(circle at 25% 10%, rgba(73, 6, 171, .14), transparent 30%),
    linear-gradient(135deg, #fffafd 0%, #f7ecff 52%, #fff7fb 100%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 620px;
  padding-top: 18px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
  color: var(--pink);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .26em;
}

.eyebrow i {
  display: block;
  width: 96px;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), transparent);
}

.hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(64px, 6.2vw, 118px);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 900;
}

.hero-copy h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 535px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
  font-weight: 500;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.primary-cta,
.secondary-cta {
  min-height: 66px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 900;
}

.primary-cta {
  min-width: 196px;
  color: white;
  background: var(--gradient);
  box-shadow: 0 18px 48px rgba(218, 24, 170, .32);
}

.primary-cta span {
  font-size: 28px;
  line-height: 1;
}

.secondary-cta {
  min-width: 218px;
  color: #16182d;
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(22, 24, 45, .14);
  backdrop-filter: blur(14px);
}

.secondary-cta span {
  font-size: 26px;
}

.quick-services {
  margin-top: 62px;
  min-height: 90px;
  max-width: 990px;
  width: max(760px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
  border: 1px solid rgba(20, 22, 40, .14);
  border-radius: 26px;
  background: rgba(255, 255, 255, .44);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(73, 6, 171, .08);
  overflow: hidden;
}

.quick-services div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 22px;
  min-height: 90px;
  border-right: 1px solid rgba(20, 22, 40, .14);
}

.quick-services div:last-child {
  border-right: 0;
}

.quick-services .icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  font-size: 22px;
  font-weight: 900;
  background: var(--gradient);
  box-shadow: 0 14px 28px rgba(73, 6, 171, .24);
}

.quick-services strong {
  display: block;
  color: #11142a;
  font-size: 16px;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.hero-visual {
  position: absolute;
  inset: 64px -26px 0 36%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-visual img {
  width: min(78vw, 1380px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 36px 60px rgba(73, 6, 171, .16));
}

.section {
  padding: clamp(72px, 8vw, 128px) clamp(24px, 5vw, 86px);
}

.section-title {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-title span,
.contact-section span {
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .20em;
}

.section-title h2,
.contact-section h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 66px);
  line-height: .98;
  letter-spacing: -.06em;
}

.comparison-card {
  position: relative;
  height: min(78vh, 720px);
  min-height: 540px;
  overflow: hidden;
  border-radius: 34px;
  background: #0b1024;
  box-shadow: var(--shadow);
}

.comparison-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.after-wrap .after {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.slider-handle {
  position: absolute;
  z-index: 8;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: var(--gradient);
  box-shadow: 0 0 26px rgba(240, 44, 118, .55);
}

.slider-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}

.slider-handle span::before {
  content: "↔";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #141629;
  font-size: 24px;
  font-weight: 900;
}

.comparison-card input {
  position: absolute;
  z-index: 12;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.label {
  position: absolute;
  z-index: 9;
  top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 10, 28, .78);
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  backdrop-filter: blur(10px);
}

.label-before {
  left: 18px;
}

.label-after {
  right: 18px;
}

.services-section {
  background: #070a1c;
  color: white;
}

.services-section .section-title h2 {
  color: white;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}

.service-grid article {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

.service-grid b {
  color: var(--coral);
  font-size: 14px;
}

.service-grid h3 {
  margin: 72px 0 16px;
  color: white;
  font-size: 30px;
  line-height: .98;
  letter-spacing: -.05em;
}

.service-grid p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.52;
}

.contact-section {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 82% 50%, rgba(218, 24, 170, .14), transparent 28%),
    #fff;
}

.phone-button.large {
  min-height: 64px;
  padding: 0 30px;
}

@media (max-width: 1180px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 116px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    justify-content: center;
    margin: 24px -24px 0;
  }

  .hero-visual img {
    width: min(105vw, 1120px);
  }

  .quick-services {
    width: 100%;
  }

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

@media (max-width: 820px) {
  .site-header {
    height: auto;
    grid-template-columns: 1fr auto;
    padding: 16px 18px;
  }

  .brand img {
    width: 184px;
  }

  .main-nav {
    display: none;
  }

  .phone-button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-section {
    padding: 96px 18px 42px;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 15vw, 76px);
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    min-height: 58px;
    border-radius: 18px;
  }

  .quick-services {
    margin-top: 36px;
    grid-template-columns: 1fr 1fr;
    border-radius: 22px;
  }

  .quick-services div {
    border-bottom: 1px solid rgba(20, 22, 40, .14);
  }

  .quick-services div:nth-child(even) {
    border-right: 0;
  }

  .hero-visual {
    margin-top: 24px;
  }

  .hero-visual img {
    width: 132vw;
    max-width: none;
    transform: translateX(2%);
  }

  .comparison-card {
    min-height: 520px;
    height: 600px;
    border-radius: 24px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: 230px;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Phone before/after slider */
.phone-case-section {
  background:
    radial-gradient(circle at 26% 18%, rgba(218, 24, 170, .12), transparent 28%),
    radial-gradient(circle at 80% 64%, rgba(73, 6, 171, .10), transparent 32%),
    #ffffff;
}

.phone-case-layout {
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(340px, .7fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.phone-stage {
  min-height: 760px;
  display: grid;
  place-items: center;
  position: relative;
}

.phone-stage::before {
  content: "";
  position: absolute;
  width: min(62vw, 720px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240,44,118,.18), rgba(73,6,171,.08) 42%, transparent 70%);
  filter: blur(6px);
}

.phone-mockup {
  position: relative;
  z-index: 1;
  width: min(390px, 84vw);
  aspect-ratio: 390 / 830;
  padding: 16px;
  border-radius: 54px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.40), rgba(255,255,255,0) 28%),
    #070a1c;
  box-shadow:
    0 42px 90px rgba(7,10,28,.30),
    inset 0 0 0 1px rgba(255,255,255,.14);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 48px;
  border: 1px solid rgba(255,255,255,.14);
  pointer-events: none;
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 24px;
  left: 50%;
  width: 92px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #070a1c;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12);
}

.phone-comparison {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 42px;
  clip-path: none;
  background:
    linear-gradient(135deg, rgba(73,6,171,.12), rgba(240,44,118,.10)),
    #f6f0fb;
  box-shadow: none;
}

.phone-comparison .comparison-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 38px 10px 28px;
}

.phone-comparison .after-wrap .after {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 38px 10px 28px;
}

.phone-comparison .after-wrap {
  background:
    linear-gradient(135deg, rgba(255,255,255,.34), rgba(255,255,255,.08)),
    #f6f0fb;
}

.phone-comparison .slider-handle {
  width: 3px;
}

.phone-comparison .slider-handle span {
  width: 46px;
  height: 46px;
  border-radius: 15px;
}

.phone-comparison .label {
  top: auto;
  bottom: 18px;
  font-size: 10px;
  padding: 8px 10px;
}

.phone-comparison .label-before {
  left: 18px;
}

.phone-comparison .label-after {
  right: 18px;
}

.case-copy {
  padding: clamp(26px, 4vw, 44px);
  border-radius: 34px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(15,18,45,.12);
  box-shadow: 0 24px 70px rgba(73,6,171,.09);
  backdrop-filter: blur(14px);
}

.case-copy span {
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .20em;
}

.case-copy h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: .98;
  letter-spacing: -.06em;
}

.case-copy p {
  margin: 20px 0 28px;
  max-width: 520px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 500;
}

.primary-cta.compact {
  min-height: 56px;
  min-width: auto;
  padding: 0 24px;
  font-size: 16px;
  border-radius: 18px;
}

@media (max-width: 980px) {
  .phone-case-layout {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: auto;
  }

  .case-copy {
    order: -1;
  }
}

@media (max-width: 560px) {
  .phone-mockup {
    width: min(330px, 92vw);
    border-radius: 44px;
    padding: 12px;
  }

  .phone-mockup::before {
    border-radius: 40px;
  }

  .phone-comparison {
    border-radius: 34px;
  }

  .phone-comparison .comparison-img,
  .phone-comparison .after-wrap .after {
    padding: 34px 8px 24px;
  }

  .phone-speaker {
    top: 18px;
    width: 78px;
    height: 22px;
  }
}


/* Editorial Services — cardless service formula */
.services-editorial {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(240,44,118,.20), transparent 28%),
    radial-gradient(circle at 82% 42%, rgba(73,6,171,.24), transparent 32%),
    #070a1c;
  color: white;
}

.services-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}

.services-editorial-head {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin-bottom: clamp(36px, 5vw, 70px);
}

.services-editorial-head span {
  color: #ff4e93;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .22em;
}

.services-editorial-head h2 {
  margin: 16px 0 0;
  color: white;
  font-size: clamp(40px, 4.8vw, 78px);
  line-height: .94;
  letter-spacing: -.07em;
}

.services-editorial-head p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}

.service-board {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.16);
}

.service-line {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(320px, 1fr) minmax(290px, .62fr);
  gap: 28px;
  align-items: center;
  min-height: 154px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  isolation: isolate;
}

.service-line::before {
  content: "";
  position: absolute;
  inset: 10px -22px;
  z-index: -1;
  opacity: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.11), rgba(255,255,255,.03)),
    linear-gradient(135deg, rgba(73,6,171,.72), rgba(218,24,170,.50), rgba(245,84,77,.36));
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  transform: scaleX(.985);
  transition: opacity .22s ease, transform .22s ease;
}

.service-line:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.service-no {
  color: #ff6aa8;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .16em;
}

.service-main h3 {
  margin: 0;
  color: white;
  font-size: clamp(32px, 3.4vw, 58px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 900;
}

.service-main p {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.service-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.05);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.service-line:hover .service-tags span {
  border-color: rgba(255,255,255,.32);
  color: white;
  background: rgba(255,255,255,.10);
}

@media (max-width: 980px) {
  .service-line {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .service-tags {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .services-editorial-head h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .services-editorial-head p {
    font-size: 17px;
  }

  .service-line {
    min-height: auto;
    padding: 26px 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-tags {
    grid-column: auto;
  }

  .service-main h3 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .service-main p {
    font-size: 16px;
  }

  .service-line::before {
    inset: 8px -10px;
  }
}


/* Services content v2 — no badges, no card grid */
.services-content-v2 .services-editorial-head {
  max-width: 980px;
}

.services-content-v2 .service-board-v2 {
  border-top: 1px solid rgba(255,255,255,.18);
}

.services-content-v2 .service-line-v2 {
  grid-template-columns: 74px minmax(280px, .72fr) minmax(360px, 1fr);
  min-height: 146px;
  padding: 34px 0;
}

.services-content-v2 .service-line-v2::before {
  inset: 12px -18px;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,.025)),
    linear-gradient(135deg, rgba(73,6,171,.58), rgba(218,24,170,.34), rgba(245,84,77,.22));
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
}

.services-content-v2 .service-line-v2:hover::before {
  opacity: 1;
}

.services-content-v2 .service-no {
  align-self: start;
  padding-top: 8px;
  color: #ff5c9d;
}

.services-content-v2 .service-main h3 {
  max-width: 520px;
  font-size: clamp(30px, 3.1vw, 52px);
  line-height: .94;
}

.services-content-v2 .service-detail {
  align-self: center;
  padding-left: clamp(18px, 3vw, 42px);
  border-left: 1px solid rgba(255,255,255,.16);
}

.services-content-v2 .service-detail p {
  max-width: 640px;
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.services-content-v2 .service-detail small {
  display: block;
  margin-top: 16px;
  color: rgba(255,255,255,.46);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .services-content-v2 .service-line-v2 {
    grid-template-columns: 54px 1fr;
    gap: 18px;
  }

  .services-content-v2 .service-detail {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .services-content-v2 .service-line-v2 {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0;
  }

  .services-content-v2 .service-no {
    padding-top: 0;
  }

  .services-content-v2 .service-detail {
    grid-column: auto;
  }

  .services-content-v2 .service-detail p {
    font-size: 16px;
  }

  .services-content-v2 .service-detail small {
    letter-spacing: .11em;
  }
}
