/* =========================================================
   Landing Page Styles - Figma Design Implementation
   PageRank Landing Page V1
   ========================================================= */

/* ---- CSS Variables ---- */
:root {
  --landing-white: #FFFFFF;
  --landing-dark: #242424;
  --landing-dark-2: #1A1A1A;
  --landing-dark-3: #161616;
  --landing-dark-bg: #1B1B1B;
  --landing-yellow: #EFC417;
  --landing-gray: #828282;
  --landing-gray-light: #B5B5B5;
  --landing-gray-border: #E6E6E6;
  --landing-step-active: #DDBD3A;
  --landing-step-inactive: #676767;
  --landing-text-light: #DBDBDB;
  --landing-dark-btn: #171717;
  --landing-light-btn: #EEEEEE;

  --font-heading: 'JetBrains Mono', monospace;
  --font-serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-sans: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---- Override body background for landing ---- */
body.page-home {
  background: var(--landing-white);
  font-family: var(--font-sans);
  color: var(--landing-dark);
}

/* Hide old landing page elements & backgrounds */
body.page-home .pagerank-bg,
body.page-home .liquid-glass-filters {
  display: none;
}

body.page-home::before {
  display: none;
}

/* =========================================================
   HEADER
   ========================================================= */
.landing-header {
  display: flex;
  height: 100px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  padding: 0 104px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFF;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--landing-dark-2);
}

.header-logo img {
  width: 36px;
  height: 44px;
}

.header-logo .logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 31.34px;
  line-height: 1.4em;
  color: var(--landing-dark-2);
}

.header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 72px;
}

.header-nav a {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.326em;
  color: var(--landing-dark-3);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
  padding: 0;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--landing-yellow);
  transition: width 0.3s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #EFC417;
  border-radius: 15px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.36em;
  color: #141414;
  text-decoration: none;
  box-shadow:
    0 0 0 1.268px #A6A6A6 inset,
    0 0 10.144px 0 #F2F2F2 inset,
    0 0 2.536px 0 rgba(0, 0, 0, 0.10),
    0 1.268px 10.144px 0 rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(5.35px);
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta-icon {
  height: 24px;
  width: auto;
  filter: none;
  flex-shrink: 0;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0px 2px 14px 0px rgba(0, 0, 0, 0.15),
    0px 0px 4px 0px rgba(0, 0, 0, 0.1),
    inset 0px 0px 10.144px 0px rgba(242, 242, 242, 1),
    inset 0px 0px 0px 1.268px rgba(166, 166, 166, 1);
}

/* =========================================================
   HERO / LANDING CONTAINER
   ========================================================= */
.landing-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 60px 104px 10px;
  min-height: 560px;
}

.landing-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 37px;
  max-width: 747px;
  flex-shrink: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 96px;
  line-height: 0.9em;
  letter-spacing: -3px;
  color: var(--landing-dark);
  max-width: 747px;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--landing-yellow);
}

.hero-subtitle {
  flex: 0 0 auto;
  font-family: 'Manrope', var(--font-sans);
  font-weight: 400;
  font-size: 27px;
  line-height: 42px;
  letter-spacing: -0.28px;
  color: var(--landing-gray);
  max-width: 650px;
}

.hero-subtitle-desktop {
  display: inline;
}

.hero-subtitle-mobile {
  display: none;
}

.hero-subtitle em {
  font-style: normal;
  color: var(--landing-yellow);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-primary-landing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--landing-yellow);
  border-radius: 15px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 0.93em;
  color: var(--landing-dark);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.btn-primary-landing:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.btn-primary-landing img {
  width: 24px;
  height: 24px;
}

.btn-secondary-landing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--landing-light-btn);
  border-radius: 15px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 0.93em;
  color: var(--landing-dark);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.btn-secondary-landing:hover {
  transform: translateY(-1px);
  opacity: 0.85;
}

.landing-illustration {
  flex-shrink: 0;
  width: 507px;
  height: 382px;
  position: relative;
}

.landing-illustration .vector {
  position: absolute;
}

.landing-illustration .vector-204 {
  top: 53px;
  left: 125px;
  width: 326px;
  height: 318px;
}

.landing-illustration .vector-203 {
  top: 24px;
  left: 75px;
  width: 380px;
  height: 328px;
}

.landing-illustration .vector-202 {
  top: 18px;
  left: 97px;
  width: 358px;
  height: 334px;
}

.landing-illustration .vector-201 {
  top: 11px;
  left: 131px;
  width: 324px;
  height: 338px;
}

/* =========================================================
   SEARCH SECTION
   ========================================================= */
.landing-search-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 12px;
  width: 100%;
  background: url('/images/landing/search_section_bg.png') lightgray 50% / cover no-repeat;
}

.landing-search-section .gradient-overlay {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.landing-search-section .gradient-overlay img {
  width: 100%;
  height: auto;
  display: block;
}

.search-section-inner {
  display: flex;
  width: 1728px;
  max-width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 60px 0;
}

.search-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.65em;
  letter-spacing: -0.025em;
  color: var(--landing-dark);
  text-align: center;
  padding: 10px;
  max-width: 884px;
}

.search-tagline {
  font-family: var(--font-serif);;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5em;
  letter-spacing: -0.025em;
  color: var(--landing-dark);
  text-align: center;
  margin-top: 4px;
}

.search-tagline em {
  font-style: italic;
  color: var(--landing-dark);
  background: linear-gradient(to top, var(--landing-yellow) 40%, transparent 40%);
  padding: 0 2px;
}

.search-tagline-tail {
  display: inline;
  white-space: nowrap;
}

