/* ==========================================================================
   Kavaro Marketing Site — Design tokens from Figma
   ========================================================================== */

:root {
  --navy: #2a2e62;
  --coral: #e35a61;
  --white: #fcfcfc;
  --gray: #4f5365;
  --gray-light: #a7a9be;
  --gray-border: #dedede;
  --footer-bg: rgba(42, 46, 98, 0.5);
  --footer-label: #e7ebff;
  --page-bg-end: #d2d3dd;
  --max-width: 1440px;
  --container-padding: 108px;
  --font: "Roboto", system-ui, sans-serif;
  --font-display: "Agdasima", "Roboto", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: var(--navy);
  background-color: var(--page-bg-end);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main {
  background-color: transparent;
  background-image: url("assets/Background.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.text-accent {
  color: var(--coral);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.92;
}

.btn--large:hover,
.btn--small:hover {
  background: linear-gradient(to right, #2A2E62, #839EFF);
  opacity: 1;
}

.btn--small {
  padding: 7px 26px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  height: 39px;
}

.btn--large {
  padding: 12px 25px;
  font-size: 22px;
  height: 60px;
}

.btn__arrow {
  font-size: 20px;
  line-height: 1;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 19px 0;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .container {
  padding-left: 177px;
  padding-right: 180px;
}

.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.nav__logo-img {
  display: block;
  height: 45px;
  width: auto;
  max-width: none;
}

.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.nav__login {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

.nav__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  padding: 0;
  border: 1px solid var(--navy);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav__menu-toggle-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
}

.nav__menu-toggle-icon::before,
.nav__menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
}

.nav__menu-toggle-icon::before {
  top: -6px;
}

.nav__menu-toggle-icon::after {
  top: 6px;
}

.nav--open .nav__menu-toggle-icon {
  background: transparent;
}

.nav--open .nav__menu-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav--open .nav__menu-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

/* Industries Dropdown */
.nav__industries a {
  cursor: pointer;
}

.nav__dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fbfbfb;
  border-top: 0.5px solid rgba(0, 0, 0, 0.12);
  padding: 40px 0;
  z-index: 99;
  justify-content: center;
}

.nav__dropdown-panel.is-visible {
  display: flex;
}

.nav__dropdown-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.nav__dropdown-col {
  width: 250px;
}

.nav__dropdown-col h3 {
  margin: 0 0 16px;
}

.nav__dropdown-col h3 a {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__dropdown-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav__dropdown-col ul a {
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.15s;
}

.nav__dropdown-col a:hover {
  opacity: 0.65;
}

.nav__dropdown-arrow {
  width: 16px;
  height: 16px;
  display: inline-block;
  flex-shrink: 0;
}

.hero-stack {
  position: relative;
  overflow: hidden;
  background: transparent;
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: visible;
  background: transparent;
}

.hero__grid {
  position: absolute;
  top: 288px;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(var(--gray-border) 1px, transparent 1px) 153px 0 / calc(100% - 306px) 80px,
    linear-gradient(90deg, var(--gray-border) 1px, transparent 1px) 153px 0 / 1px 100%,
    linear-gradient(90deg, transparent calc(100% - 153px), var(--gray-border) calc(100% - 153px)) 0 0 / 100% 100%;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 705px minmax(0, 1fr);
  gap: 0;
  align-items: start;
  max-width: none;
  padding-left: 182px;
  padding-right: 0;
}

.hero__title {
  font-size: 54px;
  font-weight: 900;
  line-height: 55px;
  letter-spacing: 0;
  margin-bottom: 27px;
}

.hero__subtitle {
  max-width: 574px;
  font-size: 16px;
  line-height: 1.76;
  letter-spacing: 0.8px;
  text-transform: capitalize;
  margin-bottom: 27px;
}

.hero__content {
  padding-top: 98px;
  min-width: 0;
  max-width: 705px;
  position: relative;
  z-index: 2;
}

.hero__content .btn {
  margin-bottom: 60px;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__avatars {
  height: 50px;
  width: auto;
}

.hero__social-proof p {
  font-size: 16px;
  line-height: 1.76;
  text-transform: capitalize;
}

.hero__visual {
  position: relative;
  justify-self: start;
  overflow: visible;
}

.hero__screenshot-frame {
  width: 975px;
  max-width: none;
  border: 10px solid rgba(42, 46, 98, 0.4);
  border-radius: 13px;
  overflow: hidden;
  background: var(--white);
  line-height: 0;
}

.hero__screenshot {
  width: 100%;
  height: auto;
  display: block;
}

/* Clients */
.clients {
  position: relative;
  padding: 54px 0 74px;
  overflow: visible;
  border-top: none;
  background: transparent;
}

.clients__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 76px);
  max-width: 1080px;
}

.clients__logo-cell {
  flex: 1;
  min-width: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.clients__logo {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.95;
}

.clients__logo--oneleft {
  height: 23px;
}

.clients__logo--softwire,
.clients__logo--inv,
.clients__logo--hw {
  height: 24px;
}

.clients__logo--digitas {
  height: 18.5px;
}

/* Story */
.story {
  position: relative;
  background: transparent;
  color: var(--white);
  padding: 128px 0;
}

.story::before {
  content: "";
  position: absolute;
  inset: 0 74px 0 0;
  background: var(--navy);
  pointer-events: none;
}

.story__inner {
  position: relative;
  z-index: 1;
  max-width: 1050px;
}

.story__text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.98px;
  margin-bottom: 0;
}

.story__text > p + p {
  margin-top: 1.5em;
}

.story__founders {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 48px;
}

.story__founder-photos {
  display: flex;
  gap: 16px;
}

.story__founder-photos img {
  width: 50px;
  height: 70px;
  object-fit: cover;
  border-radius: 100px;
  border: 4px solid var(--white);
}

.story__founder-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story__founder-names {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.story__founder-title {
  font-size: 20px;
  color: var(--gray-light);
  margin: 0;
  padding: 0;
}

/* Feature split sections */
.feature-split {
  padding: 100px 0;
  background: transparent;
}

.feature-split__inner {
  display: grid;
  grid-template-columns: 471px minmax(0, 1fr);
  gap: 35px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: 0;
}

.feature-split__content {
  max-width: 471px;
}

.feature-split--reverse .feature-split__inner {
  grid-template-columns: minmax(0, 1fr) 475px;
  padding-left: 0;
  padding-right: var(--container-padding);
}

.feature-split--reverse .feature-split__content {
  max-width: 475px;
}

.section-title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.11px;
  margin-bottom: 32px;
}

.section-title--accent {
  color: var(--coral);
}

.feature-split__lead {
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.55px;
  margin-bottom: 32px;
}

.feature-split__lead strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: -0.72px;
  margin-bottom: 8px;
}

.feature-split__visual {
  position: relative;
}

.feature-split__visual--right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 662px;
  margin-right: calc(-1 * max(0px, (100vw - var(--max-width)) / 2));
}

