@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/InterVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/InterVariable-Italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --cyan: #0aa4bd;
  --cyan-dark: #078fa8;
  --cyan-soft: #e6f9fc;
  --dark: #202938;
  --muted: #8e929a;
  --line: #e9edf2;
  --bg: #f7f8fa;
  --card: #ffffff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--dark);
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 6vw, 82px);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  z-index: 20;
  border-bottom: 1px solid rgba(233, 237, 242, 0.8);
}
.brand img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 800;
}
.nav-links a:hover {
  color: var(--cyan);
}
.btn,
.btn-small {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border-radius: 16px;
  padding: 14px 21px;
  font-weight: 900;
  box-shadow: 0 15px 34px rgba(10, 164, 189, 0.25);
}
.btn-small {
  font-size: 14px;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  padding: 64px clamp(20px, 6vw, 82px) 56px;
  overflow: hidden;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 77% 42%,
      rgba(10, 164, 189, 0.16),
      transparent 35%
    ),
    radial-gradient(circle at 12% 7%, rgba(10, 164, 189, 0.09), transparent 27%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
h1 {
  font-size: clamp(43px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 0 0 26px;
}
h1 span {
  color: var(--cyan);
}
.hero p {
  font-size: 20px;
  line-height: 1.65;
  color: #495262;
  max-width: 650px;
}
.stores {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}
.glow {
  position: absolute;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(10, 164, 189, 0.22),
    rgba(10, 164, 189, 0.05)
  );
  filter: blur(0.2px);
}

section {
  padding: 72px clamp(20px, 6vw, 82px);
}

h2 {
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.055em;
  margin: 0 0 15px;
  text-align: center;
}
.screens > p {
  max-width: 820px;
  margin: 0 auto 32px;
  color: #555f6d;
  font-size: 18px;
  line-height: 1.65;
}

.benefits {
  background: linear-gradient(180deg, #fff, #f6fbfc);
  border-top: 1px solid var(--line);
}
.benefits h2 span {
  color: var(--cyan);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.benefit-grid article {
  padding: 30px 18px;
  text-align: center;
  border-radius: 28px;
  background: white;
  border: 1px solid rgba(233, 237, 242, 0.75);
  box-shadow: 0 14px 34px rgba(32, 41, 56, 0.04);
}
.benefit-grid i {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--cyan-soft);
  color: var(--cyan);
  font-style: normal;
  border-radius: 22px;
  font-size: 28px;
}
.benefit-grid h3 {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.benefit-grid p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.screens {
  background: linear-gradient(180deg, #fff, #f3fbfd);
  text-align: center;
  padding-top: 86px;
}
.screen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.screen-card {
  padding: 20px 18px 24px;
  border-radius: 32px;
  background: white;
  box-shadow: 0 18px 44px rgba(32, 41, 56, 0.08);
  border: 1px solid rgba(233, 237, 242, 0.8);
}
.screen-card h3 {
  margin: 18px 0 6px;
  font-size: 19px;
}
.screen-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 34px;
  background:
    radial-gradient(
      circle at 84% 40%,
      rgba(255, 255, 255, 0.18),
      transparent 25%
    ),
    linear-gradient(135deg, #078fa8, #09a9c2);
  color: white;
  overflow: hidden;
}
.cta-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 26px;
}
.cta h2 {
  text-align: left;
  color: white;
  max-width: 620px;
}
.cta p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 560px;
}
.cta .official-badges {
  margin-top: 28px;
}
.cta .free-note {
  color: white;
  opacity: 0.95;
}
.cta .free-note:after {
  background: white;
}
.cta .qr-box {
  background: rgba(255, 255, 255, 0.96);
}
.cta .qr-row {
  margin-top: 6px;
}
.cta-phones {
  position: relative;
  min-height: 430px;
}

.hero-phone,
.phone-frame,
.cta-phone {
  position: relative;
  background: #0b0b0d;
  border: 4px solid #171719;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    0 28px 62px rgba(32, 41, 56, 0.22);
  overflow: hidden;
}
.hero-phone {
  width: 304px;
  border-radius: 48px;
  padding: 10px;
  position: absolute;
}
.hero-phone img,
.phone-frame img,
.cta-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
}
.phone-frame {
  max-width: 250px;
  margin: 0 auto;
  border-radius: 44px;
  padding: 9px;
}
.phone-frame img {
  border-radius: 34px;
}
.cta-phone {
  position: absolute;
  width: 235px;
  border-radius: 44px;
  padding: 9px;
}
.cta-phone img {
  border-radius: 34px;
}
.cta-phone:first-child {
  right: 215px;
  top: 10px;
  transform: rotate(-5deg);
}
.cta-phone:last-child {
  right: 20px;
  top: 74px;
  transform: rotate(6deg);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 82px);
  background: #fff;
  color: var(--dark);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-brand img,
footer img {
  height: 34px;
  width: auto;
  filter: none;
}
.footer-brand span,
footer span {
  color: var(--muted);
  opacity: 1;
}
.footer-links {
  display: flex;
  gap: 28px;
  font-weight: 800;
}
.footer-links a:hover {
  color: var(--cyan);
}
.footer-socials {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 850;
}
.footer-socials a {
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-socials a:hover,
.footer-links a:hover {
  color: var(--cyan);
}
.footer-socials a svg {
  flex-shrink: 0;
  color: var(--cyan);
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 24px 140px;
}
.legal-page h1 {
  font-size: clamp(40px, 5vw, 68px);
  margin-bottom: 24px;
}
.legal-page p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
}

.official-badges {
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.store-badge {
  display: block;
  height: 54px;
  line-height: 0;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}
.store-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.store-badge img {
  display: block;
  height: 54px;
  width: auto;
}
.free-note {
  margin: 8px 0 26px;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.free-note:after {
  content: "";
  display: block;
  width: 132px;
  height: 2px;
  background: var(--cyan);
  margin-top: 5px;
  border-radius: 99px;
}

/* QR download codes */
.qr-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin: 8px 0 6px;
}
.qr-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(10, 164, 189, 0.18);
  border-radius: 16px;
  padding: 8px 12px;
  box-shadow: 0 12px 28px rgba(32, 41, 56, 0.06);
}
.qr-box img {
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 8px;
}
.qr-box span {
  font-weight: 900;
  color: var(--dark);
  font-size: 14px;
}

/* Hero phones - clean side-by-side layout */
.hero-visual-side-by-side {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  overflow: visible;
}

.hero-visual-side-by-side .glow {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(10, 164, 189, 0.2),
    rgba(10, 164, 189, 0.05)
  );
  z-index: 0;
}