.tagline-arrow {
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  color: var(--landing-dark);
}

/* Search Component - Glass Card */
.search-component {
  display: flex;
  height: 175.8px;
  padding: 25.36px 25.359px 25.359px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32.97px;
  border-radius: 48.182px;
  background: rgba(255, 255, 255, 0.20);
  box-shadow:
    inset 0 0 0 1.268px rgba(166, 166, 166, 1),
    inset 0 0 10.144px 0 rgba(242, 242, 242, 1),
    0 0 2.536px 0 rgba(0, 0, 0, 0.1),
    0 1.268px 10.144px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10.7px);
  overflow: visible;
}

/* Search Bar Input */
.search-bar-landing {
  display: flex;
  align-items: center;
  gap: 12.68px;
  padding: 10px 15px;
  background: #FFFFFF;
  border-radius: 19px;
  width: 833px;
  max-width: 100%;
}

.search-bar-landing input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.213em;
  color: var(--landing-dark);
  background: transparent;
}

.search-bar-landing input::placeholder {
  color: #B5B5B5;
}

/* Search Options Row */
.search-options {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.search-options-left {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 1px;
}

.search-options-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

/* Paste Button */
.paste-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10.14px;
  padding: 10.14px 20.29px;
  height: 43.11px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 240, 230, 0.6), rgba(240, 220, 210, 0.3) 60%, rgba(220, 205, 195, 0.15));
  border-radius: 126.79px;
  border: 1px solid rgba(200, 185, 175, 0.4);
  cursor: pointer;
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.06),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 2px 0 rgba(180, 160, 150, 0.15);
  backdrop-filter: blur(6px);
  transition: opacity 0.2s;
}

.paste-btn:hover {
  opacity: 0.85;
}

.paste-btn img {
  width: 18px;
  height: 20px;
}

.paste-btn span {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20.29px;
  line-height: 1.213em;
  color: #454545;
}

/* Mic Button */
.mic-btn-landing {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 43.11px;
  height: 43.11px;
  border-radius: 50%;
  border: 1px solid rgba(200, 185, 175, 0.4);
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
  overflow: hidden;
  background: radial-gradient(circle at 35% 35%, rgba(255, 240, 230, 0.6), rgba(240, 220, 210, 0.3) 60%, rgba(220, 205, 195, 0.15));
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.06),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 2px 0 rgba(180, 160, 150, 0.15);
  backdrop-filter: blur(6px);
}

.mic-btn-landing:hover {
  opacity: 0.85;
}

.mic-btn-landing img {
  width: 27px;
  height: 27px;
}

/* Mode Dropdown */
.mode-dropdown-landing {
  position: relative;
}

.mode-btn-landing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15.22px;
  padding: 10.14px 20.29px;
  width: 148px;
  height: 43.11px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 240, 230, 0.6), rgba(240, 220, 210, 0.3) 60%, rgba(220, 205, 195, 0.15));
  border-radius: 20px;
  border: 1px solid rgba(200, 185, 175, 0.4);
  cursor: pointer;
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.06),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 2px 0 rgba(180, 160, 150, 0.15);
  backdrop-filter: blur(6px);
  transition: opacity 0.2s;
}

.mode-btn-landing:hover {
  opacity: 0.85;
}

.mode-btn-landing span {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20.29px;
  line-height: 1.213em;
  color: #454545;
}

.mode-btn-landing img {
  width: 15px;
  height: 9px;
  transition: transform 0.2s;
}

.mode-dropdown-landing .mode-dropdown-menu-landing {
  position: absolute;
  top: 100%;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  background: #fae9d9;
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 10px 6px 6px;
  width: 140px;
  z-index: 50;
  border: 1px solid rgba(200, 185, 175, 0.4);
  box-shadow:
    0 4px 16px 0 rgba(0, 0, 0, 0.08),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 2px 0 rgba(180, 160, 150, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
}

/* Open on hover */
.mode-dropdown-landing:hover .mode-dropdown-menu-landing,
.mode-dropdown-landing.open .mode-dropdown-menu-landing {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
  pointer-events: auto;
}

.mode-dropdown-landing:hover .mode-btn-landing img {
  transform: rotate(180deg);
}

.mode-dropdown-menu-landing .mode-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: none;
  background: none;
  color: #454545;
  cursor: pointer;
  border-radius: 10px;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  transition: background 0.15s;
}

.mode-dropdown-menu-landing .mode-option:hover {
  background: rgba(200, 185, 175, 0.25);
}

.mode-dropdown-menu-landing .mode-option .mode-option-check {
  width: 20px;
  text-align: center;
  color: var(--landing-yellow);
}

/* Uncover / CTA Button */
.uncover-btn-landing {
  display: flex;
  align-items: center;
  gap: 10.14px;
  padding: 10.14px 20.29px;
  height: 43.11px;
  background:
   linear-gradient(2deg, rgb(0 0 0 / 82%), rgb(33 32 32 / 82%)), #000000;
  border-radius: 126.79px;
  border: none;
  cursor: pointer;
  backdrop-filter: blur(15.22px);
  transition: transform 0.2s, opacity 0.2s;
}

.uncover-btn-landing:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.uncover-btn-landing .btn-text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20.29px;
  line-height: 1.213em;
  color: #FFFFFF;
}

.uncover-btn-landing .btn-arrow {
  width: 24.09px;
  height: 24.09px;
}

.uncover-btn-landing .btn-loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =========================================================
   HOW IT WORKS CAROUSEL
   ========================================================= */
.how-it-works-section-landing {
  position: relative;
  width: 100%;
  padding: 100px 0 80px;
  background: var(--landing-white);
  overflow: hidden;
}