.feature-split__visual--left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 662px;
  margin-left: calc(-1 * max(0px, (100vw - var(--max-width)) / 2));
}

.feature-split__visual--right .feature-split__image {
  display: block;
  width: 827px;
  max-width: none;
  height: auto;
  border-radius: 24px 0 0 24px;
}

.feature-split__visual--left .feature-split__image {
  display: block;
  width: 763px;
  max-width: none;
  height: auto;
  border-radius: 0 24px 24px 0;
}

.feature-split__gradient {
  position: absolute;
  inset: 0;
  border-radius: 0 24px 24px 0;
  overflow: hidden;
}

.feature-split__visual--left .feature-split__gradient {
  border-radius: 24px 0 0 24px;
}

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

.feature-split__screen {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}

.feature-split__screen--back {
  top: 46px;
  left: 127px;
  width: 85%;
}

.feature-split__screen--front {
  top: 200px;
  left: 50px;
  width: 90%;
}

.feature-split__screen--single {
  top: 93px;
  left: -60px;
  width: 106%;
}

/* Launch section */
.launch {
  padding: 74px 0 100px;
  background: transparent;
}

.launch__title {
  text-align: center;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.1px;
  margin-bottom: 100px;
}

.launch__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 560px));
  justify-content: center;
  gap: 24px;
  max-width: 1144px;
  margin: 0 auto;
}

.launch-card {
  background: var(--navy);
  border: 0.5px solid var(--gray);
  border-radius: 48px;
  padding: 34px 45px 0;
  width: 100%;
  max-width: 560px;
  min-height: 420px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 94px 32px -13px rgba(0, 0, 0, 0.26);
}

.launch-card h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.launch-card p {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  max-width: 375px;
}

.launch-card__visual {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -80px;
  width: 375px;
  opacity: 0.8;
}

.launch-card__visual img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.launch-card__visual--briefs {
  bottom: -70px;
}


/* Projects section */
.projects {
  background: var(--navy);
  color: var(--white);
  padding: 140px 0 104px;
}

.projects__hero {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  gap: 125px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto 80px;
  padding-left: var(--container-padding);
  padding-right: 0;
}

.projects__hero-text {
  max-width: 370px;
}