.hero-visual-side-by-side .hero-phone {
  position: relative;
  background: #0b0b0d;
  border: 5px solid #111;
  border-radius: 48px;
  padding: 10px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    0 34px 72px rgba(32, 41, 56, 0.22);
}

.hero-visual-side-by-side .hero-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 36px;
}

.hero-phone-left {
  width: 305px;
  z-index: 3;
  transform: rotate(-4deg);
}

.hero-phone-right {
  width: 270px;
  z-index: 2;
  transform: rotate(4deg);
}

/* Reset wcześniejszego pozycjonowania absolutnego dla hero-visual-side-by-side */
.hero-visual-side-by-side .phone-main,
.hero-visual-side-by-side .phone-side {
  position: relative;
  transform: none;
}

/* Scan flow */
.scan-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: start;
  margin: 58px auto 100px;
  max-width: 1180px;
}

.scan-step {
  position: relative;
  text-align: center;
  padding: 24px 18px 0;
}

.scan-step .phone-frame {
  max-width: 245px;
  margin: 0 auto 24px;
  transition: transform 0.2s ease;
}

.scan-step-main .phone-frame {
  max-width: 245px;
  transform: none;
}

.scan-step span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  background: var(--cyan);
  color: white;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(10, 164, 189, 0.22);
}

