:root {
  --bg: #101011;
  --white: #ffffff;
  --ink: #111114;
  --muted: #6c6c75;
  --purple: #673DE6;
  --purple-2: #7E63F4;
  --green-bg: #123A27;
  --green: #48C780;
  --soft-gray: #F4F4F6;
  --page-left: 48px;
  --page-right: 35px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  border-top: 4px solid #7b2ff2;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 95px;
  padding-left: var(--page-left);
  padding-right: var(--page-right);
  color: var(--white);
  background: var(--bg);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.site-header.is-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 16, 18, .09);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 19px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 213px;
  min-width: 213px;
  color: currentColor;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.75px;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  filter: drop-shadow(0 11px 15px rgba(0, 0, 0, .68));
}

.site-header.is-light .brand-mark {
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 14px;
  margin-left: 2px;
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  color: currentColor;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.main-nav .has-menu::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .9;
}

.new-badge {
  display: inline-grid;
  place-items: center;
  height: 34px;
  padding: 0 14px;
  margin-left: -15px;
  border-radius: 10px;
  background: var(--green-bg);
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .2px;
}

.site-header.is-light .new-badge {
  background: #EAF8F1;
  color: #008C4A;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  height: 55px;
}

.ask-ai {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 129px;
  height: 52px;
  border: 0;
  border-radius: 28px;
  color: currentColor;
  background: linear-gradient(90deg, #EB4DFF, #16A3FF);
  padding: 1px;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
}

.ask-ai::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: #171719;
  transition: background .25s ease;
}

.site-header.is-light .ask-ai::before {
  background: #fff;
}

.ask-ai svg,
.ask-ai span {
  position: relative;
  z-index: 1;
}

.language,
.profile {
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  padding: 0;
}

.language {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 2px;
  font-size: 18px;
  font-weight: 800;
}

.flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  background:
    linear-gradient(0deg, transparent 0 13%, #fff 13% 20%, transparent 20% 33%, #fff 33% 40%, transparent 40% 53%, #fff 53% 60%, transparent 60% 73%, #fff 73% 80%, transparent 80% 100%),
    repeating-linear-gradient(0deg, #d51f2f 0 8%, #fff 8% 16%),
    #fff;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
  overflow: hidden;
}

.flag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 47%;
  height: 54%;
  background: #3156A3;
}

.profile {
  width: 32px;
  height: 32px;
  margin-left: 6px;
  display: inline-grid;
  place-items: center;
}

.page-shell {
  padding-left: var(--page-left);
  padding-right: var(--page-right);
}

.search-section {
  display: grid;
  grid-template-columns: minmax(700px, 1fr) 228px;
  gap: 39px;
  align-items: center;
}

.domain-search {
  position: relative;
  display: flex;
  align-items: center;
  height: 75px;
  background: #fff;
  color: #1B1B20;
  border-radius: 15px;
  padding: 8px 8px 8px 58px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8), inset 0 0 0 1px rgba(0,0,0,.04);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 22px;
}

.domain-search input {
  min-width: 0;
  flex: 1;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #222229;
  font-size: 19px;
  font-weight: 500;
}

.domain-search input::placeholder {
  color: #6E6E76;
  opacity: 1;
}

.domain-search button {
  width: 186px;
  height: 58px;
  border: 0;
  border-radius: 10px;
  background: var(--purple);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.trial-copy {
  color: var(--white);
  font-size: 19px;
  line-height: 1.34;
  font-weight: 500;
  letter-spacing: -.2px;
  white-space: nowrap;
}

.trial-copy strong {
  display: inline;
  font-weight: 900;
}

.trial-copy a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.hero {
  position: relative;
  height: 592px;
  margin-top: 20px;
  border-radius: 17px;
  overflow: hidden;
  background-image: url("assets/hero-bg-clean2.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.09) 42%, rgba(0,0,0,.01) 100%),
    linear-gradient(0deg, rgba(0,0,0,.22), rgba(0,0,0,.10));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-left: 67px;
  padding-top: 140px;
}

.hero h1 {
  margin: 0;
  max-width: 660px;
  color: var(--white);
  font-size: 63px;
  line-height: 1.24;
  font-weight: 500;
  letter-spacing: -2.8px;
}

.hero p {
  margin: 30px 0 29px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -.45px;
}

.start-button {
  display: inline-grid;
  place-items: center;
  width: 207px;
  height: 57px;
  border-radius: 8px;
  background: #fff;
  color: #161618;
  font-size: 19px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--white);
  font-size: 21px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.25px;
}

.guarantee svg {
  flex: 0 0 auto;
}

.pause-control {
  position: absolute;
  right: 21px;
  bottom: 21px;
  z-index: 2;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(28, 28, 29, .54);
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0,0,0,.18);
}

