:root {
  --teal-900: #0f4c5c;
  --coral-600: #c84530;
  --coral-400: #f2674a;
  --sun-300: #ffc857;
  --cream-50: #fff7ef;
  --sand-100: #f6e6d6;
  --mint-100: #d7ecea;
  --ink: #1d2a30;
  --muted: #5e6b70;
  --cream: var(--cream-50);
  --sand: var(--sand-100);
  --accent: var(--coral-600);
  --accent-dark: #0f4c5c;
  --accent-2: var(--teal-900);
  --page-accent: var(--coral-600);
  --page-accent-2: var(--teal-900);
  --page-ink: var(--ink);
  --page-wash: var(--cream-50);
  --page-soft: var(--sand-100);
  --text: var(--ink);
  --text-muted: var(--muted);
  --footer-bg: var(--teal-900);
  --footer-text: #d7ecea;
  --white: #ffffff;
  --green: var(--teal-900);
  --max-width: 1170px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-soft: 0 16px 40px rgba(15, 76, 92, 0.1);
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --font-heading: "Outfit", system-ui, sans-serif;
}

.page-home,
.page-why {
  --page-accent: #C84530;
  --page-accent-2: #0F4C5C;
  --page-wash: #FFF7EF;
  --page-soft: #F6E6D6;
}

.page-new-arrivals,
.page-daily-deals,
.page-deals,
.page-hot-offers,
.page-trending {
  --page-accent: #0F4C5C;
  --page-accent-2: #a67c52;
  --page-wash: #f5efe8;
  --page-soft: #e8ddd2;
}

.page-bundles,
.page-addons,
.page-package-savings,
.page-gift-finder,
.page-product-videos {
  --page-accent: #5c4a42;
  --page-accent-2: #C84530;
  --page-wash: #f3ece4;
  --page-soft: #e5d9ce;
}

.page-auto-ship,
.page-brand-directory,
.page-shopping-experience {
  --page-accent: #0F4C5C;
  --page-accent-2: #C84530;
  --page-wash: #f2f4ef;
  --page-soft: #e2e8dc;
}

.page-fast-checkout,
.page-account,
.page-order-history,
.page-shipping,
.page-order-status,
.page-login {
  --page-accent: #3d3835;
  --page-accent-2: #C84530;
  --page-wash: #f7f5f2;
  --page-soft: #F6E6D6;
}

.page-business,
.page-partners,
.page-affiliate-program {
  --page-accent: #4a5568;
  --page-accent-2: #0F4C5C;
  --page-wash: #f4f2ef;
  --page-soft: #e8e4df;
}

.page-reviews,
.page-team,
.page-contact,
.page-help,
.page-whats-new,
.page-terms,
.page-privacy {
  --page-accent: #C84530;
  --page-accent-2: #0F4C5C;
  --page-wash: #FFF7EF;
  --page-soft: #F6E6D6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1rem;
}

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.eyebrow {
  color: var(--page-accent);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.check-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--green);
  position: absolute;
  left: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.1;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn--primary {
  background: var(--teal-900);
  color: var(--white);
  border-color: var(--teal-900);
  border-radius: var(--radius-pill);
}

.btn--primary:hover {
  background: var(--coral-600);
  border-color: var(--coral-600);
}

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  border-radius: var(--radius-pill);
}

.btn--secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.96);
  border-bottom: 1px solid var(--sand);
  backdrop-filter: blur(14px);
}

.header__bar {
  position: relative;
  width: min(100% - 3rem, var(--max-width));
  margin-inline: auto;
  display: flex;
  align-items: center;
  min-height: 80px;
  gap: 1.25rem;
}

.header__logo {
  flex-shrink: 0;
  margin-right: 0.75rem;
}

.header__logo img {
  width: clamp(160px, 16vw, 210px);
  max-height: 52px;
  object-fit: contain;
}

.header__menu {
  display: none;
  flex: 1;
  align-items: center;
  min-width: 0;
}

.header__links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.header__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 1.1rem 0.95rem;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
}

.header__link:hover,
.header__dropdown--open .header__link--dropdown {
  color: var(--page-accent);
}