.how-it-works-heading {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 0.93em;
  letter-spacing: -0.03em;
  color: var(--landing-step-inactive);
  padding: 10px;
  margin-bottom: 60px;
}

/* Step Icons Row */
.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 140px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.step-indicator .step-icon {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.step-indicator .step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-indicator .step-label {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 0.94em;
  color: var(--landing-step-inactive);
  padding: 10px;
}

.step-indicator.active .step-label {
  font-weight: 700;
  color: var(--landing-step-active);
}

/* Cards Container */
.carousel-cards {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 104px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-cards::-webkit-scrollbar {
  display: none;
}

/* Large Card (Card 01) */
.carousel-card-large {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 38px;
  width: 1000px;
  min-height: 520px;
  background: var(--landing-white);
  border: 1px solid var(--landing-gray-border);
  border-radius: 68px;
  box-shadow:
    0px 4px 15.2px 0px rgba(0, 0, 0, 0.1),
    inset 3px 3px 8.4px -2px rgba(255, 255, 255, 0.25);
  scroll-snap-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.carousel-card-large:hover,
.carousel-card-large.carousel-card-active {
  transform: scale(1.015);
  box-shadow:
    0px 6px 24px 0px rgba(0, 0, 0, 0.13),
    inset 3px 3px 8.4px -2px rgba(255, 255, 255, 0.25);
}

.carousel-card-large .card-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0 10px;
  height: 100%;
}

.carousel-card-large .card-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 55px;
  max-width: 505px;
}

.carousel-card-large .card-number img {
  height: 50px;
  width: auto;
}

.carousel-card-large .card-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.carousel-card-large .card-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.1em;
  letter-spacing: -0.03em;
  color: var(--landing-dark);
}

.carousel-card-large .card-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.38em;
  letter-spacing: -0.01em;
  color: var(--landing-gray);
}

.carousel-card-large .card-right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.carousel-card-large .card-right img {
  max-width: 380px;
  max-height: 380px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

/* Small Cards (Card 02-05) */
.carousel-card-small {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 30px;
  width: 780px;
  min-height: 420px;
  background: var(--landing-white);
  border: 1px solid var(--landing-gray-border);
  border-radius: 54px;
  box-shadow:
    0px 4px 15.2px 0px rgba(0, 0, 0, 0.1),
    inset 3px 3px 8.4px -2px rgba(255, 255, 255, 0.25);
  scroll-snap-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.carousel-card-small:hover,
.carousel-card-small.carousel-card-active {
  transform: scale(1.015);
  box-shadow:
    0px 6px 24px 0px rgba(0, 0, 0, 0.13),
    inset 3px 3px 8.4px -2px rgba(255, 255, 255, 0.25);
}

.carousel-card-small .card-inner {
  display: flex;
  align-items: center;
  gap: 59px;
  padding: 0 8px;
  height: 100%;
}

.carousel-card-small .card-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 44px;
  max-width: 351px;
}

.carousel-card-small .card-number img {
  height: 40px;
  width: auto;
}

.carousel-card-small .card-text {
  display: flex;
  flex-direction: column;
  gap: 5.6px;
}

.carousel-card-small .card-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 46px;
  line-height: 1.1em;
  letter-spacing: -0.03em;
  color: var(--landing-dark);
}

.carousel-card-small .card-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.38em;
  letter-spacing: -0.01em;
  color: var(--landing-gray);
}

.carousel-card-small .card-right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.carousel-card-small .card-right img {
  max-width: 320px;
  max-height: 350px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

/* =========================================================
   PRICING SECTION
   ========================================================= */
.pricing-section-landing {
  position: relative;
  width: 100%;
  padding: 100px 0 80px;
  background: var(--landing-white);
  overflow: hidden;
}

.pricing-heading {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 0.93em;
  letter-spacing: -0.03em;
  color: var(--landing-step-inactive);
  padding: 10px;
  margin-bottom: 24px;
}

.pricing-subtitle {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-subtitle-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3em;
  letter-spacing: -0.02em;
  color: var(--landing-dark);
}

.pricing-subtitle-philosophy {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5em;
  color: var(--landing-gray);
}

.pricing-subtitle-promise {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5em;
  color: var(--landing-gray);
}

.pricing-cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 104px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 38px;
  flex: 1 1 0;
  max-width: 520px;
  min-width: 280px;
  min-height: 520px;
  background: var(--landing-white);
  border: 1px solid var(--landing-gray-border);
  border-radius: 68px;
  box-shadow:
    0px 4px 15.2px 0px rgba(0, 0, 0, 0.1),
    inset 3px 3px 8.4px -2px rgba(255, 255, 255, 0.25);
}

.pricing-card .card-inner {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
  height: 100%;
}

.pricing-icon-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
}

.pricing-icon-label img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.pricing-icon-label span {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1em;
  letter-spacing: -0.03em;
  color: var(--landing-gray);
}

.pricing-card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0 30px;
}

.pricing-tier-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.1em;
  letter-spacing: -0.03em;
  color: var(--landing-dark);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.pricing-price {
  font-family: 'Manrope', var(--font-sans);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1em;
  letter-spacing: -0.03em;
  color: var(--landing-dark);
}

.pricing-price-old {
  font-family: 'Manrope', var(--font-sans);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1em;
  letter-spacing: -0.02em;
  color: #B0B0B0;
  text-decoration: line-through;
}

.pricing-price-old--highlight {
  font-size: 42px;
  color: var(--landing-yellow);
}

.pricing-period {
  font-family: 'Manrope', var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  color: #B0B0B0;
  margin-left: -4px;
}