.projects__intro {
  margin-top: 37px;
}

.projects__intro h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  margin: 0 0 0.5em;
}

.projects__intro p {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.projects__hero-visual {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 440px;
  margin-right: calc(-1 * max(0px, (100vw - var(--max-width)) / 2));
}

.projects__hero-image {
  display: block;
  width: 830px;
  max-width: none;
  height: auto;
  border-radius: 8px;
}

.projects__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
}

.projects-feature h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
  margin: 24px 0 0;
}

.projects-feature p {
  font-size: 20px;
  line-height: 1.35;
  margin-top: 0.5em;
}

.projects-feature__visual {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
}

.projects-feature__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials */
.testimonials {
  position: relative;
  background: var(--navy);
  padding: 32px 0 120px;
  overflow: visible;
}

.testimonials__stage {
  position: relative;
  isolation: isolate;
  padding-top: 48px;
}

.testimonials__title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.28;
  margin: 0 0 80px;
}

.testimonials__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 366px));
  justify-content: center;
  align-items: start;
  gap: 41px;
}

.testimonial-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 366px;
  justify-self: center;
  background: var(--white);
  border-radius: 24px;
  padding: 24px 18px;
  box-shadow: 0 1px 6.5px rgba(0, 0, 0, 0.06);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 16px;
  line-height: 1.3;
}


.testimonial-card__body p {
  font-size: 20px;
  line-height: 1.35;
  color: var(--navy);
  margin: 0;
}

.testimonial-card__body p + p {
  margin-top: 20px;
}

.testimonial-card__body strong {
  font-weight: 700;
}

/* FAQ */
.faq {
  background: #d7d7e0;
  padding: 107px 0;
}

.faq__inner {
  max-width: 1082px;
}

.faq__title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.1px;
  text-align: center;
  color: var(--navy);
  margin-bottom: 48px;
}

.faq__item {
  border-bottom: 1px solid rgba(42, 46, 98, 0.15);
}

.faq__item summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "⌃";
  margin-left: auto;
  font-size: 20px;
  opacity: 0.8;
}

.faq__item[open] summary::after {
  transform: rotate(180deg);
}

.faq__item--open,
.faq__item[open] {
  background: linear-gradient(228deg, #fff 6.8%, #f1f0fb 71.8%);
  border-radius: 8px;
  border-bottom: none;
  margin: 2px 0;
}

.faq__item--open summary,
.faq__item[open] summary {
  color: var(--navy);
}

.faq__number {
  font-size: 20px;
  font-weight: 400;
  min-width: 21px;
}

.faq__answer {
  padding: 0 20px 20px 61px;
  font-size: 20px;
  line-height: 1.35;
  color: var(--navy);
  max-width: none;
}

/* Pricing */
.pricing {
  padding: 0 0 120px;
  background: #d7d7e0;
}

.pricing__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing__title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.1px;
  text-align: center;
  margin: 0 0 39px;
}

.pricing__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 12px 8px 8px;
  border-radius: 32px;
  box-shadow: 0 0 4px rgba(90, 74, 35, 0.1);
  margin: 0 0 39px;
  height: 55px;
  box-sizing: border-box;
}

.pricing__toggle-btn {
  padding: 8px 16px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 20px;
  color: var(--navy);
  border-radius: 24px;
  cursor: pointer;
  line-height: normal;
  transition: background 0.2s, color 0.2s;
}

.pricing__toggle-btn--active {
  background: var(--navy);
  color: var(--white);
}

.pricing__toggle-sub {
  font-size: 14px;
}

.pricing__cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  width: 100%;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  width: 360px;
  min-width: 0;
  flex-shrink: 0;
  min-height: 680px;
  padding: 40px;
  background: white;
  border: 1px solid #e7ebff;
  border-radius: 24px;
  box-shadow: 0 26px 40px rgba(188, 202, 255, 0.13);
  box-sizing: border-box;
}

.pricing-card--lifetime {
  background: var(--navy);
  border-color: var(--navy);
}

.pricing-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.pricing-card__name {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  color: var(--navy);
  letter-spacing: -1px;
  margin: 0;
}

.pricing-card--lifetime .pricing-card__name {
  color: var(--white);
}

.pricing-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1px;
  white-space: nowrap;
  box-sizing: border-box;
}

.pricing-card__badge--outline {
  background: var(--white);
  border: 1px solid var(--navy);
  color: var(--navy);
}

.pricing-card__badge--filled {
  background: var(--white);
  border: 1px solid var(--navy);
  color: var(--navy);
}

.pricing-card__price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 0;
}