.header__link--outline {
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 0.55rem 0.85rem;
}

.header__link--outline:hover {
  background: var(--ink);
  color: var(--white);
}

.header__actions .btn {
  padding: 0.625rem 1rem;
  font-size: 0.6875rem;
}

.header__dropdown {
  position: static;
}

.header__mega-menu {
  position: absolute;
  left: 0;
  top: calc(100% - 0.5rem);
  width: min(900px, 100%);
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 0;
  box-shadow: 0 24px 48px rgba(26, 24, 23, 0.08);
  padding: 1.25rem;
  z-index: 10;
}

.header__mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem 1.25rem;
}

@media (max-width: 1100px) {
  .header__mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.header__mega-heading {
  margin: 0 0 0.75rem;
  padding: 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--page-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--font-body);
}

.header__mega-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.header__mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0;
  transition: background 0.15s;
}

.header__mega-item:hover {
  background: var(--page-wash);
}

.header__mega-item > i {
  flex-shrink: 0;
  width: 1.25rem;
  margin-top: 0.15rem;
  font-size: 1rem;
  color: var(--page-accent);
  text-align: center;
}

.header__mega-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.header__mega-title {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.header__mega-desc {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.45;
}

.header__mega-badge {
  display: inline-block;
  padding: 0.2rem 0.35rem;
  border-radius: 0;
  background: var(--page-soft);
  color: var(--page-accent);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .header__menu {
    display: flex;
  }

  .header__burger {
    display: none;
  }
}

.hero {
  background: var(--cream);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--sand);
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: var(--page-ink);
  font-weight: 600;
  line-height: 1.18;
}

.hero__actions {
  margin: 1.5rem 0;
}

.hero__guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.hero__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__guarantee i {
  color: var(--green);
}

.hero__media {
  position: relative;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 6% 4% 4% 8%;
  border: 1px solid var(--sand);
  pointer-events: none;
}

.hero__media img,
.feature-section__media img,
.templates__image,
.integrations__media img,
.ff-showcase img {
  border-radius: 0;
  box-shadow: 0 20px 40px rgba(26, 24, 23, 0.1);
}

.hero__image--mobile {
  display: none;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 899px) {
  .hero {
    padding-top: 2.5rem;
    text-align: center;
  }

  .hero__image--desktop {
    display: none;
  }

  .hero__image--mobile {
    display: block;
    margin-inline: auto;
  }

  .hero__guarantees {
    justify-content: center;
  }

  .check-list {
    text-align: left;
    display: inline-block;
  }
}

.text-swap-section {
  padding: 4rem 0;
  background: var(--white);
  border-block: 1px solid var(--sand);
}

.text-swap-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: 42rem;
  font-weight: 400;
}

