  :root {
      --red: #ef4635;
      --red-dark: #e33d2e;
      --red-soft: #fff4ef;

      --black: #2b0d46;
      --text: #1f1f25;
      --muted: #66636f;
      --line: rgba(43, 13, 70, 0.09);
      --soft: #fff4ef;
      --white: #ffffff;

      --purple: #2b0d46;
      --purple-dark: #1f0733;

      --container: 1240px;
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 16px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      color: var(--black);
      background: #fff;
      overflow-x: hidden;
    }

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

    button,
    input {
      font: inherit;
    }

    .page {
      width: 100%;
      overflow: hidden;
    }

    .container {
      width: min(var(--container), calc(100% - 48px));
      margin: 0 auto;
    }

    /* TOP FREE BAR */

    .top-free-bar {
      width: 100%;
      background: var(--red);
      color: #fff;
    }

    .top-free-bar-inner {
      width: min(var(--container), calc(100% - 48px));
      min-height: 52px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .top-free-text {
      text-align: center;
      font-size: 16px;
      line-height: 1.25;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    /* HEADER */

    .header-wrap {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 18px 0 0;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(14px);
    }

    .header {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      padding: 12px 22px;
      border-radius: 26px;
      background: #fff;
    }

    .logo {
      display: flex;
      align-items: center;
      min-width: 210px;
    }

    .logo img {
      display: block;
      width: 206px;
      height: auto;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 34px;
      color: var(--black);
      font-size: 15.5px;
      font-weight: 650;
      white-space: nowrap;
    }

    .nav a {
      opacity: 0.9;
    }

    .nav a:hover {
      color: var(--red);
      opacity: 1;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 15px;
      font-weight: 650;
    }

    .login {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 40px;
      padding: 0 18px;
      border-radius: 999px;
      background: var(--soft);
      color: var(--purple);
    }

    .login:hover {
      background: var(--line);
    }

    .lang {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      color: var(--black);
    }

    .burger {
      display: none;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 14px;
      background: var(--soft);
      cursor: pointer;
    }

    .burger span {
      display: block;
      width: 18px;
      height: 2px;
      margin: 4px auto;
      border-radius: 10px;
      background: var(--black);
    }

    /* BUTTONS */

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      height: 58px;
      padding: 0 26px 0 30px;
      border: 0;
      border-radius: 999px;
      background: var(--red);
      color: white;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: -0.02em;
      cursor: pointer;
    }

    .btn-primary:hover {
      background: var(--red-dark);
    }

    .btn-circle {
      width: 34px;
      height: 34px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: #fff;
      color: var(--red);
      font-size: 21px;
      line-height: 1;
      flex: 0 0 auto;
    }

    /* HERO */

    .hero {
      position: relative;
      padding: 42px 0 70px;
      background: #fff;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      align-items: center;
      gap: 46px;
      overflow: hidden;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      max-width: 720px;
      margin: 0;
      font-size: clamp(44px, 4.3vw, 62px);
      line-height: 1.04;
      letter-spacing: -0.055em;
      font-weight: 600;
      color: var(--black);
    }

    .hero h1 span {
      color: var(--red);
    }

    .hero-subtitle {
      max-width: 560px;
      margin: 26px 0 0;
      font-size: 21px;
      line-height: 1.48;
      color: var(--text);
      letter-spacing: -0.02em;
      font-weight: 400;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 36px;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 34px;
      max-width: 560px;
      margin-top: 46px;
    }

    .point {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .point-icon {
      width: 40px;
      height: 40px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: transparent;
      color: var(--red);
    }

    .point b {
      display: block;
      margin-bottom: 4px;
      font-size: 14px;
      line-height: 1.1;
      font-weight: 700;
    }

    .point p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.35;
    }

    .icon-svg {
      width: 24px;
      height: 24px;
      display: block;
    }

    /* HERO VIDEO */

    .hero-visual {
      position: relative;
      min-height: 520px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }

    .hero-video-wrap {
      position: relative;
      width: min(100%, 720px);
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-video-glow {
      position: absolute;
      width: 560px;
      height: 560px;
      right: -20px;
      top: -20px;
      border-radius: 50%;
      background: radial-gradient(circle, #fff4ef 0%, rgba(255, 244, 239, 0) 70%);
      z-index: 1;
    }

    .hero-video-window {
      position: relative;
      z-index: 2;
      width: min(100%, 700px);
      border: 1px solid #ececef;
      border-radius: 28px;
      background: #fff;
      overflow: hidden;
      box-shadow: 1px 11px 50px rgba(43, 13, 70, 0.08);
    }

    .hero-video-window::after {
      content: "";
      position: absolute;
      left: 8%;
      right: 8%;
      bottom: -34px;
      height: 54px;
      border-radius: 999px;
      background: rgba(43, 13, 70, 0.16);
      filter: blur(28px);
      z-index: -1;
      pointer-events: none;
    }

    .hero-video-top {
      height: 54px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 14px;
      padding: 0 18px;
      border-bottom: 1px solid #edf0f5;
      background: #fff;
    }

    .hero-video-dots {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-video-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #dde0e7;
    }

    .hero-video-url {
      height: 30px;
      display: flex;
      align-items: center;
      max-width: 360px;
      padding: 0 14px;
      border-radius: 999px;
      background: #f7f8fa;
      color: #8b91a0;
      font-size: 12px;
      line-height: 1;
    }

    .hero-video-status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      height: 30px;
      padding: 0 12px;
      border-radius: 999px;
      background: var(--red-soft);
      color: var(--red);
      font-size: 12px;
      font-weight: 650;
    }

    .hero-video-status::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
    }

    .hero-video-body {
      position: relative;
      background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    }

    .hero-demo-video {
      width: 100%;
      aspect-ratio: 1266 / 720;
      display: block;
      border-radius: 0 0 28px 28px;
      object-fit: cover;
      background: #f7f8fa;
    }

    /* SECTIONS */

    .section {
      padding: 48px 0;
    }

    /* HOW */

    .how-new {
      background: #fff;
    }

    .how-head {
      max-width: 780px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .how-title {
      margin: 0;
      font-size: clamp(38px, 4vw, 58px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      font-weight: 650;
      color: var(--purple);
    }

    .how-title span {
      color: var(--red);
    }

    .how-subtitle {
      margin: 14px 0 0;
      color: #606776;
      font-size: 20px;
      line-height: 1.45;
      letter-spacing: -0.02em;
      font-weight: 400;
    }

    .how-flow {
      display: grid;
      gap: 56px;
      max-width: 1040px;
      margin: 0 auto;
    }

    .how-row {
      position: relative;
      display: grid;
      grid-template-columns: 0.46fr 0.54fr;
      align-items: center;
      gap: 42px;
      min-height: 300px;
      padding: 0;
      background: transparent;
      overflow: visible;
    }

    .how-row + .how-row {
      padding-top: 56px;
      border-top: 1px solid rgba(43, 13, 70, 0.08);
    }

    .how-row.is-reverse {
      grid-template-columns: 0.54fr 0.46fr;
    }

    .how-row.is-reverse .how-copy {
      justify-self: end;
    }

    .how-row.is-reverse .how-visual {
      justify-items: start;
    }

    .how-copy {
      position: relative;
      z-index: 2;
    }

    .step-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 96px;
      height: 38px;
      padding: 0 16px;
      margin-bottom: 22px;
      border-radius: 999px;
      background: var(--red);
      color: #fff;
      font-size: 15px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .step-pill-green {
      background: #229847;
      color: #fff;
    }

    .how-copy h3 {
      max-width: 430px;
      margin: 0;
      color: var(--purple);
      font-size: clamp(32px, 3vw, 44px);
      line-height: 1.04;
      letter-spacing: -0.055em;
      font-weight: 650;
    }

    .how-copy p {
      max-width: 420px;
      margin: 18px 0 0;
      color: #303746;
      font-size: 19px;
      line-height: 1.48;
      letter-spacing: -0.025em;
      font-weight: 400;
    }

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

    .how-visual-left {
      justify-items: start;
    }

    .how-visual-right {
      justify-items: end;
    }

    .how-window {
      position: relative;
      width: min(100%, 580px);
      border: 1px solid #ececef;
      border-radius: 24px;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 18px 46px rgba(43, 13, 70, 0.075);
    }

    .how-window-top {
      height: 44px;
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: 12px;
      padding: 0 14px;
      border-bottom: 1px solid #edf0f5;
      background: #fff;
    }

    .how-window-dots {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .how-window-dots span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #dde0e7;
    }

    .how-window-url {
      height: 26px;
      display: flex;
      align-items: center;
      max-width: 300px;
      padding: 0 12px;
      border-radius: 999px;
      background: #f7f8fa;
      color: #8b91a0;
      font-size: 11px;
      line-height: 1;
    }

    .how-window-body {
      position: relative;
      background: #fff;
    }

    .screen-shot {
      width: 100%;
      aspect-ratio: 16 / 10;
      display: block;
      object-fit: cover;
      object-position: center;
      background: #fff;
    }

    /* MINI CTA */

    .mini-cta-section {
      padding: 20px 0 48px;
      background: #fff;
    }

    .mini-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      max-width: 1040px;
      margin: 0 auto;
      padding: 28px 32px;
      border-radius: 28px;
      background: var(--red-soft);
    }

    .mini-cta-copy h2 {
      margin: 0;
      color: var(--purple);
      font-size: 30px;
      line-height: 1.12;
      letter-spacing: -0.045em;
      font-weight: 650;
    }

    .mini-cta-copy p {
      max-width: 520px;
      margin: 8px 0 0;
      color: #606776;
      font-size: 17px;
      line-height: 1.45;
      letter-spacing: -0.02em;
    }

    /* FEATURES */

    .features-showcase-section {
      background: #fff;
    }

    .features-showcase-section .container {
      width: min(1040px, calc(100% - 48px));
    }

    .features-showcase-head {
      max-width: 880px;
      margin: 0 auto 44px;
      text-align: center;
    }

    .features-showcase-title {
      max-width: 760px;
      margin: 0 auto;
      color: var(--purple);
      font-size: clamp(38px, 4vw, 58px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      font-weight: 650;
    }

    .features-showcase-title span {
      color: var(--red);
    }

    .features-showcase-subtitle {
      max-width: 720px;
      margin: 16px auto 0;
      color: #606776;
      font-size: 20px;
      line-height: 1.45;
      letter-spacing: -0.02em;
      font-weight: 400;
    }

    .features-showcase-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .feature-card {
      position: relative;
      min-height: 250px;
      padding: 32px;
      border-radius: 30px;
      overflow: hidden;
    }

    .feature-card::after {
      content: "";
      position: absolute;
      right: -54px;
      bottom: -54px;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.62);
      pointer-events: none;
    }

    .feature-card-red {
      background: #fff4ef;
    }

    .feature-card-purple {
      background: #f7f4ff;
    }

    .feature-card-blue {
      background: #f4f8ff;
    }

    .feature-card-peach {
      background: #fff8ef;
    }

    .feature-card-copy {
      position: relative;
      z-index: 2;
    }

    .feature-card-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 54px;
      height: 38px;
      margin-bottom: 22px;
      border-radius: 999px;
      background: var(--red);
      color: #fff;
      font-size: 14px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .feature-card-purple .feature-card-number {
      background: var(--purple);
    }

    .feature-card-blue .feature-card-number {
      background: #3154ff;
    }

    .feature-card-peach .feature-card-number {
      background: #f59e0b;
    }

    .feature-card h3 {
      max-width: 520px;
      margin: 0;
      color: var(--purple);
      font-size: clamp(28px, 2.4vw, 38px);
      line-height: 1.04;
      letter-spacing: -0.055em;
      font-weight: 650;
    }

    .feature-card p {
      max-width: 540px;
      margin: 16px 0 0;
      color: #303746;
      font-size: 18px;
      line-height: 1.48;
      letter-spacing: -0.025em;
    }

    /* SEO QUESTION CLOUD */

    .seo-cloud-section {
      background: #fff;
    }

    .seo-cloud-head {
      max-width: 860px;
      margin: 0 auto 38px;
      text-align: center;
    }

    .seo-cloud-title {
      margin: 0;
      color: var(--purple);
      font-size: clamp(38px, 4vw, 58px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      font-weight: 650;
    }

    .seo-cloud-subtitle {
      max-width: 620px;
      margin: 16px auto 0;
      color: #606776;
      font-size: 20px;
      line-height: 1.45;
      letter-spacing: -0.02em;
      font-weight: 400;
    }

    .seo-question-cloud {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 14px;
      max-width: 1040px;
      min-height: 280px;
      margin: 0 auto;
      padding: 0 42px;
      border-radius: 36px;
    }

    .question-tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      background: #fff;
      color: var(--purple);
      font-size: 18px;
      line-height: 1;
      font-weight: 550;
      letter-spacing: -0.04em;
      transform: rotate(var(--rotate, 0deg));
      transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
    }

    .question-tag:hover {
      transform: translateY(-3px) rotate(var(--rotate, 0deg));
      background: var(--red);
      color: #fff;
    }

    .tag-main {
      min-height: 62px;
      padding: 0 28px;
      background: var(--red);
      color: #fff;
      font-size: 18px;
    }

    .tag-large {
      min-height: 56px;
      padding: 0 26px;
      font-size: 24px;
    }

    .tag-medium {
      min-height: 50px;
      padding: 0 22px;
      font-size: 21px;
    }

    .tag-small {
      min-height: 42px;
      padding: 0 18px;
      color: #737a89;
      font-size: 16px;
    }

    .tag-red {
      background: var(--red-soft);
      color: var(--red);
    }

    .tag-purple {
      background: var(--purple);
      color: #fff;
    }

    .tag-soft {
      background: #fff;
      color: #9aa1af;
    }

    .question-tag:nth-child(1) { --rotate: -2deg; }
    .question-tag:nth-child(2) { --rotate: 2deg; }
    .question-tag:nth-child(3) { --rotate: -1deg; }
    .question-tag:nth-child(4) { --rotate: 1.5deg; }
    .question-tag:nth-child(5) { --rotate: -2.5deg; }
    .question-tag:nth-child(6) { --rotate: 2.2deg; }
    .question-tag:nth-child(7) { --rotate: -1.5deg; }
    .question-tag:nth-child(8) { --rotate: 1deg; }
    .question-tag:nth-child(9) { --rotate: -1deg; }

    /* SEO CTA WITH SCREENS */


.seo-cloud-cta {
  max-width: 1040px;
  min-height: 430px;
  margin: 36px auto 0;
  padding: 50px 54px;
  border-radius: 34px;
  background: var(--red-soft);
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 34px;
  overflow: hidden;
}

    .seo-cloud-cta-copy {
      position: relative;
      z-index: 8;
      text-align: left;
    }

    .seo-cloud-cta h3 {
      max-width: 420px;
      margin: 0;
      color: var(--purple);
      font-size: clamp(40px, 4vw, 62px);
      line-height: 1.02;
      letter-spacing: -0.065em;
      font-weight: 650;
    }

    .seo-cloud-cta h3 span {
      color: var(--red);
    }

    .seo-cloud-cta p {
      max-width: 430px;
      margin: 20px 0 0;
      color: #606776;
      font-size: 20px;
      line-height: 1.45;
      letter-spacing: -0.025em;
    }

    .seo-cloud-cta .btn-primary {
      height: 58px;
      margin-top: 30px;
      padding: 0 22px 0 28px;
    }

.seo-cloud-screens {
  position: relative;
  min-height: 340px;
}

.screen-desktop {
  position: absolute;
  right: 28px;
  top: 50%;
  width: 520px;
  border: 1px solid rgba(43, 13, 70, 0.1);
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(43, 13, 70, 0.13);
  z-index: 2;
  transform: translateY(-50%);
}

    .screen-desktop-top {
      height: 44px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 18px;
      border-bottom: 1px solid #edf0f5;
      background: #fff;
    }

    .screen-desktop-top span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #dde0e7;
    }

    .screen-desktop-body {
      background: #f7f8fa;
    }

    .screen-desktop-body img {
      display: block;
      width: 100%;
      height: auto;
    }

.screen-phone {
  position: absolute;
  right: -55px;
  top: 57%;
  width: 320px;
  aspect-ratio: 1464 / 1620;
  z-index: 6;
  filter: drop-shadow(0 30px 58px rgba(43, 13, 70, 0.22));
  transform: translateY(-50%);
}


.screen-phone-frame {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.screen-phone-shot {
  position: absolute;
  left: 4.6%;
  top: 1%;
  width: 90.6%;
  height: 92.2%;
  border-radius: 10.5% / 9.5%;
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}


.screen-phone-shot img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 18px;
}

    /* FREE TOOLS */

    .free-tools {
      background: #fff;
    }

    .free-tools-head {
      max-width: 920px;
      margin: 0 auto 42px;
      text-align: center;
    }

    .free-tools-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 40px;
      padding: 0 18px;
      margin-bottom: 20px;
      border-radius: 999px;
      border: 1px solid rgba(239, 70, 53, 0.42);
      background: #fff;
      color: var(--red);
      font-size: 14px;
      line-height: 1;
      font-weight: 650;
      letter-spacing: -0.01em;
    }

    .free-tools-badge svg {
      width: 18px;
      height: 18px;
      display: block;
    }

    .free-tools-title {
      margin: 0;
      color: var(--purple);
      font-size: clamp(38px, 4vw, 58px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      font-weight: 600;
    }

    .free-tools-title span {
      color: var(--red);
    }

    .free-tools-subtitle {
      max-width: 760px;
      margin: 16px auto 0;
      color: #606776;
      font-size: 20px;
      line-height: 1.45;
      letter-spacing: -0.02em;
      font-weight: 400;
    }

    .free-tools-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .tool-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 238px;
      padding: 22px;
      border-radius: 24px;
      background: #fff;
      overflow: hidden;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 2px 8px 19px rgba(43, 13, 70, 0.07);
    }

    .tool-card:hover {
      transform: translateY(-4px);
      border-color: rgba(239, 70, 53, 0.25);
      box-shadow: 0 22px 50px rgba(43, 13, 70, 0.07);
    }

    .tool-card-top {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .tool-icon {
      width: 62px;
      height: 62px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 18px;
      background: linear-gradient(145deg, #fff1ef, #fff8f7);
      color: var(--red);
    }

    .tool-icon svg {
      width: 35px;
      height: 35px;
      display: block;
    }

    .tool-card h3 {
      margin: 7px 0 0;
      color: #15151d;
      font-size: 21px;
      line-height: 1.16;
      letter-spacing: -0.03em;
      font-weight: 600;
    }

    .tool-card p {
      margin: 16px 0 22px;
      color: #606776;
      font-size: 15.5px;
      line-height: 1.45;
      letter-spacing: -0.015em;
      font-weight: 400;
    }

    .tool-link {
      margin-top: auto;
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 0 18px;
      border-radius: 14px;
      background: var(--red-soft);
      color: var(--red);
      font-size: 15px;
      line-height: 1;
      font-weight: 600;
    }

    .tool-card:hover .tool-link {
      background: var(--red);
      color: #fff;
    }

    /* FOOTER */

    .site-footer {
      padding: 48px 0 0;
      background: #fff;
    }

    .site-footer svg {
      display: block;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.45fr 0.9fr 1fr 0.9fr 0.95fr;
      gap: 34px;
      padding: 64px 0 46px;
    }

    .footer-brand {
      padding-right: 34px;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      margin-bottom: 24px;
    }

    .footer-logo img {
      display: block;
      width: 210px;
      height: auto;
    }

    .footer-description {
      max-width: 280px;
      margin: 0;
      color: #4f5362;
      font-size: 15px;
      line-height: 1.55;
    }

    .footer-socials {
      display: flex;
      gap: 12px;
      margin-top: 28px;
    }

    .footer-social {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #f5f2f7;
      color: var(--purple);
    }

    .footer-social:hover {
      background: var(--red-soft);
      color: var(--red);
    }

    .footer-social svg {
      width: 20px;
      height: 20px;
    }

    .footer-col {
      padding-left: 28px;
      border-left: 1px solid #ececef;
    }

    .footer-col h3 {
      margin: 0 0 22px;
      color: var(--purple);
      font-size: 16px;
      font-weight: 650;
      letter-spacing: -0.02em;
    }

    .footer-links {
      display: grid;
      gap: 14px;
    }

    .footer-links a {
      color: #4f5362;
      font-size: 15px;
      line-height: 1.25;
    }

    .footer-links a:hover {
      color: var(--red);
    }

    .footer-bottom {
      background: radial-gradient(circle at 0 0, #3d1266 0%, var(--purple) 46%, #18042b 100%);
      color: #fff;
    }

    .footer-bottom-inner {
      width: min(var(--container), calc(100% - 48px));
      min-height: 128px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr auto;
      align-items: center;
      gap: 34px;
    }

    .footer-bottom-item {
      display: flex;
      align-items: center;
      gap: 16px;
      color: rgba(255, 255, 255, 0.82);
    }

    .footer-bottom-icon {
      width: 58px;
      height: 58px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 50%;
      color: #fff;
    }

    .footer-bottom-icon svg {
      width: 30px;
      height: 30px;
    }

    .footer-bottom-item b {
      display: block;
      margin-bottom: 6px;
      color: #fff;
      font-size: 14px;
      font-weight: 650;
    }

    .footer-bottom-item p {
      margin: 0;
      font-size: 14px;
      line-height: 1.45;
    }

    .footer-copy {
      color: rgba(255, 255, 255, 0.82);
      font-size: 14px;
      line-height: 1.6;
    }

    .footer-lang {
      height: 46px;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 0 18px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 999px;
      color: #fff;
      font-size: 14px;
      font-weight: 650;
    }

    .footer-lang svg {
      width: 14px;
      height: 14px;
    }

    /* RESPONSIVE */

    @media (max-width: 1100px) {
      .nav {
        display: none;
      }

      .burger {
        display: block;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .hero-copy {
        text-align: center;
      }

      .hero h1,
      .hero-subtitle,
      .hero-points {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-visual {
        min-height: auto;
      }

      .hero-video-wrap {
        min-height: 500px;
      }

      .how-flow {
        max-width: 760px;
        gap: 52px;
      }

      .how-row,
      .how-row.is-reverse {
        grid-template-columns: 1fr;
        gap: 26px;
        min-height: auto;
      }

      .how-row + .how-row {
        padding-top: 52px;
      }

      .how-row.is-reverse .how-copy {
        order: 1;
        justify-self: center;
      }

      .how-row.is-reverse .how-visual {
        order: 2;
        justify-items: center;
      }

      .how-copy {
        text-align: center;
      }

      .how-copy h3,
      .how-copy p {
        margin-left: auto;
        margin-right: auto;
      }

      .how-visual,
      .how-visual-left,
      .how-visual-right {
        justify-items: center;
      }

      .how-window {
        width: min(100%, 620px);
      }

      .features-showcase-section .container {
        width: min(760px, calc(100% - 28px));
      }

      .features-showcase-grid {
        grid-template-columns: 1fr;
      }

      .feature-card {
        min-height: auto;
        padding: 28px;
        text-align: center;
      }

      .feature-card h3,
      .feature-card p {
        margin-left: auto;
        margin-right: auto;
      }

      .seo-cloud-cta {
        grid-template-columns: 1fr;
        max-width: 760px;
        min-height: auto;
        padding: 42px 36px 34px;
      }

      .seo-cloud-cta-copy {
        text-align: center;
      }

      .seo-cloud-cta h3,
      .seo-cloud-cta p {
        margin-left: auto;
        margin-right: auto;
      }

      .seo-cloud-screens {
        min-height: 430px;
      }

      .screen-desktop {
        left: 50%;
        right: auto;
        top: 40px;
        width: min(100%, 620px);
        transform: translateX(-50%);
      }

      .screen-phone {
        left: 50%;
        right: auto;
        top: 170px;
        bottom: auto;
        width: 300px;
        transform: translateX(-50%);
      }

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

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

      .footer-brand {
        grid-column: 1 / -1;
      }

      .footer-bottom-inner {
        grid-template-columns: 1fr 1fr;
        padding: 28px 0;
      }

      .footer-lang {
        justify-self: start;
      }
    }

    @media (max-width: 760px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .top-free-bar-inner {
        width: min(100% - 24px, var(--container));
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .top-free-text {
        text-align: center;
        font-size: 14px;
      }

      .header-wrap {
        padding-top: 10px;
      }

      .header {
        height: 68px;
        padding: 0 10px;
        border-radius: 20px;
      }

      .logo {
        min-width: auto;
      }

      .logo img {
        width: 164px;
      }

      .login,
      .lang {
        display: none;
      }

      .hero {
        padding: 36px 0 42px;
      }

      .hero h1 {
        font-size: 36px;
      }

      .hero-subtitle {
        font-size: 18px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn-primary {
        width: 100%;
        max-width: 360px;
      }

      .hero-points {
        grid-template-columns: 1fr;
        max-width: 340px;
      }

      .hero-visual {
        min-height: 350px;
      }

      .hero-video-wrap {
        min-height: 340px;
      }

      .hero-video-glow {
        width: 320px;
        height: 320px;
        right: 0;
        top: 10px;
      }

      .hero-video-window {
        width: 100%;
        border-radius: 22px;
      }

      .hero-video-top {
        height: 46px;
        grid-template-columns: auto 1fr;
        padding: 0 12px;
      }

      .hero-video-status {
        display: none;
      }

      .hero-video-url {
        max-width: none;
        height: 28px;
        font-size: 10px;
      }

      .hero-video-body {
        padding: 10px;
        aspect-ratio: 4 / 3;
      }

      .hero-demo-video {
        border-radius: 16px;
      }

      .section {
        padding: 32px 0;
      }

      .how-head {
        margin-bottom: 34px;
      }

      .how-title,
      .features-showcase-title,
      .seo-cloud-title,
      .free-tools-title {
        font-size: 38px;
      }

      .how-subtitle,
      .features-showcase-subtitle,
      .seo-cloud-subtitle,
      .free-tools-subtitle {
        font-size: 17px;
      }

      .how-flow {
        max-width: 100%;
        gap: 40px;
      }

      .how-row {
        gap: 20px;
      }

      .how-row + .how-row {
        padding-top: 40px;
      }

      .step-pill {
        height: 36px;
        min-width: 88px;
        margin-bottom: 18px;
        font-size: 13px;
      }

      .how-copy h3 {
        font-size: 32px;
      }

      .how-copy p {
        margin-top: 14px;
        font-size: 17px;
      }

      .how-visual {
        min-height: auto;
      }

      .how-window {
        width: 100%;
        border-radius: 22px;
      }

      .how-window-top {
        height: 42px;
        padding: 0 12px;
      }

      .how-window-dots span {
        width: 8px;
        height: 8px;
      }

      .how-window-url {
        height: 26px;
        max-width: none;
        font-size: 10px;
      }

      .screen-shot {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: contain;
        object-position: center;
        border-radius: 0 0 22px 22px;
      }

      .mini-cta-section {
        padding: 10px 0 32px;
      }

      .mini-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 24px 18px;
        border-radius: 24px;
        text-align: center;
      }

      .mini-cta-copy h2 {
        font-size: 28px;
      }

      .mini-cta-copy p {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
      }

      .mini-cta .btn-primary {
        width: 100%;
      }

      .features-showcase-head {
        margin-bottom: 28px;
      }

      .features-showcase-grid {
        gap: 14px;
      }

      .feature-card {
        padding: 22px;
        border-radius: 26px;
      }

      .feature-card-number {
        width: 48px;
        height: 34px;
        margin-bottom: 16px;
        font-size: 13px;
      }

      .feature-card h3 {
        font-size: 30px;
      }

      .feature-card p {
        margin-top: 14px;
        font-size: 16.5px;
      }

      .seo-cloud-head {
        margin-bottom: 28px;
      }

      .seo-question-cloud {
        min-height: auto;
        padding: 0;
        gap: 10px;
      }

      .question-tag {
        min-height: 40px;
        padding: 0 16px;
        font-size: 15px;
      }

      .tag-large,
      .tag-medium {
        min-height: 44px;
        font-size: 17px;
      }

      .tag-main {
        min-height: 48px;
        font-size: 16px;
      }

      .seo-cloud-cta {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 28px;
        padding: 28px 18px 22px;
        border-radius: 28px;
      }

      .seo-cloud-cta-copy {
        text-align: center;
      }

      .seo-cloud-cta h3 {
        max-width: 100%;
        font-size: 36px;
      }

      .seo-cloud-cta p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 17px;
      }

      .seo-cloud-cta .btn-primary {
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
      }

      .seo-cloud-screens {
        min-height: 330px;
        width: 100%;
      }

      .screen-desktop {
        left: 50%;
        right: auto;
        top: 10px;
        width: 94%;
        border-radius: 22px;
        transform: translateX(-50%);
      }

      .screen-desktop-top {
        height: 34px;
        padding: 0 12px;
      }

      .screen-desktop-top span {
        width: 8px;
        height: 8px;
      }

      .screen-phone {
        left: 50%;
        right: auto;
        top: 105px;
        bottom: auto;
        width: 210px;
        transform: translateX(-50%);
      }

      .screen-phone-shot img {
        border-radius: 16px;
      }

      .free-tools-head {
        margin-bottom: 28px;
      }

      .free-tools-badge {
        height: 38px;
        font-size: 13px;
      }

      .free-tools-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .tool-card {
        min-height: auto;
        padding: 18px;
        border-radius: 22px;
      }

      .tool-card h3 {
        font-size: 20px;
      }

      .tool-card p {
        margin: 14px 0 18px;
        font-size: 15px;
      }

      .tool-link {
        height: 46px;
      }

      .site-footer {
        padding-top: 32px;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 42px 0 36px;
      }

      .footer-brand {
        padding-right: 0;
      }

      .footer-logo img {
        width: 190px;
      }

      .footer-col {
        padding-left: 0;
        padding-top: 22px;
        border-left: 0;
        border-top: 1px solid #ececef;
      }

      .footer-bottom-inner {
        width: min(100% - 28px, var(--container));
        grid-template-columns: 1fr;
        gap: 22px;
      }
    }

    @media (max-width: 420px) {
      .logo img {
        width: 148px;
      }

      .hero h1 {
        font-size: 34px;
      }

      .seo-cloud-cta h3 {
        font-size: 34px;
      }

      .screen-phone {
        width: 190px;
      }
    }