.pricing-card__amount {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: normal;
  color: var(--navy);
}

.pricing-card--lifetime .pricing-card__amount {
  color: var(--white);
}

.pricing-card__amount-old {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: normal;
  color: var(--navy);
  text-decoration: line-through;
}

.pricing-card__period {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: var(--navy);
  margin: 8px 0 0;
}

.pricing-card--lifetime .pricing-card__period {
  color: var(--white);
}

.pricing-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  height: 48px;
  flex-shrink: 0;
  padding: 0 44px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  text-align: center;
  margin: 24px 0 0;
  box-sizing: border-box;
  white-space: nowrap;
}

.pricing-card__cta--outline {
  border: 1px solid var(--coral);
  color: var(--navy);
  background: transparent;
}

.pricing-card__cta--filled {
  background: var(--coral);
  border: 1px solid #152c80;
  color: var(--white);
  box-shadow: 0 8px 18px rgba(27, 34, 60, 0.16);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  height: 36px;
  color: var(--navy);
}

.pricing-card--lifetime .pricing-card__features li {
  color: var(--white);
}

.pricing-card__features li::before {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: url("assets/check-navy.svg") center / 18px 13px no-repeat;
  border-radius: 5.6px;
}

.pricing-card--lifetime .pricing-card__features li::before {
  background-image: url("assets/check-white.svg");
}

/* CTA */
.cta {
  padding: 120px 0;
  background-color: var(--navy);
  background-image: url("assets/sign_up_gradient.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 791px;
}

.cta__logo-img {
  display: block;
  height: 44px;
  width: auto;
  margin-bottom: 45px;
}

.cta h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.28;
  margin-bottom: 45px;
}

.cta p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 45px;
  max-width: 791px;
}

/* Free Tools page */
.site-header--static {
  position: relative;
}

.body--gradient {
  background: linear-gradient(180deg, #FCFCFC 0%, #D2D3DD 100%);
  min-height: 100vh;
}

.body--gradient main {
  background-image: none;
}

.body--gradient .main--article,
.body--gradient .article__header,
.body--gradient .article__hero,
.body--gradient .article__body-wrap,
.body--gradient .article__pagination,
.body--gradient .article-promo {
  background: transparent;
}

.tools-hero {
  padding: 80px 0 60px;
  text-align: center;
}

.tools-hero__inner {
  max-width: 800px;
}

.tools-hero__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 12px;
}

.tools-hero__title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
}

.tools-grid {
  padding: 60px 0 120px;
}

.tools-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1136px;
  margin-left: auto;
  margin-right: auto;
}

.tool-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid #e7ebff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06), 0 0 8px rgba(0, 0, 0, 0.04);
}

.tool-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 24px;
  line-height: 1.3;
}

.tool-card__description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray);
  margin: 0 0 24px;
  flex: 1;
}

.tool-card__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--coral);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}

.tool-card__cta:hover {
  background: rgba(227, 90, 97, 0.06);
}

/* Tool detail page */
.main--tool {
  background: transparent;
}

.tool-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.tool-hero__inner {
  max-width: 800px;
}

.tool-hero__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 12px;
}

.tool-hero__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.022px;
  color: var(--navy);
  margin: 0 0 12px;
}

.tool-hero__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.014px;
  color: var(--navy);
  margin: 0;
}

.tool-form-section {
  padding: 0 0 40px;
}

.tool-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tool-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tool-form__label {
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
}

.tool-form__input {
  height: 48px;
  padding: 0 12px;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
}

.tool-form__input::placeholder {
  color: var(--gray-light);
}

.tool-form__input:focus {
  border-color: var(--navy);
}

.tool-form__input--short {
  width: 80px;
}

.tool-form__select-wrap {
  position: relative;
}

.tool-form__select {
  width: 100%;
  height: 48px;
  padding: 0 36px 0 12px;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  color: var(--navy);
  appearance: none;
  outline: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a2e62' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}

.tool-form__select:focus {
  border-color: var(--navy);
}

.tool-form__duration-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tool-form__unit-toggle {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 4px;
  height: 48px;
  box-sizing: border-box;
}

.tool-form__unit-btn {
  padding: 8px 20px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 16px;
  color: var(--navy);
  border-radius: 8px;
  cursor: pointer;
  height: 40px;
  transition: background 0.2s, color 0.2s;
}

.tool-form__unit-btn--active {
  background: var(--navy);
  color: var(--white);
}

.tool-form__actions {
  display: flex;
  justify-content: center;
}

.tool-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 30px;
  border: none;
  border-radius: 12px;
  background: radial-gradient(ellipse at center, #152c80 0%, #18275e 50%, #1b223c 100%);
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.2s;
}

.tool-form__submit:hover {
  opacity: 0.9;
}

.tool-form__textarea {
  width: 100%;
  height: 120px;
  padding: 12px;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  color: var(--navy);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.tool-form__textarea::placeholder {
  color: var(--gray-light);
}

.tool-form__textarea:focus {
  border-color: var(--navy);
}

.tool-form__char-count {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--gray-light);
  text-align: right;
}

.tool-results__card--proposal {
  flex-direction: column;
}

.tool-results__card-header--proposal {
  justify-content: space-between;
  width: 100%;
}

.tool-results__proposal-body {
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy);
}