.pricing-duration {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.38em;
  color: var(--landing-gray);
}

.pricing-savings {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.38em;
  color: var(--landing-dark);
}

.pricing-sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.38em;
  color: var(--landing-yellow);
}

.pricing-divider {
  width: 100%;
  height: 1px;
  background: var(--landing-gray-border);
}

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

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Manrope', var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6em;
  letter-spacing: -0.005em;
  color: #2a2a2a;
}

.pricing-features li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--landing-yellow);
  margin-top: 9px;
}

/* =========================================================
   TEXT CONTENT SECTION
   ========================================================= */
.text-content-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 104px;
  text-align: center;
  gap: 26px;
}

.text-content-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 86px;
  line-height: 0.55em;
  letter-spacing: -0.02em;
  color: var(--landing-dark);
}

.text-content-subheading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.23em;
  letter-spacing: -0.025em;
  color: var(--landing-dark);
}

/* =========================================================
   CONTENT SECTION (Images + Text)
   ========================================================= */
.content-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 100px;
  padding: 0 104px 100px;
}

.content-image {
  max-width: 1224px;
  width: 100%;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0px 4px 43px 0px rgba(0, 0, 0, 0.1);
}

.content-text-block {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1224px;
  width: 100%;
}

.content-text-block p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 86px;
  line-height: 0.55em;
  letter-spacing: -0.02em;
  color: var(--landing-dark);
  max-width: 1224px;
  line-height: 1.1em;
}

/* =========================================================
   FOOTER
   ========================================================= */
.landing-footer {
  display: flex;
  align-items: center;
  padding: 86px 156px;
  background: var(--landing-dark-bg);
}

.landing-footer .footer-column {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.landing-footer .footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing-footer .footer-logo-row img {
  width: 25px;
  height: 25px;
}

.landing-footer .footer-logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 32px;
  line-height: 0.93em;
  color: var(--landing-text-light);
}

.landing-footer .footer-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.landing-footer .footer-copyright {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.33em;
  color: var(--landing-text-light);
  text-align: left;
}