.content-section {
  margin-top: 34px;
  background: var(--soft-gray);
  color: var(--ink);
  min-height: 920px;
  padding: 35px 0 54px;
}

.promo-wrap {
  width: min(1818px, calc(100% - 180px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.promo-card {
  position: relative;
  height: 368px;
  border-radius: 17px;
  color: #fff;
  overflow: hidden;
  padding: 51px 44px 45px;
  background: #673DE6;
}

.plans-card {
  background:
    linear-gradient(119deg, rgba(255,255,255,.14) 0 31%, transparent 31% 100%),
    linear-gradient(116deg, transparent 0 46%, rgba(255,255,255,.09) 46% 63%, transparent 63% 100%),
    linear-gradient(110deg, #8B7BFA 0%, #724CEF 50%, #673DE6 100%);
}

.vibe-card {
  background: #673DE6;
}

.promo-arrow {
  position: absolute;
  right: 48px;
  top: 47px;
  font-size: 39px;
  line-height: 1;
  font-weight: 400;
}

.promo-card h2 {
  margin: 0 0 22px;
  font-size: 41px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -1.7px;
}

.promo-card p {
  margin: 0;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -.35px;
}

.price-copy,
.try-copy {
  position: absolute;
  left: 44px;
  bottom: 49px;
  display: grid;
  gap: 2px;
}

.price-copy span,
.try-copy span {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 500;
}

.price-copy strong,
.try-copy strong {
  font-size: 33px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -1.1px;
}

.price-copy small {
  font-size: 23px;
  letter-spacing: -.5px;
}

.trust-block {
  text-align: center;
  padding-top: 145px;
}

.trusted-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 17px;
  border-radius: 999px;
  background: #DEDCFF;
  color: #202027;
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
}

.trust-block h2 {
  margin: 52px 0 58px;
  font-size: clamp(48px, 4.7vw, 75px);
  line-height: 1.14;
  font-weight: 500;
  letter-spacing: -3.8px;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 20px;
  line-height: 1;
  color: #16161A;
}

.rating-row > strong {
  font-weight: 800;
}

.star-boxes {
  display: inline-flex;
  gap: 3px;
}

.star-boxes span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  background: #00B67A;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.star-boxes .half {
  position: relative;
  overflow: hidden;
}

.star-boxes .half::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 33%;
  height: 100%;
  background: #D7DCE1;
}

.rating-row a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.trustpilot span {
  color: #00B67A;
  font-size: 29px;
  line-height: .8;
}

.testimonial-rail {
  margin-top: 95px;
  display: grid;
  grid-template-columns: 360px minmax(560px, 820px) minmax(560px, 820px);
  gap: 28px;
  transform: translateX(-196px);
  width: calc(100% + 196px);
}

.testimonial-card {
  position: relative;
  height: 536px;
  border-radius: 18px;
  background: #fff;
  color: #202027;
  padding: 43px 43px 44px;
  overflow: hidden;
}

.testimonial-card p {
  margin: 42px 0 31px;
  max-width: 710px;
  font-size: 31px;
  line-height: 1.32;
  font-weight: 500;
  letter-spacing: -1.1px;
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 11px;
  display: grid;
  place-items: center;
}

.waves-icon {
  background: linear-gradient(180deg, #8D72F1 0%, #4E2BB3 100%);
}

.builder-icon {
  background: #C8FF00;
}

.green-icon {
  background: #C8FF00;
  color: #101012;
  font-size: 30px;
}

.tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tags span {
  display: inline-grid;
  place-items: center;
  min-height: 39px;
  padding: 0 18px;
  border-radius: 999px;
  background: #F3F3F5;
  color: #202027;
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
}

.author {
  position: absolute;
  left: 43px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.author img,
.avatar-placeholder {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #D9DEE4;
}

.author div {
  display: grid;
  gap: 5px;
}

.author strong {
  color: #202027;
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.6px;
}

.author span {
  color: #74747D;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
}

.clipped-card {
  padding-left: 260px;
}

.clipped-card p {
  width: 490px;
}

.ghost-author {
  left: 260px;
}

@media (max-width: 1280px) {
  .promo-wrap {
    width: calc(100% - 70px);
  }

  .testimonial-rail {
    transform: none;
    width: calc(100% - 70px);
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
  }

  .clipped-card {
    display: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --page-left: 22px;
    --page-right: 22px;
  }

  .site-header {
    height: auto;
    padding-bottom: 22px;
  }

  .header-inner {
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    margin: 0;
    gap: 18px;
    flex-wrap: wrap;
  }

  .header-actions {
    gap: 18px;
  }

  .search-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trial-copy {
    white-space: normal;
  }

  .hero {
    height: 560px;
    background-size: cover;
  }

  .hero-content {
    padding-left: 34px;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(46px, 7vw, 63px);
  }

  .promo-wrap {
    grid-template-columns: 1fr;
  }

  .trust-block h2 {
    letter-spacing: -2.2px;
  }
}

@media (max-width: 720px) {
  .brand {
    width: auto;
    min-width: 0;
  }

  .brand span {
    font-size: 18px;
  }

  .domain-search {
    height: auto;
    min-height: 75px;
    padding-right: 8px;
  }

  .domain-search button {
    width: 120px;
  }

  .hero {
    min-height: 590px;
    height: auto;
  }

  .hero-content {
    padding: 70px 24px 110px;
  }

  .hero h1 {
    font-size: 43px;
    letter-spacing: -1.8px;
  }

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

  .guarantee {
    align-items: flex-start;
    font-size: 18px;
  }

  .content-section {
    padding-top: 28px;
  }

  .promo-wrap {
    width: calc(100% - 34px);
  }

  .promo-card {
    height: 310px;
    padding: 32px 28px;
  }

  .promo-card h2 {
    font-size: 34px;
  }

  .promo-card p,
  .price-copy span,
  .try-copy span {
    font-size: 18px;
  }

  .price-copy,
  .try-copy {
    left: 28px;
    bottom: 34px;
  }

  .trust-block {
    padding-top: 90px;
  }

  .trust-block h2 {
    margin: 36px 0 42px;
    font-size: 44px;
    letter-spacing: -1.8px;
  }

  .rating-row {
    flex-wrap: wrap;
    font-size: 17px;
    gap: 10px;
  }

  .testimonial-rail {
    width: calc(100% - 34px);
    margin-top: 70px;
  }

  .testimonial-card {
    min-height: 500px;
    height: auto;
    padding: 34px 28px 140px;
  }

  .testimonial-card p {
    font-size: 24px;
  }

  .author {
    left: 28px;
    bottom: 40px;
  }
}

/* Added content sections */
.testimonial-rail--more {
  margin-top: 32px;
  transform: translateX(-82px);
  grid-template-columns: 490px minmax(560px, 820px) minmax(560px, 820px);
}

.wordpress-icon {
  background: #100B2D;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 33px;
  line-height: 1;
  font-weight: 700;
  border-radius: 10px;
}

.watch-video {
  position: absolute;
  right: 39px;
  bottom: 41px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #673DE6;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
}

.watch-video span {
  font-size: 18px;
}

.press-logos {
  width: min(1400px, calc(100% - 180px));
  margin: 122px auto 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #747886;
  opacity: .95;
}

.press-logos span {
  display: inline-flex;
  align-items: center;
  color: #747886;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  white-space: nowrap;
}

.logo-tech {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -2px !important;
}

.logo-wire {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
}

.logo-wire::before {
  content: 'T';
  font-size: 18px;
  margin-right: 2px;
  transform: translateY(-1px);
}

.logo-wired {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  letter-spacing: 8px !important;
  border: 0;
}

.logo-cnet {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  letter-spacing: -2px !important;
}

.logo-forbes {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 38px;
  font-weight: 800 !important;
}

.logo-pc {
  width: 42px;
  height: 52px;
  border: 3px solid #747886;
  display: inline-flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  letter-spacing: -2px !important;
  line-height: .74 !important;
}

.logo-pc small {
  display: block;
  font-size: 5px;
  letter-spacing: 0;
  margin-top: 3px;
}

.build-section {
  background: #fff;
  color: #17171C;
  padding: 134px 0 0;
}

.build-intro {
  text-align: center;
  padding-top: 26px;
}

.section-pill,
.soft-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #DFDEFF;
  color: #17171C;
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.15px;
}

.soft-pill {
  background: #F2F2F4;
  min-height: 32px;
  padding: 0 16px;
  font-size: 16px;
}

.build-intro h2 {
  margin: 52px 0 0;
  font-size: clamp(52px, 5vw, 74px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -4px;
}

.feature-row {
  width: min(1458px, calc(100% - 176px));
  margin: 118px auto 0;
  display: grid;
  grid-template-columns: minmax(520px, 664px) minmax(560px, 1fr);
  gap: 90px;
  align-items: center;
}

.feature-row--first {
  margin-top: 96px;
}

.feature-media {
  width: 100%;
}

.feature-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.feature-copy {
  padding-top: 5px;
  min-width: 0;
}

.feature-copy h3 {
  margin: 28px 0 24px;
  max-width: 760px;
  color: #202027;
  font-size: clamp(46px, 4.25vw, 63px);
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: -3.4px;
}

.feature-copy p {
  margin: 0 0 49px;
  max-width: 805px;
  color: #202027;
  font-size: 22px;
  line-height: 1.42;
  font-weight: 500;
  letter-spacing: -.45px;
}

.feature-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  border-bottom: 1px solid #D9D9DE;
  color: #202027;
  font-size: 31px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -1.1px;
}

.feature-link span {
  margin-left: 20px;
  font-size: 31px;
  line-height: 1;
}

.feature-links {
  display: grid;
}

.dark-features {
  margin-top: 197px;
  background: #0F0926;
  color: #fff;
  padding: 126px 0 116px;
}

.dark-feature-grid {
  width: min(1460px, calc(100% - 176px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  position: relative;
}

.dark-feature-grid::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,.22);
  transform: translateX(-48px);
}

.dark-feature-panel {
  position: relative;
  min-height: 650px;
}

.dark-feature-panel:nth-child(2) {
  padding-left: 0;
}

.feature-symbol {
  position: relative;
  width: 85px;
  height: 85px;
  margin-bottom: 48px;
}

.feature-symbol i {
  position: absolute;
  display: block;
  background: #7445F2;
}

.power-symbol i:nth-child(1) {
  width: 27px;
  height: 27px;
  left: 26px;
  top: 0;
}

.power-symbol i:nth-child(2) {
  width: 27px;
  height: 54px;
  left: 26px;
  top: 27px;
  background: #B3A6FF;
}

.power-symbol i:nth-child(3) {
  width: 27px;
  height: 27px;
  left: 0;
  top: 27px;
  background: #B3A6FF;
}

.power-symbol i:nth-child(4) {
  width: 27px;
  height: 27px;
  left: 53px;
  top: 27px;
}

.power-symbol::after {
  content: '';
  position: absolute;
  width: 35px;
  height: 35px;
  left: 27px;
  top: 27px;
  background: #0F0926;
  transform: rotate(45deg);
  transform-origin: center;
}

.growth-symbol i:nth-child(1) {
  width: 59px;
  height: 27px;
  left: 0;
  top: 0;
}

.growth-symbol i:nth-child(2) {
  width: 27px;
  height: 59px;
  left: 59px;
  top: 27px;
}

.growth-symbol i:nth-child(3) {
  width: 27px;
  height: 27px;
  left: 0;
  top: 59px;
  background: #B3A6FF;
}

.growth-symbol::after {
  content: '';
  position: absolute;
  width: 38px;
  height: 38px;
  right: 13px;
  top: 14px;
  background: #0F0926;
  transform: rotate(45deg);
}

.dark-feature-panel h2 {
  margin: 0 0 95px;
  color: #fff;
  font-size: clamp(40px, 3.5vw, 52px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -2.1px;
}

.accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.accordion-title h3 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -.9px;
}

.accordion-title span {
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-weight: 300;
}

.accordion-block p {
  margin: 26px 0 28px;
  max-width: 690px;
  color: #D3CFE3;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -.35px;
}

.accordion-block a {
  color: #A797FF;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
}

.is-collapsed {
  margin-top: 51px;
  padding-top: 27px;
  border-top: 1px solid rgba(255,255,255,.75);
}

@media (max-width: 1280px) {
  .testimonial-rail--more {
    transform: none;
    width: calc(100% - 70px);
    grid-template-columns: 1fr;
  }

  .press-logos,
  .feature-row,
  .dark-feature-grid {
    width: calc(100% - 70px);
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .dark-feature-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .dark-feature-grid::before {
    display: none;
  }

  .dark-feature-panel {
    min-height: 0;
  }
}

@media (max-width: 800px) {
  .press-logos {
    width: calc(100% - 40px);
    margin: 76px auto 52px;
    flex-wrap: wrap;
    gap: 32px 46px;
    justify-content: center;
  }

  .build-section {
    padding-top: 88px;
  }

  .build-intro h2 {
    margin-top: 34px;
    font-size: 44px;
    letter-spacing: -2px;
  }

  .feature-row,
  .dark-feature-grid {
    width: calc(100% - 34px);
  }

  .feature-copy h3 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }

  .feature-copy p {
    font-size: 18px;
  }

  .feature-link {
    font-size: 24px;
  }

  .dark-features {
    margin-top: 100px;
    padding: 82px 0 80px;
  }

  .dark-feature-panel h2 {
    margin-bottom: 58px;
  }

  .accordion-block p {
    font-size: 18px;
  }
}

/* Continued content sections */
.stats-grid {
  width: min(1665px, calc(100% - 176px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-card {
  min-height: 312px;
  border-radius: 18px;
  overflow: hidden;
  padding: 48px 41px 43px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10) 0 46%, rgba(255,255,255,0) 46% 100%),
    linear-gradient(180deg, #7044F0 0%, #6842E8 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 -2px 0 rgba(255,255,255,.18);
}

.stat-card strong {
  display: block;
  font-size: clamp(70px, 7vw, 107px);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -6px;
}

.stat-card span {
  display: block;
  color: #fff;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -.25px;
}

.ai-tools-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 95% 42% at 50% 44%, #ffffff 0%, #ffffff 42%, rgba(255,255,255,.92) 54%, rgba(178,152,255,.72) 72%, rgba(74,45,127,.78) 86%, #0F0926 100%);
  color: #17171C;
  padding: 405px 0 102px;
}

.ai-tools-intro {
  text-align: center;
  position: relative;
  z-index: 1;
}

.white-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 17px;
  border-radius: 999px;
  background: #fff;
  color: #17171C;
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  box-shadow: 0 1px 12px rgba(12, 7, 38, .04);
}

.ai-tools-intro h2 {
  margin: 28px 0 46px;
  color: #17171C;
  font-size: clamp(76px, 7.3vw, 112px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -7px;
}

.ai-tools-intro p {
  margin: 0 auto 48px;
  color: #17171C;
  max-width: 1010px;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -.35px;
}

.purple-cta {
  display: inline-grid;
  place-items: center;
  width: 258px;
  height: 67px;
  border-radius: 9px;
  background: #673DE6;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.ai-tools-visual {
  width: min(1684px, calc(100% - 184px));
  margin: 144px auto 0;
  border-radius: 0;
  overflow: hidden;
}

.ai-tools-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.ai-benefits {
  background: #fff;
  color: #17171C;
  padding: 110px 80px 133px;
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 82px;
  text-align: center;
}

.ai-benefits article {
  max-width: 560px;
  margin: 0 auto;
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 10px;
  background: #673DE6;
  margin-bottom: 49px;
}

.ai-benefits h3 {
  margin: 0 0 23px;
  color: #202027;
  font-size: 31px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -1.1px;
}

.ai-benefits p {
  margin: 0 auto;
  color: #202027;
  max-width: 520px;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -.38px;
}

.kodee-section {
  background: #0F0926;
  color: #fff;
  padding: 167px 0 110px;
}

.kodee-inner {
  width: min(1800px, calc(100% - 176px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(680px, 890px);
  gap: 86px;
  align-items: center;
}

.kodee-copy {
  padding-top: 26px;
}

.award-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 76px;
  color: #D9D5EA;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
}

.award-row img {
  width: 52px;
  height: auto;
  object-fit: contain;
}

.kodee-copy h2 {
  margin: 0 0 31px;
  color: #fff;
  font-size: clamp(54px, 5vw, 69px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -3.8px;
}

.kodee-copy p {
  margin: 0;
  max-width: 770px;
  color: #BFB9CE;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -.25px;
}

.kodee-copy a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.kodee-art img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.email-section {
  background: #F4F4F6;
  color: #17171C;
  padding: 151px 0 118px;
}

.email-intro {
  text-align: center;
}

.email-intro h2 {
  margin: 56px 0 96px;
  color: #17171C;
  font-size: clamp(58px, 5.8vw, 82px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -4.6px;
}

.email-cards {
  width: min(1824px, calc(100% - 184px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.email-card {
  min-height: 380px;
  border-radius: 18px;
  background: #fff;
  padding: 69px 66px 58px;
  overflow: hidden;
}

.email-card h3 {
  margin: 37px 0 18px;
  max-width: 740px;
  color: #202027;
  font-size: clamp(38px, 3.4vw, 54px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -2.4px;
}

.email-card p {
  margin: 0 0 40px;
  color: #686872;
  max-width: 620px;
  font-size: 21px;
  line-height: 1.38;
  font-weight: 500;
}

.email-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  border-bottom: 1px solid #DADAE0;
  color: #202027;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.7px;
}

@media (max-width: 1280px) {
  .stats-grid,
  .ai-tools-visual,
  .kodee-inner,
  .email-cards {
    width: calc(100% - 70px);
  }

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

  .kodee-inner {
    grid-template-columns: 1fr;
  }

  .kodee-art {
    max-width: 900px;
  }
}

@media (max-width: 900px) {
  .ai-tools-section {
    padding-top: 190px;
  }

  .ai-tools-intro h2 {
    font-size: 58px;
    letter-spacing: -3px;
  }

  .ai-tools-intro p br {
    display: none;
  }

  .ai-tools-visual {
    width: calc(100% - 34px);
    margin-top: 70px;
  }

  .ai-benefits,
  .email-cards {
    grid-template-columns: 1fr;
  }

  .ai-benefits {
    padding: 82px 34px 88px;
    gap: 62px;
  }

  .email-cards {
    width: calc(100% - 34px);
  }

  .email-card {
    padding: 42px 30px 42px;
  }
}

@media (max-width: 700px) {
  .stats-grid {
    width: calc(100% - 34px);
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 230px;
  }

  .kodee-section {
    padding: 90px 0 80px;
  }

  .kodee-inner {
    width: calc(100% - 34px);
    gap: 40px;
  }

  .kodee-copy h2,
  .email-intro h2 {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .award-row {
    margin-bottom: 46px;
  }
}

/* Final content additions: email cards, inspiration, pricing, CTA, footer */
.email-section {
  padding: 151px 0 0;
}

.email-cards {
  align-items: stretch;
}

.email-card {
  position: relative;
  min-height: 1008px;
  border-radius: 18px;
  background: #fff;
  padding: 69px 66px 0;
  overflow: hidden;
}

.email-card h3 {
  margin: 37px 0 30px;
  max-width: 760px;
  color: #202027;
  font-size: clamp(42px, 3.6vw, 55px);
  line-height: 1.14;
  font-weight: 500;
  letter-spacing: -2.6px;
}

.email-card p {
  margin: 0 0 27px;
  color: #202027;
  max-width: 770px;
  font-size: 21px;
  line-height: 1.42;
  font-weight: 500;
  letter-spacing: -.35px;
}

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

.check-list li {
  position: relative;
  padding-left: 43px;
  color: #202027;
  font-size: 21px;
  line-height: 1.24;
  font-weight: 500;
  letter-spacing: -.25px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 3px;
  top: -1px;
  color: #673DE6;
  font-weight: 700;
}

.text-cta {
  display: inline-flex !important;
  align-items: center;
  min-height: 0 !important;
  margin-top: 39px;
  border: 0 !important;
  color: #673DE6 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.email-visual {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  display: block;
}

.made-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 42% at 50% 70%, rgba(102, 61, 230, .55) 0%, rgba(102,61,230,.24) 43%, rgba(15,9,38,0) 71%),
    #0F0926;
  color: #fff;
  min-height: 1042px;
  padding: 137px 0 0;
}

.made-intro {
  position: relative;
  z-index: 1;
  text-align: center;
}

.made-pill {
  background: #E6E3FF;
  color: #17171C;
}

.made-intro h2 {
  margin: 59px 0 26px;
  color: #fff;
  font-size: clamp(58px, 5.6vw, 78px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -4.6px;
}

.made-intro p {
  margin: 0 auto 53px;
  color: #fff;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -.3px;
}

.made-button {
  width: 258px;
  height: 67px;
  font-size: 21px;
}

.made-gallery {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  transform: translateX(-50%);
  overflow: hidden;
}

.made-gallery img {
  display: block;
  width: 100%;
  min-width: 1700px;
  max-width: none;
  height: auto;
  opacity: 1;
}

.pricing-section {
  background: #F4F4F6;
  color: #17171C;
  padding: 145px 0 88px;
}

.pricing-intro {
  text-align: center;
}

.pricing-intro h2 {
  margin: 58px 0 71px;
  color: #17171C;
  font-size: clamp(58px, 5.5vw, 78px);
  line-height: 1.13;
  font-weight: 500;
  letter-spacing: -4.7px;
}

.pricing-perks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 61px;
  margin-bottom: 72px;
  color: #202027;
  font-size: 21px;
  line-height: 1;
  font-weight: 500;
}

.pricing-perks span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.pricing-perks svg {
  color: #686872;
  flex: 0 0 auto;
}

.pricing-grid {
  width: min(1558px, calc(100% - 240px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: start;
}

.price-card {
  position: relative;
  border-radius: 18px;
  background: #fff;
  color: #202027;
  padding: 75px 35px 55px;
  min-height: 704px;
  overflow: hidden;
}

.price-card.is-popular {
  padding-top: 78px;
  border: 3px solid #7B62F6;
  box-shadow: 0 0 0 0 #7B62F6;
}

.popular-bar {
  position: absolute;
  left: -3px;
  right: -3px;
  top: -3px;
  height: 61px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #8066F6, #7047ED);
  color: #fff;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
}

.discount {
  position: absolute;
  right: 35px;
  top: 35px;
  display: inline-grid;
  place-items: center;
  min-height: 29px;
  padding: 0 13px;
  border-radius: 9px;
  background: #F1EDFF;
  color: #673DE6;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
}

.is-popular .discount {
  top: 77px;
}

.price-card h3 {
  margin: 0 0 11px;
  color: #202027;
  font-size: 29px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.6px;
}

.plan-subtitle {
  margin: 0 0 62px;
  min-height: 44px;
  color: #202027;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.price-block {
  margin-bottom: 36px;
}

.old-price {
  display: block;
  color: #7B7B85;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 10px;
}

.price-block strong {
  display: block;
  color: #202027;
  font-size: 47px;
  line-height: .9;
  font-weight: 900;
  letter-spacing: -1.6px;
}

.price-block small {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.4px;
}

.choose {
  display: grid;
  place-items: center;
  height: 66px;
  border-radius: 8px;
  border: 2px solid #673DE6;
  color: #673DE6;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.choose.solid {
  background: #673DE6;
  color: #fff;
}

.renew {
  margin: 25px 0 33px;
  min-height: 48px;
  color: #6F6F78;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 500;
}

.renew strong {
  font-weight: 800;
}

.feature-list {
  list-style: none;
  padding: 33px 0 0;
  margin: 0;
  display: grid;
  gap: 18px;
  border-top: 1px solid #DADAE1;
}

.feature-list li {
  position: relative;
  padding-left: 32px;
  color: #202027;
  font-size: 19px;
  line-height: 1.22;
  font-weight: 500;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  color: #5D5E67;
  font-weight: 700;
  text-align: center;
}

.feature-list .globe::before { content: '◎'; }
.feature-list .waves::before { content: '≋'; font-size: 24px; top: -6px; }
.feature-list .database::before { content: '▤'; }
.feature-list .mail::before { content: '✉'; }

.price-card h4 {
  margin: 31px 0 18px;
  color: #202027;
  font-size: 19px;
  line-height: 1;
  font-weight: 800;
}

.price-checks {
  gap: 16px;
}

.price-checks li {
  padding-left: 32px;
  font-size: 18px;
  line-height: 1.32;
}

.price-checks li::before {
  left: 3px;
  color: #00A661;
}

.price-checks em {
  float: right;
  margin-left: 8px;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 9px;
  background: #EAF8F1;
  color: #008C4A;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.all-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  color: #673DE6;
  margin: 48px auto 31px;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.pricing-note {
  margin: 0 auto;
  max-width: 1120px;
  text-align: center;
  color: #686872;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 500;
}


.faq-section {
  background: #F4F4F6;
  color: #202027;
  padding: 104px 0 112px;
}

.faq-intro {
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto 44px;
  text-align: center;
}

.faq-intro h2 {
  margin: 22px 0 0;
  color: #202027;
  font-size: clamp(48px, 5.2vw, 86px);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -4.8px;
}

.faq-grid {
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.faq-grid article {
  min-height: 212px;
  padding: 34px 34px 32px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(24, 24, 29, .06);
}

.faq-grid h3 {
  margin: 0 0 15px;
  color: #202027;
  font-size: 25px;
  line-height: 1.16;
  letter-spacing: -.7px;
}

.faq-grid p {
  margin: 0;
  color: #5E5E67;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.plan-cta {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background: #673DE6;
  color: #fff;
}

.plan-cta::before {
  content: '';
  position: absolute;
  top: -162px;
  right: -16vw;
  width: 1040px;
  height: 805px;
  background: #452092;
  clip-path: polygon(22% 0, 100% 0, 100% 44%, 77% 44%, 100% 72%, 100% 100%, 31% 100%, 13% 78%, 41% 78%, 16% 48%, 0 48%, 0 20%, 39% 20%);
  opacity: .86;
}

.plan-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.03) 0 28%, transparent 28% 100%);
  pointer-events: none;
}

.plan-cta-inner {
  position: relative;
  z-index: 1;
  width: min(1824px, calc(100% - 184px));
  margin: 0 auto;
  padding: 94px 0 78px;
}

.plan-cta h2 {
  margin: 0 0 35px;
  max-width: 780px;
  color: #fff;
  font-size: clamp(64px, 6.6vw, 104px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -7px;
}

.plan-cta p {
  margin: 0 0 150px;
  color: #fff;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 500;
}

.plan-button {
  width: 248px;
  height: 66px;
  color: #17171C;
  font-size: 20px;
}

.site-footer {
  background: #F4F4F6;
  color: #202027;
  padding: 82px 0 42px;
}

.footer-grid {
  width: min(1824px, calc(100% - 184px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 1fr 1.16fr 1fr .9fr .9fr;
  gap: 56px;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-grid h3 {
  margin: 0 0 5px;
  color: #202027;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.footer-grid a {
  color: #202027;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 500;
}

.footer-bottom {
  width: min(1824px, calc(100% - 184px));
  margin: 70px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #202027;
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 2.2px;
}

.footer-brand svg {
  color: #202027;
}

.payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.payments span {
  display: inline-grid;
  place-items: center;
  height: 55px;
  min-width: 82px;
  padding: 0 12px;
  border: 1px solid #D5D5DD;
  border-radius: 6px;
  background: #fff;
  color: #173A8A;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.payments span:nth-child(2) { color: #F05123; font-size: 26px; letter-spacing: -9px; padding-right: 20px; }
.payments span:nth-child(4) { color: #202027; font-size: 14px; }
.payments span:nth-child(5) { color: #169C58; }
.payments span:nth-child(6) { color: #2861A6; font-size: 12px; }
.payments a { color: #673DE6; font-weight: 900; margin-left: 4px; }

.social-and-legal {
  display: grid;
  justify-items: end;
  gap: 44px;
}

.socials {
  display: flex;
  gap: 17px;
}

.socials a {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: #202027;
  color: #F4F4F6;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
}

.legal-links {
  display: flex;
  gap: 31px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.legal-links a {
  color: #202027;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}

.copyright-row {
  width: min(1824px, calc(100% - 184px));
  margin: 83px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  color: #202027;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 500;
}

.copyright-row p {
  margin: 0;
}

@media (max-width: 1280px) {
  .pricing-grid,
  .pricing-section .pricing-note,
  .plan-cta-inner,
  .footer-grid,
  .footer-bottom,
  .copyright-row {
    width: calc(100% - 70px);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

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

  .footer-bottom,
  .copyright-row {
    flex-direction: column;
  }

  .social-and-legal {
    justify-items: start;
  }

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

@media (max-width: 900px) {
  .email-section {
    padding-top: 100px;
  }

  .email-card {
    min-height: 840px;
  }

  .email-visual {
    width: 116%;
    left: -8%;
  }

  .made-section {
    min-height: 850px;
    padding-top: 92px;
  }

  .made-intro h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .made-gallery img {
    min-width: 1220px;
    transform: translateX(-25%);
  }

  .pricing-perks {
    flex-direction: column;
    gap: 20px;
  }

  .faq-intro h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .plan-cta h2 {
    font-size: 52px;
    letter-spacing: -2.8px;
  }

  .plan-cta p {
    margin-bottom: 70px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}

@media (max-width: 620px) {
  .email-card {
    min-height: 820px;
    padding: 42px 30px 0;
  }

  .email-card h3 {
    font-size: 36px;
    letter-spacing: -1.6px;
  }

  .email-card p,
  .check-list li {
    font-size: 17px;
  }

  .pricing-grid,
  .faq-intro,
  .faq-grid,
  .plan-cta-inner,
  .footer-grid,
  .footer-bottom,
  .copyright-row {
    width: calc(100% - 34px);
  }

  .price-card,
  .price-card.is-popular {
    padding-left: 24px;
    padding-right: 24px;
  }

  .discount {
    right: 24px;
  }

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

  .socials,
  .legal-links,
  .payments {
    gap: 12px;
  }
}