.tool-results__proposal-body p {
  margin: 0 0 8px;
}

.tool-results__proposal-body ul {
  margin: 0 0 8px;
  padding-left: 24px;
}

.tool-results__proposal-body li {
  margin: 0 0 4px;
}

.tool-plan-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
}

.tool-plan-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: 10px 16px;
  text-align: left;
}

.tool-plan-table thead th:first-child {
  border-radius: 8px 0 0 0;
  width: 80px;
}

.tool-plan-table thead th:last-child {
  border-radius: 0 8px 0 0;
}

.tool-plan-table tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid #e7ebff;
  color: var(--navy);
}

.tool-plan-table tbody tr:last-child td {
  border-bottom: none;
}

/* Tool promo + results */
.tool-results-section {
  padding: 0 0 40px;
}

.tool-promo {
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 20px;
  border-radius: 24px;
  background: conic-gradient(
    from 90deg,
    #7877C6 -14%,
    #AE6994 3%,
    #E35A61 20%,
    #B54F61 27%,
    #874462 34%,
    #583962 41%,
    #413462 45%,
    #2A2E62 48%,
    #3E407B 58%,
    #515394 67%,
    #7877C6 86%,
    #AE6994 103%,
    #E35A61 120%
  );
}

.tool-results + .tool-promo {
  margin-top: 40px;
}

.tool-promo__inner {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 118px;
  text-align: center;
}

.tool-promo__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 12px;
}

.tool-promo__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.022px;
  color: var(--navy);
  margin: 0 0 24px;
}

.tool-promo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  padding: 14px 44px;
  background: var(--coral);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(27, 34, 60, 0.16);
}

.tool-promo__btn:hover {
  opacity: 0.9;
}

.tool-results {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tool-results__title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.022px;
  color: var(--navy);
  margin: 0 0 8px;
  text-align: center;
}

.tool-results__subtitle {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.014px;
  color: var(--navy);
  margin: 0 0 16px;
  text-align: center;
}

.tool-results__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-bottom: 16px;
}

.tool-results__card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid #e7ebff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 26px 40px rgba(188, 202, 255, 0.13);
}

.tool-results__card-body {
  flex: 1;
  min-width: 0;
}

.tool-results__card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.tool-results__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 4px solid var(--navy);
  border-radius: 100px;
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  flex-shrink: 0;
}

.tool-results__card-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.tool-results__card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--navy);
  margin: 0;
}

.tool-results__copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 32px;
  border: 1px solid var(--navy);
  border-radius: 12px;
  background: transparent;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 0.2s;
}

.tool-results__copy-btn:hover {
  background: rgba(42, 46, 98, 0.05);
}

.tool-results__generate-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1px solid var(--navy);
  border-radius: 12px;
  background: transparent;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.2s;
}

.tool-results__generate-more:hover {
  background: rgba(42, 46, 98, 0.05);
}

.tool-results__generate-more svg {
  flex-shrink: 0;
}

.tool-results__error {
  margin: 0 0 24px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(214, 107, 107, 0.12);
  color: var(--navy);
  font-size: 15px;
  line-height: 1.5;
}

.tool-form__submit:disabled,
.tool-results__generate-more:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .tool-promo {
    padding: 12px;
  }

  .tool-promo__inner {
    padding: 30px 24px;
  }

  .tool-promo__title {
    font-size: 28px;
  }

  .tool-promo__btn {
    width: auto;
    padding: 14px 32px;
  }

  .tool-results__title {
    font-size: 28px;
  }

  .tool-results__card {
    flex-direction: column;
    align-items: stretch;
  }

  .tool-results__copy-btn {
    align-self: flex-end;
    font-size: 16px;
    padding: 10px 24px;
  }
}

/* How it works */
.tool-how {
  padding: 40px 0;
}

.tool-how__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tool-how__title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.022px;
  color: var(--navy);
  margin: 0 0 22px;
  text-align: center;
}