.text-swap {
  display: inline-block;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.text-swap--visible {
  opacity: 1;
}

.text-swap--cocoa { color: var(--accent); }
.text-swap--sage { color: var(--accent-2); }
.text-swap--ink { color: var(--ink); }
.text-swap--sand { color: #a67c52; }
.text-swap--rose { color: #9a6b6b; }

.stats {
  padding: 3rem 0 4rem;
  background: var(--white);
}

.stats__grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.stats__value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--page-accent);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.stats__label {
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.entrepreneurs {
  padding: 4rem 0;
  background: var(--page-wash);
}

.entrepreneurs__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.entrepreneurs__count {
  font-size: clamp(3rem, 8vw, 4.375rem);
  color: var(--page-accent);
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.entrepreneurs__content h3 {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.entrepreneurs__visual {
  min-height: 420px;
  background: var(--sand) center / cover no-repeat;
  border: 1px solid color-mix(in srgb, var(--sand) 80%, var(--page-accent));
}

.entrepreneurs__mobile-image {
  display: none;
}

@media (min-width: 1024px) {
  .entrepreneurs__grid {
    grid-template-columns: 1fr 1fr;
  }

  .entrepreneurs__mobile-image {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .entrepreneurs__visual {
    display: none;
  }

  .entrepreneurs__mobile-image {
    display: block;
    margin-top: 2rem;
  }

  .entrepreneurs__content {
    text-align: center;
  }
}

.feature-steps {
  padding: 4rem 0;
  background: var(--white);
  border-top: 1px solid var(--sand);
}

.feature-steps__grid {
  display: grid;
  gap: 2.5rem;
}

.feature-steps__item img {
  margin-bottom: 1rem;
}

.feature-steps__item h2 {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.feature-steps__item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .feature-steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-steps__item {
    padding-left: 4.375rem;
    position: relative;
  }

  .feature-steps__item img {
    position: absolute;
    left: 0;
    top: 0;
  }
}

.feature-section {
  padding: 5rem 0;
}

.feature-section:nth-child(even) {
  background: var(--page-wash);
}

.feature-section__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.feature-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--page-ink);
  font-weight: 400;
}

.feature-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-section__image--mobile {
  display: none;
}

@media (min-width: 900px) {
  .feature-section__grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-section--reversed .feature-section__content {
    order: 2;
  }

  .feature-section--reversed .feature-section__media {
    order: 1;
  }
}

@media (max-width: 899px) {
  .feature-section__image--desktop {
    display: none;
  }

  .feature-section__image--mobile {
    display: block;
  }

  .feature-section__actions {
    justify-content: center;
  }
}

.templates {
  padding: 5rem 0;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--sand);
}

.templates h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  max-width: 48rem;
  margin-inline: auto;
  font-weight: 400;
}

.templates p {
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 2.25rem;
  color: var(--text-muted);
}

.templates__image {
  margin-top: 2.5rem;
}

.templates__image--mobile {
  display: none;
}

@media (max-width: 899px) {
  .templates__image--desktop {
    display: none;
  }

  .templates__image--mobile {
    display: block;
    margin-inline: auto;
  }
}

.integrations {
  padding: 5rem 0;
  background: var(--page-wash);
}

.integrations__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.integrations__payments {
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .integrations__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.awards {
  padding: 5rem 0;
  background: var(--white);
}

.awards__intro,
.awards__milestone {
  text-align: center;
  margin-bottom: 3rem;
}

.awards__intro h2,
.awards__milestone h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  max-width: 52rem;
  margin-inline: auto;
  font-weight: 400;
}

.awards__ken {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.awards__ken-portrait {
  max-width: 540px;
  margin-inline: auto;
}

.awards__image--mobile {
  display: none;
}

@media (max-width: 899px) {
  .awards__image--desktop {
    display: none;
  }

  .awards__image--mobile {
    display: block;
    margin-inline: auto;
  }
}

.cta-banner {
  padding: 5rem 0;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: 48rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.cta-banner .btn--primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.cta-banner .btn--primary:hover {
  background: var(--sand);
  border-color: var(--sand);
}

.footer {
  background: var(--footer-bg);
  color: var(--white);
  font-family: var(--font-body);
}

.footer__main {
  padding: 2.5rem 0;
}

.footer__columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  max-width: 1170px;
}

.footer__group {
  display: flex;
  flex: 1;
  gap: 2rem 3rem;
  min-width: min(100%, 280px);
}

.footer__col {
  flex: 1;
  min-width: 140px;
}

.footer__col h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

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

.footer__col li {
  margin-bottom: 0.35rem;
  line-height: 2.2;
}

.footer__col a {
  color: var(--footer-text);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bar {
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bar p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--footer-text);
}

.footer__bar a {
  color: var(--footer-text);
  text-decoration: none;
}

.footer__bar a:hover {
  color: var(--white);
}

@media (max-width: 850px) {
  .footer__columns {
    flex-direction: column;
    gap: 2rem;
  }

  .footer__group {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.header__mega-menu[hidden] {
  display: none !important;
}

.header__link--active {
  color: var(--page-accent);
}

main > section:first-child {
  position: relative;
  overflow: hidden;
}

main > section:first-child:not(.hero) {
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
}

main > section:first-child h1 {
  color: var(--page-ink);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  max-width: 58rem;
  font-weight: 400;
}

main > section:first-child p {
  color: var(--text-muted);
}

main > section:first-child img {
  border-radius: 0;
}

.generated-hero-art {
  margin-top: 2rem;
}

.generated-hero-art img {
  width: min(100%, 58rem);
  margin-inline: auto;
  box-shadow: 0 20px 40px rgba(26, 24, 23, 0.1);
}

.feature-section__content,
.templates__inner,
.integrations__content,
.awards__intro,
.awards__milestone,
.cta-banner__inner {
  position: relative;
}

.feature-section__content::before,
.integrations__content::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin-bottom: 1rem;
  background: var(--page-accent);
}

.feature-steps__item,
.stats__item {
  border-top: 1px solid var(--sand);
  padding-top: 1rem;
}

.monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--page-soft);
  color: var(--page-accent);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 1rem;
  border: 1px solid var(--sand);
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.legal-content {
  padding: 3rem 0 5rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  font-weight: 500;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  line-height: 1.75;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 1023px) {
  .header__bar {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0;
  }

  .header__logo {
    order: 1;
    margin-right: 0;
  }

  .header__burger {
    order: 2;
  }

  .header__menu {
    order: 3;
    flex: none;
    flex-basis: 100%;
    width: 100%;
    min-width: 100%;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    gap: 0.25rem;
    padding: 0.75rem 0 1rem;
    border-top: 1px solid var(--sand);
    background: var(--cream);
  }

  .header__mega-menu {
    order: 4;
    flex: none;
    flex-basis: 100%;
    width: 100%;
    position: static;
    margin: 0;
    border: none;
    border-top: 1px solid var(--sand);
    border-radius: 0;
    box-shadow: none;
    padding: 0.75rem 0 1rem;
    max-height: 50vh;
    overflow-y: auto;
    background: var(--cream);
  }

  .header__mega-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .header--menu-open .header__menu {
    display: flex;
  }

  .header--menu-open .header__links,
  .header--menu-open .header__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-left: 0;
  }

  .header--menu-open .header__actions {
    margin-top: 0.5rem;
    gap: 0.5rem;
  }

  .header--menu-open .header__link,
  .header--menu-open .header__actions .btn {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
  }

  .header--menu-open .header__actions .btn {
    justify-content: center;
  }

  .header--menu-open .header__dropdown {
    width: 100%;
  }

  .header__logo img {
    width: clamp(150px, 48vw, 200px);
  }
}

@media (max-width: 899px) {
  main > section:first-child h1 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.hero-chip {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--sand);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal-900);
}

.hero-chip:hover {
  border-color: var(--coral-600);
  color: var(--coral-600);
}

.trust-bar {
  padding: 1.25rem 0;
  background: var(--mint-100);
  border-block: 1px solid rgba(15, 76, 92, 0.12);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--teal-900);
}