.scan-step h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.scan-step p {
  margin: 0 auto;
  max-width: 310px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.corrected-scan-flow {
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: 1200px;
  margin: 58px auto 100px;
}

.corrected-scan-flow .scan-step .phone-frame {
  max-width: 245px;
}

.corrected-scan-flow .scan-step-main .phone-frame {
  max-width: 245px;
  transform: none;
}

.corrected-scan-flow .scan-step h3 {
  min-height: 54px;
}

/* Feature strip */
.feature-strip {
  margin-top: 26px;
}

.feature-strip h2 {
  margin-bottom: 10px;
}

.feature-strip-rearranged {
  margin-top: 36px;
}

.feature-strip-lead {
  max-width: 780px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.65;
  color: #596273;
}

.feature-tag {
  display: inline-block;
  background: var(--cyan-soft);
  color: var(--cyan);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

/* Refined grid */
.refined-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.refined-grid .screen-card {
  padding: 18px 16px 24px;
}

.refined-grid .phone-frame {
  max-width: 215px;
  border-radius: 38px;
  padding: 8px;
}

.refined-grid .phone-frame img {
  border-radius: 30px;
}

.refined-grid .screen-card h3 {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.refined-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1050px;
}

.refined-grid-3 .phone-frame {
  max-width: 230px;
}

/* Service highlight */
.service-highlight {
  max-width: 1180px;
  margin: 54px auto 86px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  background: linear-gradient(135deg, #f3fbfd, #ffffff);
  border: 1px solid rgba(10, 164, 189, 0.16);
  border-radius: 42px;
  padding: 46px;
  box-shadow: 0 26px 70px rgba(32, 41, 56, 0.07);
}

.service-phone-wrap {
  position: relative;
  min-height: 600px;
}

.service-phone-main {
  max-width: 310px;
  position: absolute;
  left: 35px;
  top: 0;
  z-index: 3;
  transform: rotate(-3deg);
}

.service-phone-secondary {
  max-width: 230px;
  position: absolute;
  right: 18px;
  bottom: 28px;
  z-index: 2;
  transform: rotate(7deg);
  opacity: 0.96;
}

.service-copy {
  text-align: left;
}

.service-copy h3 {
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin: 0 0 20px;
}

.service-copy p {
  font-size: 19px;
  line-height: 1.75;
  color: #596273;
  margin: 0 0 22px;
}

.service-copy ul {
  padding-left: 22px;
  margin: 0;
  color: #354052;
  font-size: 17px;
  line-height: 1.75;
}

.service-copy li::marker {
  color: var(--cyan);
}

.other-functions-title {
  margin-top: 10px;
}

/* AI showcase */
.ai-showcase {
  max-width: 1280px;
  margin: 110px auto 70px;
  padding: 0 clamp(20px, 6vw, 82px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.ai-showcase-new {
  grid-template-columns: 0.95fr 1.05fr;
}

.ai-copy {
  text-align: left;
}

.ai-showcase h2 {
  text-align: left;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
  margin: 18px 0 24px;
  letter-spacing: -0.055em;
}

.ai-lead {
  font-size: 20px;
  line-height: 1.8;
  color: #596273;
  margin: 0 0 32px;
}

.ai-benefits {
  display: grid;
  gap: 16px;
}

.ai-benefit {
  background: #fff;
  border: 1px solid rgba(10, 164, 189, 0.14);
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 0 16px 40px rgba(32, 41, 56, 0.055);
}

.ai-benefit strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.ai-benefit p {
  margin: 0;
  color: #596273;
  line-height: 1.65;
}

.ai-phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 620px;
}

.ai-phones-collage {
  position: relative;
  min-height: 680px;
  display: block;
}

.ai-phone-hero {
  max-width: 285px;
  position: absolute;
  left: 50%;
  top: 42px;
  transform: translateX(-50%) rotate(-2deg);
  z-index: 4;
}

.ai-phone-card {
  max-width: 190px;
  position: absolute;
  z-index: 3;
}

.ai-card-one {
  left: 0;
  top: 10px;
  transform: rotate(-8deg);
}

.ai-card-two {
  right: 4px;
  top: 115px;
  transform: rotate(7deg);
}

.ai-card-three {
  left: 66px;
  bottom: 10px;
  transform: rotate(5deg);
}

/* SEO sections */
.seo-usecases,
.seo-faq {
  padding: 88px clamp(20px, 6vw, 82px);
  background: #fff;
}
.seo-usecases {
  border-top: 1px solid var(--line);
}
.seo-usecases h2,
.seo-faq h2 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.seo-lead {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
  color: #596273;
  font-size: 18px;
  line-height: 1.75;
}
.seo-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.seo-grid article {
  background: #fff;
  border: 1px solid rgba(10, 164, 189, 0.14);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(32, 41, 56, 0.05);
}
.seo-grid h3 {
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}
.seo-grid p {
  margin: 0;
  color: #596273;
  line-height: 1.65;
}
.seo-faq {
  background: linear-gradient(180deg, #fff, #f6fbfc);
}
.seo-faq details {
  max-width: 900px;
  margin: 14px auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 21px 24px;
  box-shadow: 0 12px 30px rgba(32, 41, 56, 0.04);
}
.seo-faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
  color: var(--dark);
}
.seo-faq p {
  margin: 14px 0 0;
  color: #596273;
  line-height: 1.7;
}

/* ── Media queries ── */

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: left;
    padding-top: 44px;
  }
  .hero-visual {
    min-height: 600px;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .screen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta {
    grid-template-columns: 1fr;
  }
  .cta-phones {
    min-height: 520px;
  }
  .scan-flow {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 54px;
  }
  .scan-step-main .phone-frame {
    transform: none;
  }
  .corrected-scan-flow {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 54px;
  }
  .corrected-scan-flow .scan-step-main .phone-frame {
    transform: none;
  }
  .refined-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-highlight {
    grid-template-columns: 1fr;
    padding: 34px;
  }
  .service-copy {
    text-align: center;
  }
  .service-copy ul {
    display: inline-block;
    text-align: left;
  }
  .service-phone-wrap {
    min-height: 540px;
  }
  .service-phone-main {
    left: 50%;
    transform: translateX(-58%) rotate(-3deg);
  }
  .service-phone-secondary {
    right: 50%;
    transform: translateX(74%) translateY(120px) rotate(7deg);
  }
  .refined-grid-3 {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
  .ai-showcase {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .ai-copy,
  .ai-showcase h2 {
    text-align: center;
  }
  .ai-phones {
    min-height: auto;
  }
  .ai-showcase-new {
    grid-template-columns: 1fr;
  }
  .ai-phones-collage {
    min-height: 620px;
  }
  .ai-card-one {
    left: 12%;
  }
  .ai-card-two {
    right: 12%;
  }
  .ai-card-three {
    left: 22%;
  }
  .seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-visual-side-by-side {
    min-height: 620px;
    gap: 22px;
  }
  .hero-phone-left {
    width: 285px;
  }
  .hero-phone-right {
    width: 245px;
  }
}

@media (max-width: 780px) {
  .ai-phones {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .nav {
    height: 68px;
  }
  .brand img {
    height: 31px;
  }
  .btn-small {
    display: none;
  }
  .hero {
    padding-top: 28px;
    min-height: auto;
  }
  .hero p {
    font-size: 17px;
  }
  .hero-visual {
    min-height: 500px;
  }
  .glow {
    width: 390px;
    height: 390px;
  }
  .benefit-grid,
  .screen-grid {
    grid-template-columns: 1fr;
  }
  .screen-card {
    max-width: 360px;
    margin: 0 auto;
  }
  .cta-phones {
    min-height: 430px;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-links {
    gap: 16px;
    flex-direction: column;
  }
  .store-badge {
    height: 48px;
  }
  .store-badge img {
    height: 48px;
  }
  .official-badges {
    gap: 12px;
  }
  .cta-phone {
    width: 205px;
  }
  .cta-phone:first-child {
    right: 130px;
  }
  .cta-phone:last-child {
    right: 0;
  }
  .scan-flow {
    margin-top: 44px;
    margin-bottom: 76px;
  }
  .scan-step .phone-frame,
  .scan-step-main .phone-frame {
    max-width: 260px;
  }
  .corrected-scan-flow {
    margin-top: 44px;
    margin-bottom: 76px;
  }
  .corrected-scan-flow .scan-step .phone-frame,
  .corrected-scan-flow .scan-step-main .phone-frame {
    max-width: 260px;
  }
  .refined-grid {
    grid-template-columns: 1fr;
  }
  .refined-grid .phone-frame {
    max-width: 250px;
  }
  .service-highlight {
    border-radius: 30px;
    padding: 26px 18px;
  }
  .service-copy h3 {
    font-size: 32px;
  }
  .service-copy p {
    font-size: 17px;
  }
  .service-phone-wrap {
    min-height: 430px;
  }
  .service-phone-main {
    max-width: 230px;
  }
  .service-phone-secondary {
    max-width: 175px;
    transform: translateX(76%) translateY(105px) rotate(7deg);
  }
  .qr-box img {
    width: 54px;
    height: 54px;
  }
  .qr-box {
    padding: 7px 10px;
  }
  .ai-phones-collage {
    min-height: 520px;
  }
  .ai-phone-hero {
    max-width: 230px;
    top: 40px;
  }
  .ai-phone-card {
    max-width: 145px;
  }
  .ai-card-one {
    left: 0;
    top: 0;
  }
  .ai-card-two {
    right: 0;
    top: 130px;
  }
  .ai-card-three {
    left: 18%;
    bottom: 0;
  }
  .seo-usecases,
  .seo-faq {
    padding: 64px 20px;
  }
  .seo-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual-side-by-side {
    min-height: auto;
    padding: 34px 0 20px;
    flex-direction: column;
    gap: 22px;
  }
  .hero-visual-side-by-side .glow {
    width: 360px;
    height: 360px;
  }
  .hero-phone-left,
  .hero-phone-right {
    width: min(275px, 82vw);
    transform: none;
  }
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1080px) {
  .nav-burger {
    display: flex;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 32px rgba(32, 41, 56, 0.10);
    z-index: 19;
  }
  .nav-links.nav-open {
    display: flex;
  }
  .nav-links a {
    padding: 14px clamp(20px, 6vw, 82px);
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .nav-links {
    top: 68px;
  }
}