.tool-how__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  width: 100%;
}

.tool-how__card {
  background: var(--white);
  border: 1px solid #e7ebff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 26px 40px rgba(188, 202, 255, 0.13);
  min-height: 280px;
}

.tool-how__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 4px solid var(--navy);
  border-radius: 100px;
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 30px;
}

.tool-how__card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 16px;
}

.tool-how__card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--navy);
  margin: 0;
}

/* Tool FAQ */
.tool-faq {
  padding: 40px 0;
}

.tool-faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tool-faq__title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.022px;
  color: var(--navy);
  margin: 0 0 22px;
  text-align: center;
}

.tool-faq__list {
  max-width: 900px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.tool-faq__item {
  border-bottom: 1px solid var(--navy);
  background: transparent;
}

.tool-faq__item[open] {
  background: var(--white);
}

.tool-faq__item:first-child {
  border-radius: 24px 24px 0 0;
}

.tool-faq__item:last-child {
  border-bottom: none;
  border-radius: 0 0 24px 24px;
}

.tool-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  min-height: 60px;
}

.tool-faq__question::-webkit-details-marker {
  display: none;
}

.tool-faq__question::after {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a2e62' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.2s;
}

.tool-faq__item[open] .tool-faq__question::after {
  transform: rotate(180deg);
}

.tool-faq__answer {
  padding: 0 30px 20px;
}

.tool-faq__answer p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--navy);
  margin: 0;
  max-width: 530px;
}

/* More free tools */
.tool-more {
  padding: 40px 0;
}

.tool-more__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tool-more__title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.022px;
  color: var(--navy);
  margin: 0 0 22px;
  text-align: center;
}

.tool-more__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
  max-width: 900px;
  width: 100%;
}

.tool-more__link {
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tool-more__link:hover {
  color: var(--coral);
}

/* Tool CTA */
.tool-cta {
  padding: 40px 0 60px;
}

.tool-cta__card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 24px;
  background: conic-gradient(
    from 90deg,
    #7877C6 -14%,
    #AE6994 3%,
    #E35A61 20%,
    #B54F61 27%,
    #874462 34%,
    #583962 41%,
    #413462 45%,
    #2A2E62 48%,
    #3E407B 58%,
    #515394 67%,
    #7877C6 86%,
    #AE6994 103%,
    #E35A61 120%
  );
}

.tool-cta__inner {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 118px;
  text-align: center;
}

.tool-cta__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 12px;
}

.tool-cta__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 16px;
}

.tool-cta__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.76;
  color: var(--navy);
  text-transform: capitalize;
  margin: 0 0 24px;
}

.tool-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  padding: 14px 44px;
  background: var(--coral);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(27, 34, 60, 0.16);
}

.tool-cta__btn:hover {
  opacity: 0.9;
}

.tool-cta__note {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin: 12px 0 0;
}

/* Tool detail responsive */
@media (max-width: 900px) {
  .tool-how__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .tool-more__grid {
    grid-template-columns: 1fr 1fr;
  }

  .tool-cta__card {
    padding: 12px;
  }

  .tool-cta__inner {
    padding: 30px 24px;
  }

  .tool-cta__btn {
    width: auto;
    padding: 14px 32px;
  }
}

@media (max-width: 600px) {
  .tool-hero__title {
    font-size: 28px;
  }

  .tool-more__grid {
    grid-template-columns: 1fr;
  }

  .tool-faq__question {
    font-size: 16px;
    padding: 16px 20px;
  }

  .tool-faq__answer {
    padding: 0 20px 16px;
  }
}

.site-footer__brand-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__legal {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
}

.site-footer__email {
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .tools-grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tools-grid__list {
    grid-template-columns: 1fr;
  }

  .tools-hero__title {
    font-size: 32px;
  }
}

/* Blog page */
.blog-hero {
  padding: 80px 0 60px;
  text-align: center;
}

.blog-hero__inner {
  max-width: 800px;
}

.blog-hero__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 12px;
}

.blog-hero__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  margin: 0;
}

.blog-grid {
  padding: 30px 0 120px;
}

.blog-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1136px;
  margin: 0 auto;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e7ebff;
  border-radius: 24px;
  box-shadow: 0 26px 40px rgba(188, 202, 255, 0.13);
  overflow: hidden;
  height: 400px;
  transition: border-color 0.2s ease;
}

.blog-card:hover,
.blog-card:focus-within {
  border-color: var(--navy);
}

.blog-card__link-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
  min-height: 0;
}

.blog-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center bottom;
  flex-shrink: 0;
  display: block;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 24px;
}