.trust-bar__item i {
  color: var(--coral-600);
}

.category-tiles {
  padding: 4rem 0;
}

.category-tiles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.category-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  color: var(--teal-900);
}

.category-tile i {
  font-size: 1.25rem;
  color: var(--coral-600);
}

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

.feature-steps__item i {
  font-size: 2rem;
  color: var(--coral-600);
  margin-bottom: 1rem;
}

.home-reviews {
  padding: 4rem 0;
  background: var(--white);
}

.home-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.home-reviews .testimonial-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--sand);
}

.home-faq {
  padding: 4rem 0;
}

.home-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.footer-newsletter {
  background: var(--teal-900);
  color: var(--white);
  padding: 2.5rem 0;
}

.footer-newsletter__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-newsletter__form input {
  min-width: min(100%, 260px);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-pill);
  border: none;
}

.footer__columns--4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.footer-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--footer-text);
}

.brand-specimen {
  padding: 4rem 0;
}

.brand-specimen__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}

.brand-specimen__swatches span {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  color: #fff;
  font-weight: 600;
}

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

@media (max-width: 900px) {
  .trust-bar__grid,
  .category-tiles__grid,
  .home-reviews__grid,
  .footer__columns--4 {
    grid-template-columns: 1fr 1fr;
  }

  .home-faq__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .trust-bar__grid,
  .category-tiles__grid,
  .home-reviews__grid,
  .footer__columns--4 {
    grid-template-columns: 1fr;
  }
}