.landing-footer .footer-social img {
  height: 25px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.landing-footer .footer-social img:hover {
  opacity: 1;
}

/* =========================================================
   HIDE BELOW-FOLD LANDING SECTIONS WHEN RESULTS ARE SHOWING
   ========================================================= */
body.has-results .how-it-works-section-landing,
body.has-results .text-content-section,
body.has-results .content-section,
body.has-results .competitor-compare-section,
body.has-results .homepage-faq-section,
body.has-results .landing-footer {
  display: none;
}

/* =========================================================
   HIDE OLD SECTIONS WHEN LANDING PAGE IS ACTIVE
   ========================================================= */
body.page-home .header,
body.page-home .hero,
body.page-home .browser-showcase-section,
body.page-home .how-it-works-section,
body.page-home .site-footer {
  display: none !important;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 1400px) {
  .hero-copy h1 {
    font-size: 76px;
    line-height: 0.9em;
  }

  .landing-illustration {
    width: 420px;
    height: 316px;
    transform: scale(0.828);
    transform-origin: top right;
  }

  .carousel-card-large {
    width: 850px;
    min-height: 450px;
  }

  .carousel-card-small {
    width: 650px;
    min-height: 380px;
  }

  .pricing-card {
    max-width: 420px;
  }
}

@media (max-width: 1200px) {
  .landing-header {
    padding: 0 40px;
  }

  .header-nav {
    gap: 40px;
  }

  .header-cta {
    font-size: 20px;
    padding: 12px 22px;
  }

  .landing-hero {
    padding: 40px 40px;
    flex-direction: column;
    text-align: center;
  }

  .landing-text {
    align-items: center;
  }

  .hero-copy h1 {
    font-size: 56px;
    line-height: 1em;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    font-size: 22px;
    line-height: 1.35em;
  }

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

  .landing-illustration {
    width: 507px;
    height: 382px;
    transform: scale(0.69);
    transform-origin: center center;
  }

  .steps-indicator {
    gap: 30px;
  }

  .carousel-cards {
    padding: 0 40px;
    gap: 24px;
  }

  .pricing-cards {
    padding: 0 40px;
    gap: 24px;
  }

  .pricing-card {
    max-width: 340px;
  }

  .text-content-heading,
  .content-text-block p {
    font-size: 60px;
  }

  .content-section {
    padding: 0 40px 60px;
    gap: 60px;
  }

  .text-content-section {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  /* --- Header --- */
  .landing-header {
    padding: 0 16px;
    height: 70px;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    font-size: 16px;
    padding: 10px 16px;
    gap: 6px;
    border-radius: 10px;
  }

  .header-cta-icon {
    height: 18px;
  }

  /* --- Hero --- */
  .landing-hero {
    padding: 30px 20px 10px;
    min-height: auto;
    gap: 14px;
  }

  .landing-text {
    gap: 20px;
  }

  .hero-copy {
    gap: 12px;
  }

  .hero-copy h1 {
    font-size: 38px;
    line-height: 0.95em;
    letter-spacing: -1.3px;
    text-wrap: balance;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.4em;
    text-align: center;
    text-wrap: balance;
    max-width: 33ch;
    margin: 0 auto;
  }

  .hero-subtitle-desktop {
    display: none;
  }

  .hero-subtitle-mobile {
    display: block;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 360px);
    margin: 0 auto;
    margin-top: 12px;
  }

  .hero-buttons .btn-primary-landing,
  .hero-buttons .btn-secondary-landing {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    justify-content: center;
  }

  .hero-buttons .btn-primary-landing span,
  .hero-buttons .btn-secondary-landing span {
    white-space: nowrap;
  }

  .landing-illustration {
    display: none;
  }

  .landing-search-section {
    background-size: 115% auto;
    background-position: center top;
    background-color: #f8eee5;
  }

  /* --- Search --- */
  .search-heading {
    font-size: 26px;
    line-height: 1.3em;
    padding: 10px 20px;
  }

  .search-section-inner {
    padding: 30px 0;
    gap: 6px;
  }

  .search-tagline-tail {
    display: block;
    margin-top: 2px;
  }

  #analyzeForm {
    width: 90%;
    margin: 0 auto;
  }

  .search-component {
    border-radius: 24px;
    padding: 16px;
    margin: 0;
    height: auto;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .search-bar-landing {
    width: 100%;
    padding: 8px 12px;
    border-radius: 14px;
  }

  .search-bar-landing input {
    font-size: 16px;
  }

  .search-options {
    gap: 8px;
  }

  .paste-btn {
    padding: 6px 10px;
    height: 34px;
    gap: 6px;
  }

  .paste-btn span {
    font-size: 13px;
  }

  .paste-btn img {
    width: 14px;
    height: 16px;
  }

  .mic-btn-landing {
    width: 34px;
    height: 34px;
  }

  .mic-btn-landing img {
    width: 20px;
    height: 20px;
  }

  .mode-btn-landing {
    padding: 6px 10px;
    height: 34px;
    gap: 8px;
    width: 110px;
  }

  .mode-btn-landing span {
    font-size: 13px;
  }

  .uncover-btn-landing {
    padding: 6px 12px;
    height: 34px;
    gap: 6px;
  }

  .uncover-btn-landing .btn-text {
    font-size: 13px;
  }

  .uncover-btn-landing .btn-arrow {
    width: 18px;
    height: 18px;
  }

  /* --- Pricing --- */
  .pricing-section-landing {
    padding: 60px 0 50px;
  }

  .pricing-heading {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .pricing-subtitle {
    margin: 0 auto 36px;
    padding: 0 20px;
  }

  .pricing-subtitle-heading {
    font-size: 22px;
  }

  .pricing-subtitle-philosophy,
  .pricing-subtitle-promise {
    font-size: 15px;
    line-height: 1.35em;
  }

  .pricing-cards {
    flex-direction: column;
    padding: 0 20px;
    gap: 20px;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 500px;
    padding: 28px 24px;
    border-radius: 32px;
    min-height: auto;
  }

  .pricing-card .card-inner {
    padding: 0;
  }

  .pricing-icon-label img {
    width: 44px;
    height: 44px;
  }

  .pricing-icon-label span {
    font-size: 28px;
  }

  .pricing-tier-name {
    font-size: 30px;
  }

  .pricing-price {
    font-size: 42px;
  }

  .pricing-price-old {
    font-size: 22px;
  }

  .pricing-price-old--highlight {
    font-size: 32px;
  }

  .pricing-period {
    font-size: 16px;
  }

  .pricing-duration {
    font-size: 16px;
  }

  .pricing-savings {
    font-size: 15px;
  }

  .pricing-card-header {
    padding: 8px 0 20px;
  }

  .pricing-features {
    gap: 14px;
    padding: 20px 0;
  }

  .pricing-features li {
    font-size: 16px;
    gap: 10px;
    line-height: 1.3em;
  }

  .pricing-features li::before {
    width: 6px;
    height: 6px;
  }

  /* --- How It Works --- */
  .how-it-works-section-landing {
    padding: 60px 0 50px;
  }

  .how-it-works-heading {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .steps-indicator {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 20px;
    gap: 16px;
    margin-bottom: 40px;
    scrollbar-width: none;
  }

  .steps-indicator::-webkit-scrollbar {
    display: none;
  }

  .step-indicator {
    width: 80px;
    gap: 6px;
  }

  .step-indicator .step-icon {
    width: 56px;
    height: 56px;
    padding: 6px;
  }

  .step-indicator .step-label {
    font-size: 18px;
    padding: 4px;
  }

  .carousel-cards {
    padding: 0 20px;
    gap: 16px;
  }

  .carousel-card-large {
    width: 85vw;
    min-height: auto;
    padding: 24px;
    border-radius: 32px;
  }

  .carousel-card-large .card-inner {
    flex-direction: column;
    gap: 20px;
  }

  .carousel-card-large .card-left {
    gap: 24px;
    max-width: 100%;
  }

  .carousel-card-large .card-title {
    font-size: 32px;
  }

  .carousel-card-large .card-desc {
    font-size: 16px;
    line-height: 1.35em;
  }

  .carousel-card-large .card-right img {
    max-width: 100%;
    max-height: 220px;
  }

  .carousel-card-small {
    width: 80vw;
    min-height: auto;
    padding: 20px;
    border-radius: 28px;
  }

  .carousel-card-small .card-inner {
    flex-direction: column;
    gap: 20px;
  }

  .carousel-card-small .card-left {
    gap: 20px;
    max-width: 100%;
  }

  .carousel-card-small .card-title {
    font-size: 28px;
  }

  .carousel-card-small .card-desc {
    font-size: 15px;
    line-height: 1.35em;
  }

  .carousel-card-small .card-right img {
    max-width: 100%;
    max-height: 200px;
  }

  /* --- Text Content --- */
  .text-content-section {
    padding: 50px 20px;
    gap: 16px;
  }

  .text-content-heading {
    font-size: 36px;
    line-height: 1.1em;
  }

  .text-content-subheading {
    font-size: 22px;
  }

  .content-text-block p {
    font-size: 36px;
    line-height: 1.1em;
  }

  .content-section {
    padding: 0 20px 40px;
    gap: 36px;
  }

  .content-image img {
    border-radius: 16px;
  }

  /* --- Footer --- */
  .landing-footer {
    padding: 40px 20px;
  }

  .landing-footer .footer-column {
    gap: 40px;
  }

  .landing-footer .footer-logo-text {
    font-size: 24px;
  }

  .landing-footer .footer-copyright {
    font-size: 16px;
  }
}

/* ---- Small mobile (480px and below) ---- */
@media (max-width: 480px) {
  /* --- Header --- */
  .landing-header {
    height: 60px;
    padding: 0 12px;
  }

  .header-logo img {
    width: 24px;
    height: 30px;
  }

  .header-logo .logo-text {
    font-size: 20px;
  }

  .header-cta {
    font-size: 14px;
    padding: 8px 12px;
    gap: 5px;
    border-radius: 8px;
  }

  .header-cta-icon {
    height: 15px;
  }

  /* --- Hero --- */
  .landing-hero {
    padding: 20px 16px 10px;
    gap: 12px;
  }

  .landing-text {
    gap: 18px;
  }

  .hero-copy {
    gap: 10px;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 0.94em;
    letter-spacing: -0.7px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.42em;
    max-width: 30ch;
  }

  .hero-buttons {
    gap: 10px;
    width: min(100%, 330px);
  }

  .hero-buttons .btn-primary-landing,
  .hero-buttons .btn-secondary-landing {
    font-size: 14px;
    padding: 10px 12px;
    min-height: 42px;
    justify-content: center;
    border-radius: 12px;
  }

  .hero-buttons .btn-primary-landing img {
    width: 18px;
    height: 18px;
  }

  .landing-search-section {
    background-size: 128% auto;
  }

  /* --- Search --- */
  .search-heading {
    font-size: 22px;
    padding: 8px 16px;
  }

  .search-section-inner {
    padding: 20px 0;
  }

  #analyzeForm {
    width: 92%;
  }

  .search-component {
    margin: 0;
    padding: 12px;
    border-radius: 18px;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .search-bar-landing {
    padding: 6px 10px;
    border-radius: 12px;
  }

  .search-bar-landing input {
    font-size: 14px;
  }

  .paste-btn {
    padding: 5px 8px;
    height: 30px;
  }

  .paste-btn span {
    display: none;
  }

  .paste-btn img {
    width: 13px;
    height: 15px;
  }

  .mic-btn-landing {
    width: 30px;
    height: 30px;
  }

  .mic-btn-landing img {
    width: 18px;
    height: 18px;
  }

  .search-options {
    flex-wrap: wrap;
    gap: 8px;
  }

  .search-options-left {
    gap: 6px;
  }

  .search-options-right {
    gap: 6px;
  }

  .mode-btn-landing {
    gap: 6px;
    padding: 5px 8px;
    height: 30px;
    width: 95px;
  }

  .mode-btn-landing span {
    font-size: 12px;
  }

  .uncover-btn-landing {
    padding: 5px 10px;
    height: 30px;
    gap: 5px;
  }

  .uncover-btn-landing .btn-text {
    font-size: 12px;
  }

  .uncover-btn-landing .btn-arrow {
    width: 16px;
    height: 16px;
  }

  /* --- Pricing --- */
  .pricing-section-landing {
    padding: 48px 0 40px;
  }

  .pricing-heading {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .pricing-subtitle {
    margin: 0 auto 28px;
    padding: 0 16px;
  }

  .pricing-subtitle-heading {
    font-size: 20px;
  }

  .pricing-subtitle-philosophy,
  .pricing-subtitle-promise {
    font-size: 14px;
  }

  .pricing-cards {
    padding: 0 16px;
    gap: 16px;
  }

  .pricing-card {
    padding: 22px 18px;
    border-radius: 28px;
  }

  .pricing-icon-label img {
    width: 38px;
    height: 38px;
  }

  .pricing-icon-label span {
    font-size: 24px;
  }

  .pricing-tier-name {
    font-size: 26px;
  }

  .pricing-price {
    font-size: 36px;
  }

  .pricing-price-old {
    font-size: 18px;
  }

  .pricing-price-old--highlight {
    font-size: 26px;
  }

  .pricing-period {
    font-size: 14px;
  }

  .pricing-duration {
    font-size: 14px;
  }

  .pricing-savings {
    font-size: 14px;
  }

  .pricing-card-header {
    gap: 8px;
    padding: 6px 0 16px;
  }

  .pricing-features {
    gap: 12px;
    padding: 16px 0;
  }

  .pricing-features li {
    font-size: 15px;
    gap: 8px;
    line-height: 1.3em;
  }

  /* --- How It Works --- */
  .how-it-works-section-landing {
    padding: 48px 0 40px;
  }

  .how-it-works-heading {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .steps-indicator {
    gap: 12px;
    padding: 0 16px;
    margin-bottom: 30px;
  }

  .step-indicator {
    width: 70px;
  }

  .step-indicator .step-icon {
    width: 48px;
    height: 48px;
  }

  .step-indicator .step-label {
    font-size: 15px;
  }

  .carousel-cards {
    padding: 0 16px;
    gap: 12px;
  }

  .carousel-card-large {
    width: 88vw;
    padding: 20px;
    border-radius: 24px;
  }

  .carousel-card-large .card-number img {
    height: 36px;
  }

  .carousel-card-large .card-left {
    gap: 16px;
  }

  .carousel-card-large .card-title {
    font-size: 28px;
  }

  .carousel-card-large .card-desc {
    font-size: 15px;
  }

  .carousel-card-small {
    width: 85vw;
    padding: 18px;
    border-radius: 22px;
  }

  .carousel-card-small .card-number img {
    height: 30px;
  }

  .carousel-card-small .card-left {
    gap: 14px;
  }

  .carousel-card-small .card-title {
    font-size: 24px;
  }

  .carousel-card-small .card-desc {
    font-size: 14px;
  }

  /* --- Text Content --- */
  .text-content-section {
    padding: 40px 16px;
    gap: 12px;
  }

  .text-content-heading {
    font-size: 28px;
  }

  .text-content-subheading {
    font-size: 18px;
  }

  .content-text-block p {
    font-size: 28px;
    line-height: 1.15em;
  }

  .content-section {
    padding: 0 16px 32px;
    gap: 28px;
  }

  .content-image img {
    border-radius: 12px;
  }

  /* --- Footer --- */
  .landing-footer {
    padding: 32px 16px;
  }

  .landing-footer .footer-column {
    gap: 30px;
  }

  .landing-footer .footer-logo-text {
    font-size: 22px;
  }

  .landing-footer .footer-copyright {
    font-size: 14px;
  }
}

/* ---- Extra small mobile (360px and below) ---- */
@media (max-width: 360px) {
  .header-logo .logo-text {
    font-size: 18px;
  }

  .header-cta {
    font-size: 12px;
    padding: 7px 10px;
    gap: 4px;
  }

  .header-cta-icon {
    height: 13px;
  }

  .hero-copy h1 {
    font-size: 26px;
    line-height: 1.12em;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.35em;
  }

  .btn-primary-landing,
  .btn-secondary-landing {
    font-size: 14px;
    padding: 9px 14px;
  }

  .search-heading {
    font-size: 20px;
  }

  .pricing-tier-name {
    font-size: 23px;
  }

  .pricing-price {
    font-size: 32px;
  }

  .pricing-price-old--highlight {
    font-size: 22px;
  }

  .text-content-heading,
  .content-text-block p {
    font-size: 24px;
  }

  .carousel-card-large .card-title {
    font-size: 24px;
  }

  .carousel-card-small .card-title {
    font-size: 21px;
  }
}

/* =========================================================
   SEO + GEO CONTENT BLOCKS
   ========================================================= */
.seo-answer-section,
.problem-language-section,
.competitor-compare-section,
.resources-section,
.homepage-faq-section {
  padding: 80px 104px;
}

.seo-answer-section {
  background: #fffdf5;
}

.problem-language-section {
  background: #f8f7f3;
}

.competitor-compare-section {
  background: #ffffff;
}

.resources-section {
  background: #f8f5e8;
}

.homepage-faq-section {
  background: #fcfcfa;
}

.seo-answer-inner,
.problem-language-inner,
.competitor-compare-inner,
.resources-inner,
.homepage-faq-inner {
  max-width: 1224px;
  margin: 0 auto;
}

.seo-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8c7533;
  margin-bottom: 16px;
}

.seo-answer-title,
.problem-language-inner h2,
.competitor-compare-inner h2,
.resources-inner h2,
.homepage-faq-inner h2 {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1.04em;
  color: var(--landing-dark);
  margin-bottom: 18px;
}

.seo-answer-lead,
.problem-language-inner > p,
.competitor-compare-note,
.resources-inner > p {
  font-family: 'Manrope', var(--font-sans);
  font-size: 21px;
  line-height: 1.6em;
  color: #444;
}

.seo-answer-lead {
  max-width: 980px;
}

.seo-answer-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.seo-answer-card {
  background: #fff;
  border: 1px solid #ece6d8;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.seo-answer-card h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.1em;
  margin-bottom: 14px;
  color: var(--landing-dark-2);
}

.seo-answer-card p {
  font-family: 'Manrope', var(--font-sans);
  font-size: 17px;
  line-height: 1.6em;
  color: #4a4a4a;
}

.problem-language-list {
  margin-top: 24px;
  padding-left: 24px;
  display: grid;
  gap: 14px;
}

.problem-language-list li {
  font-family: 'Manrope', var(--font-sans);
  font-size: 18px;
  line-height: 1.5em;
  color: #2b2b2b;
}

.shopify-apps-keyword-section {
  padding: 80px 104px;
  background: #fffaf0;
}

.shopify-apps-keyword-inner {
  max-width: 1224px;
  margin: 0 auto;
}

.shopify-apps-keyword-inner h2 {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1.04em;
  color: var(--landing-dark);
  margin-bottom: 18px;
}

.shopify-apps-lead {
  font-family: 'Manrope', var(--font-sans);
  font-size: 21px;
  line-height: 1.6em;
  color: #444;
}

.shopify-apps-list {
  margin-top: 22px;
  padding-left: 24px;
  display: grid;
  gap: 12px;
}

.shopify-apps-list li {
  font-family: 'Manrope', var(--font-sans);
  font-size: 17px;
  line-height: 1.6em;
  color: #2f2f2f;
}

.shopify-apps-cta {
  margin-top: 20px;
  font-family: 'Manrope', var(--font-sans);
  font-size: 17px;
  color: #3c3c3c;
}

.shopify-apps-cta a {
  color: #8e6a10;
  text-decoration: none;
  border-bottom: 1px solid rgba(142, 106, 16, 0.35);
}

.shopify-apps-cta a:hover {
  color: #6d4f08;
}

.authority-references-section {
  padding: 80px 104px;
  background: #f7f4ec;
}

.authority-references-inner {
  max-width: 1224px;
  margin: 0 auto;
}

.authority-references-inner h2 {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1.04em;
  color: var(--landing-dark);
  margin-bottom: 18px;
}

.authority-references-lead {
  font-family: 'Manrope', var(--font-sans);
  font-size: 19px;
  line-height: 1.6em;
  color: #4a4a4a;
}

.authority-reference-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.authority-reference-card {
  background: #fff;
  border: 1px solid #eae3d4;
  border-radius: 20px;
  padding: 24px;
}

.authority-reference-card h3 {
  font-family: var(--font-serif);
  font-size: 31px;
  line-height: 1.08em;
  margin-bottom: 14px;
  color: #242424;
}

.authority-reference-card ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.authority-reference-card li {
  font-family: 'Manrope', var(--font-sans);
  font-size: 16px;
  line-height: 1.5em;
  color: #333;
}

.authority-reference-card a {
  color: #8a6a16;
  text-decoration: none;
}

.authority-reference-card a:hover {
  text-decoration: underline;
}

.competitor-compare-note {
  margin-bottom: 24px;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid #eee8d8;
  border-radius: 16px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  background: #fff;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #f0ebe1;
  text-align: left;
  font-family: 'Manrope', var(--font-sans);
}

.compare-table th {
  font-size: 16px;
  font-weight: 700;
  color: #2a2a2a;
  background: #fbf9f3;
}

.compare-table td {
  font-size: 15px;
  color: #464646;
}

.compare-table td:first-child {
  font-weight: 600;
  color: #1f1f1f;
}

.competitor-legal-note {
  margin-top: 14px;
  font-family: 'Manrope', var(--font-sans);
  font-size: 13px;
  line-height: 1.6em;
  color: #6d6d6d;
}

.resource-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.resource-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e9e1ce;
  padding: 24px;
}

.resource-card h3 {
  font-family: var(--font-serif);
  font-size: 31px;
  line-height: 1.1em;
  margin-bottom: 12px;
}

.resource-card h3 a {
  color: var(--landing-dark);
  text-decoration: none;
}

.resource-card h3 a:hover {
  color: #a48321;
}

.resource-card p {
  font-family: 'Manrope', var(--font-sans);
  font-size: 17px;
  line-height: 1.6em;
  color: #4a4a4a;
}

.faq-items {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid #ebe8df;
  border-radius: 14px;
  background: #fff;
  padding: 0 20px;
  transition: border-color 0.15s ease;
}

.faq-item:hover,
.faq-item.faq-open {
  border-color: var(--landing-yellow);
}

.faq-summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.1em;
  color: #1f1f1f;
  padding: 20px 0;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.faq-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s 0.025s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.faq-answer > * {
  overflow: hidden;
}

.faq-item.faq-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 20px;
}

.faq-answer p {
  font-family: 'Manrope', var(--font-sans);
  font-size: 16px;
  line-height: 1.6em;
  color: #4b4b4b;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  font-family: 'Manrope', var(--font-sans);
  color: var(--landing-text-light);
  text-decoration: none;
  font-size: 15px;
  opacity: 0.86;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--landing-yellow);
}

@media (max-width: 1200px) {
  .seo-answer-section,
  .problem-language-section,
  .competitor-compare-section,
  .resources-section,
  .shopify-apps-keyword-section,
  .authority-references-section,
  .homepage-faq-section {
    padding: 60px 40px;
  }

  .seo-answer-title,
  .problem-language-inner h2,
  .competitor-compare-inner h2,
  .resources-inner h2,
  .shopify-apps-keyword-inner h2,
  .authority-references-inner h2,
  .homepage-faq-inner h2 {
    font-size: 40px;
  }

  .seo-answer-grid {
    grid-template-columns: 1fr;
  }

  .resource-cards {
    grid-template-columns: 1fr;
  }

  .authority-reference-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .seo-answer-section,
  .problem-language-section,
  .competitor-compare-section,
  .resources-section,
  .shopify-apps-keyword-section,
  .authority-references-section,
  .homepage-faq-section {
    padding: 48px 20px;
  }

  .seo-answer-title,
  .problem-language-inner h2,
  .competitor-compare-inner h2,
  .resources-inner h2,
  .shopify-apps-keyword-inner h2,
  .authority-references-inner h2,
  .homepage-faq-inner h2 {
    font-size: 30px;
  }

  .seo-answer-lead,
  .problem-language-inner > p,
  .competitor-compare-note,
  .shopify-apps-lead,
  .authority-references-lead,
  .resources-inner > p {
    font-size: 16px;
  }

  .seo-answer-card h3,
  .faq-summary {
    font-size: 22px;
  }

  .resource-card h3 {
    font-size: 25px;
  }

  .problem-language-list li {
    font-size: 16px;
  }

  .authority-reference-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .faq-item {
    padding: 0 14px;
  }

  .faq-summary {
    padding: 16px 0;
    font-size: 20px;
  }

  .faq-answer p,
  .resource-card p,
  .seo-answer-card p,
  .shopify-apps-list li,
  .authority-reference-card li {
    font-size: 15px;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-links a {
    font-size: 14px;
  }
}

/* =========================================================
   SCROLL-HINT ARROW
   ========================================================= */
@keyframes scrollHintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.scroll-hint {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(200, 185, 175, 0.5);
  background: rgba(255, 252, 247, 0.85);
  backdrop-filter: blur(8px);
  color: var(--landing-dark);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  animation: scrollHintBounce 1.8s ease-in-out infinite;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.scroll-hint-visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-hint-hidden {
  opacity: 0;
  pointer-events: none;
}