.blog-card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.28;
  color: var(--navy);
  margin: 0 0 16px;
}

.blog-card__excerpt {
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray);
  margin: 0;
  flex: 1;
  min-height: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  flex-shrink: 0;
}

.blog-card__date {
  font-size: 14px;
  line-height: 32px;
  color: var(--navy);
}

.blog-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.blog-card__arrow img {
  display: block;
  width: 16px;
  height: 16px;
}

.blog-card:hover .blog-card__arrow,
.blog-card:focus-within .blog-card__arrow {
  opacity: 1;
}

@media (max-width: 1200px) {
  .blog-grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid__list {
    grid-template-columns: 1fr;
  }

  .blog-hero__title {
    font-size: 28px;
  }

  .blog-card {
    height: auto;
  }
}

/* Article detail page */
.main--article {
  background-image: none;
  background-color: #d7d7e0;
}

.article__header {
  padding: 80px 0 30px;
  text-align: center;
  background: #d7d7e0;
}

.article__header-inner {
  max-width: 1136px;
}

.article__date {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 12px;
}

.article__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 12px;
}

.article__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--navy);
  margin: 0;
}

.article__hero {
  padding: 24px 0 0;
  background: #d7d7e0;
}

.article__hero .container {
  max-width: calc(1000px + var(--container-padding) * 2);
}

.article__hero-frame {
  border-radius: 24px;
  overflow: hidden;
  background: var(--navy);
  line-height: 0;
}

.article__hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.article__body-wrap {
  padding: 48px 0 48px;
  background: #d7d7e0;
}

.article__body-wrap .container {
  max-width: calc(1000px + var(--container-padding) * 2);
}

.article__body {
  max-width: 600px;
  margin: 0 auto;
}

.article__body p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 24px;
}

.article__body a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article__body h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  margin: 48px 0 16px;
}

.article__body h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  margin: 36px 0 12px;
}

.article__body blockquote {
  max-width: 900px;
  margin: 48px auto;
  padding: 0;
  border: none;
  text-align: center;
}

.article__body blockquote p {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.17;
  color: var(--coral);
  text-transform: uppercase;
  margin: 0;
}

.article__body ul,
.article__body ol {
  padding-left: 24px;
  margin: 0 0 24px;
}

.article__body li {
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 8px;
}

.article__body .article__compare-table {
  max-width: none;
  width: calc(100% + 300px);
  margin-left: -150px;
}

.article__compare-table {
  max-width: 900px;
  margin: 0 auto 32px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
  color: var(--navy);
}

.article__compare-table th,
.article__compare-table td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(42, 46, 98, 0.12);
}

.article__compare-table thead th {
  font-weight: 700;
  font-size: 16px;
  border-bottom: 2px solid var(--navy);
}

.article__compare-table th:first-child,
.article__compare-table td:first-child {
  font-weight: 600;
  width: 22%;
}

.article__compare-table th:nth-child(2),
.article__compare-table td:nth-child(2),
.article__compare-table th:nth-child(3),
.article__compare-table td:nth-child(3) {
  width: 39%;
}

.article__compare-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 900px) {
  .article__body .article__compare-table {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .article__compare-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .article__compare-table th:first-child,
  .article__compare-table td:first-child {
    min-width: 120px;
  }

  .article__compare-table th:nth-child(2),
  .article__compare-table td:nth-child(2),
  .article__compare-table th:nth-child(3),
  .article__compare-table td:nth-child(3) {
    min-width: 200px;
  }
}

.article__pagination {
  padding: 0 0 48px;
  background: #d7d7e0;
}

.article__pagination .container {
  max-width: calc(1000px + var(--container-padding) * 2);
}

.article__pagination-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
  padding: 32px 0;
  border-top: 1px solid var(--navy);
  max-width: 700px;
  margin: 0 auto;
}

.article__pagination-prev,
.article__pagination-next {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  max-width: 300px;
}

.article__pagination-next {
  text-align: right;
  align-items: flex-end;
  margin-left: auto;
}

.article__pagination-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
}

.article__pagination-label img {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.article__pagination-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--coral);
}

/* Article promo block */
.article-promo {
  padding: 0 0 48px;
  background: #d7d7e0;
}

.article-promo .container {
  max-width: calc(1000px + var(--container-padding) * 2);
}

.article-promo__outer {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  background: conic-gradient(
    from 90deg,
    #7877C6 -14%,
    #AE6994 3%,
    #E35A61 20%,
    #864462 34%,
    #2A2E62 48%,
    #525496 68%,
    #7877C6 86%,
    #E35A61 98%
  );
}

.article-promo__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 118px;
  border-radius: 24px;
  background: var(--white);
}

.article-promo__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 12px;
}

.article-promo__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 12px;
}

.article-promo__text {
  font-size: 18px;
  line-height: 1.76;
  text-transform: capitalize;
  color: var(--navy);
  max-width: 725px;
  margin: 0 0 24px;
}

.article-promo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  padding: 14px 44px;
  background: var(--coral);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(27, 34, 60, 0.16);
  transition: opacity 0.2s;
}

.article-promo__cta:hover {
  opacity: 0.92;
}

.article-promo__note {
  font-size: 18px;
  color: var(--navy);
  margin: 16px 0 0;
}

@media (max-width: 768px) {
  .article__title {
    font-size: 28px;
  }

  .article__hero-image {
    height: 240px;
  }

  .article__body blockquote p {
    font-size: 22px;
  }

  .article__pagination-inner {
    flex-direction: column;
    gap: 24px;
  }

  .article__pagination-next {
    text-align: left;
    align-items: flex-start;
    margin-left: 0;
  }

  .article-promo__inner {
    padding: 32px 24px;
  }

  .article-promo__title {
    font-size: 28px;
  }
}

/* Footer */
.site-footer {
  background: var(--navy);
  padding: 30px 0 80px;
  color: var(--white);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer__brand {
  font-size: 20px;
  font-weight: 500;
}

.site-footer__columns {
  display: flex;
  gap: 120px;
}

.site-footer__heading {
  font-size: 14px;
  color: var(--footer-label);
  margin-bottom: 12px;
}

a.site-footer__heading {
  display: block;
  text-decoration: none;
  font-weight: inherit;
}

.site-footer__column a.site-footer__heading {
  font-weight: inherit;
}

.site-footer__column li + li {
  margin-top: 8px;
}

.site-footer__column a {
  font-size: 14px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1200px) {
  :root {
    --container-padding: 48px;
  }

  .site-header .container,
  .hero__inner {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }

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

  .hero__content {
    padding-top: 0;
    max-width: none;
  }

  .hero__visual {
    justify-self: stretch;
    margin-right: 0;
  }

  .hero__screenshot-frame {
    width: 100%;
    max-width: 975px;
  }

  .feature-split__inner,
  .feature-split--reverse .feature-split__inner {
    grid-template-columns: 1fr;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }

  .feature-split__visual--right,
  .feature-split__visual--left {
    min-height: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .feature-split__visual--right .feature-split__image {
    width: 100%;
    max-width: 827px;
    margin: 0 auto;
    border-radius: 24px;
  }

  .feature-split__visual--left .feature-split__image {
    width: 100%;
    max-width: 763px;
    margin: 0 auto;
    border-radius: 24px;
  }

  .story::before {
    right: 0;
  }

  .launch__cards {
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
    justify-items: center;
  }

  .projects__hero {
    grid-template-columns: 1fr;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }

  .projects__hero-visual {
    min-height: 0;
    margin-right: 0;
  }

  .projects__hero-image {
    width: 100%;
    max-width: 830px;
    margin: 0 auto;
  }

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

  .projects-feature__visual {
    margin-left: auto;
    margin-right: auto;
  }

  .projects-feature h3,
  .projects-feature p {
    text-align: center;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-card {
    max-width: none;
  }

  .pricing__cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}

@media (max-width: 850px) {
  .nav__links {
    display: none;
  }

  .nav__dropdown-panel,
  .nav__dropdown-panel.is-visible {
    display: none !important;
    visibility: hidden;
  }

  .nav__menu-toggle {
    display: flex;
  }

  .nav__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: var(--container-padding);
    right: var(--container-padding);
    z-index: 2;
    padding: 12px;
    background: var(--white);
    border: 1px solid #e7ebff;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(42, 46, 98, 0.12);
    flex-direction: column;
    gap: 4px;
  }

  .nav__menu:not([hidden]) {
    display: flex;
  }

  .nav__menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
  }

  .nav__menu a:hover {
    background: rgba(42, 46, 98, 0.06);
  }

  .nav__menu-login {
    display: none;
  }
}

@media (max-width: 600px) {
  .nav__login {
    display: none;
  }

  .nav__menu-login {
    display: list-item;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 24px;
  }

  .hero__title {
    font-size: 36px;
    line-height: 1.15;
  }

  .section-title {
    font-size: 32px;
  }

  .clients__inner {
    flex-wrap: wrap;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .site-footer__columns {
    gap: 48px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 366px;
  }

  .testimonial-card {
    max-width: 366px;
  }

}
