@charset "UTF-8";
/* Karinov.co.id — Agent-first Platform (BLUEPRINT.md) */
:root {
  --navy: #000000; /* Pure black for Canyon vibes */
  --navy-light: #1a1a1a;
  --white: #ffffff;
  --gray-50: #f7faff;
  --gray-100: #efeff0;
  --gray-200: #e2e2e3;
  --gray-400: #8d8d8e;
  --gray-600: #585859;
  --gray-800: #2c2c2d;
  --text: #000000;
  --text-muted: #585859;
  --border: #e2e2e3;
  --ink: #000000;
  --dim: #585859;
  --accent: #094c46;
  --btn-bg: #0f1f3d;
  --radius: 0px;
  --font-heading: "Stack Sans Headline", sans-serif;
  --font-body: "Google Sans Flex", sans-serif;
  --shadow-sm: none;
  --shadow-md: none;
  --transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  font-family: var(--font-body);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--btn-bg);
  color: var(--white);
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 0;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-top: 0;
  line-height: 1.2;
}

p {
  margin-top: 0;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 40px;
}

th, td {
  padding: 10px;
  text-align: left;
  border: 1px solid var(--border);
}

th {
  background-color: var(--gray-50);
  font-weight: 600;
  white-space: normal;
}

table {
  -webkit-overflow-scrolling: touch;
}

/* HEADER */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.site-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 40px;
}

.nav-logo-img {
  height: 75px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav .page-link {
  color: var(--gray-800);
  text-decoration: none;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.site-nav .page-link:hover {
  color: var(--navy);
}

.btn-submit {
  background: var(--btn-bg) !important;
  color: var(--white) !important;
  margin-left: 20px;
  padding: 8px 20px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  transition: background var(--transition) !important;
}
.btn-submit:hover {
  background: #1a3060 !important;
}

.nav-trigger, .menu-icon {
  display: none;
}

/* HERO BANNER — Split-panel layout (reference design) */
.hero-banner {
  display: flex;
  flex-direction: column;
}

/* Top pale-blue split panel */
.hero-top {
  background: #e8eef8;
  padding: 56px 0 48px;
}

.hero-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Left column */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-overline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
  display: block;
}

.hero-banner h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #111;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
}

/* Right column */
.hero-right {
  padding-top: 4px;
}

.hero-desc {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 420px;
}

.hero-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 0 0 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--btn-bg);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-hero-primary:hover {
  background: #1a3060;
}

.hero-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #333;
  text-transform: uppercase;
}
.hero-contact svg {
  flex-shrink: 0;
  color: #555;
}

/* Bottom full-bleed image strip */
.hero-image-strip {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.hero-image-strip img {
  width: 100%;
  height: 365px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* SECTION HELPERS */
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.section-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin: 0;
}

.view-all-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.06em;
}
.view-all-link:hover {
  text-decoration: underline;
}

/* REVIEWS SECTION (kept for legacy compatibility) */
.reviews-section {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.review-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.review-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform var(--transition);
}
.review-card:hover .review-card-body h3 {
  text-decoration: none;
}

.review-card-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.review-card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.review-card-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
}

.review-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
  color: var(--text);
}

.review-card-meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.review-card--placeholder {
  opacity: 0.55;
  pointer-events: none;
}
.review-card--placeholder .review-card-badge {
  background: var(--text-muted);
}

/* GENERATORS SECTION */
.generators-section {
  padding: 72px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}

.generators-header {
  margin-bottom: 40px;
}
.generators-header .generators-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gray-600);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.generators-header .generators-heading {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

.gen-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.gen-card:hover {
  border-color: var(--gray-400);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.gen-card:hover .gen-card-title {
  text-decoration: none;
}

.gen-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.gen-card-body {
  flex: 1;
  min-width: 0;
}

.gen-card-category {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.gen-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gen-card-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.generators-footer {
  margin-top: 32px;
  text-align: center;
}

.gen-view-all {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
}
.gen-view-all:hover {
  opacity: 0.7;
}

/* CLIENTS MARQUEE */
.clients-band {
  position: relative;
  z-index: 2;
  padding: 72px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.clients-band-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-bottom: 36px;
}

.clients-marquee-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marquee-scroll 48s linear infinite;
  will-change: transform;
}

.clients-marquee-wrap:hover .clients-marquee-track {
  animation-play-state: paused;
}

.clients-marquee-track a {
  display: inline-flex;
  line-height: 0;
  flex-shrink: 0;
  position: relative;
}

.clients-marquee-track img {
  display: block;
  pointer-events: none;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.client-logo {
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.4);
  flex-shrink: 0;
  transition: filter 0.3s ease;
}

/* TOPICAL / CATEGORIES */
.topical-section {
  padding: 60px 0;
  background: #fff;
}

.topical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.topic-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition);
}
.topic-card:hover {
  border-color: var(--navy);
}

.topic-card-thumb {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 200px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.topic-card-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
}
.topic-card-thumb h3 {
  position: relative;
  z-index: 1;
  color: var(--white);
  margin: 0;
  font-size: 1.15rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.topic-btn {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 6px 6px 6px 14px;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition);
}
.topic-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}

.topic-btn-arrow {
  background: var(--white);
  color: #222;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.topic-card-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.topic-card-list p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.topic-card-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.topic-card-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.topic-card-list li::before {
  content: "•";
  color: #2975bf;
  font-weight: bold;
  flex-shrink: 0;
}

/* CORE CAPABILITIES SECTION */
.core-capabilities-section {
  position: relative;
  padding: 60px 0;
  background-color: #fff;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.dot-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgb(232, 238, 248) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

.relative-z {
  position: relative;
  z-index: 1;
}

.core-cap-header {
  text-align: left;
  margin-bottom: 32px;
}

.core-cap-overline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #2975bf;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.core-cap-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
}

.core-cap-title-dark {
  color: #111827;
}

.core-cap-title-light {
  color: #9ca3af;
}

.core-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #e5e7eb;
  border: 1px solid #e5e7eb;
  gap: 1px;
}

.core-cap-box {
  background-color: #fff;
  padding: 32px;
}

.core-box-overline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #9ca3af;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.core-cap-box h3 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.core-box-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.core-box-list li {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.list-arrow {
  color: #111827;
  margin-right: 12px;
  font-weight: bold;
}

/* USE CASES SECTION */
.usecases-section {
  position: relative;
  padding: 60px 0;
  background-color: #fff;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.usecases-list {
  border: 1px solid var(--border);
  margin-top: 40px;
}

.usecase-row {
  display: grid;
  grid-template-columns: 1fr 260px;
  border-bottom: 1px solid var(--border);
}
.usecase-row:last-child {
  border-bottom: none;
}

.usecase-row--expanded {
  background: var(--gray-50);
}

.usecase-left {
  padding: 32px 36px;
}

.usecase-tag {
  display: inline-block;
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2975bf;
  border: 1px solid #d1e0f5;
  background: #f0f6ff;
  padding: 4px 12px;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.usecase-headline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.55;
  max-width: 640px;
}

.usecase-headline--accent {
  color: var(--text);
  margin-bottom: 12px;
}

.usecase-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

.usecase-right {
  padding: 32px 36px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
}

.usecase-stat {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gray-400);
  line-height: 1;
  letter-spacing: -0.03em;
}

.usecase-stat--accent {
  color: #2975bf;
}

.usecase-stat-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.usecase-stat-bar {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--border);
  margin-top: 10px;
  align-self: flex-end;
}

.usecase-stat-bar--accent {
  background: #2975bf;
}

/* FIND YOUR PACK */
.find-pack-section {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.find-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.find-pack-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  background: var(--gray-50);
  transition: border-color var(--transition);
}
.find-pack-card:hover {
  border-color: var(--navy);
}
.find-pack-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
}
.find-pack-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 12px;
}

.find-pack-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.find-pack-link {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
}

/* MAP SECTION */
.map-section {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.map-content h3 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  line-height: 1;
}
.map-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 480px;
}

.map-stats {
  display: flex;
  gap: 40px;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.stat-item span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}

.map-visual {
  position: relative;
}
.map-visual img {
  width: 100%;
  filter: grayscale(1) brightness(0.6) contrast(1.2);
  opacity: 0.8;
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
  animation: pulse 2s infinite;
}

.dot-1 {
  top: 35%;
  left: 45%;
}

.dot-2 {
  top: 50%;
  left: 25%;
}

.dot-3 {
  top: 65%;
  left: 75%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
/* COMPARE SECTION */
.compare-section {
  padding: 100px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.compare-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 48px 0;
}

.compare-item {
  width: 320px;
  border: 1px solid var(--border);
  padding: 24px;
  transition: border-color var(--transition);
}
.compare-item:hover {
  border-color: var(--navy);
}

.compare-image {
  margin-bottom: 20px;
}
.compare-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.compare-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.compare-info .compare-rating {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--navy);
  color: var(--white);
  padding: 3px 8px;
  margin-bottom: 16px;
}

.compare-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}
.compare-specs li {
  padding: 8px 0;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
}
.compare-specs li strong {
  color: var(--gray-400);
  font-weight: 600;
}

.compare-vs {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-200);
}

.compare-cta {
  text-align: center;
  margin-top: 40px;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--gray-50);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-strip-item svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--navy);
}
.trust-strip-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.trust-strip-item span {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* NEWSLETTER */
.newsletter-section {
  background: var(--gray-100);
  padding: 48px 0;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 40px;
  align-items: center;
}

.newsletter-text h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.newsletter-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.newsletter-input-row {
  display: flex;
  gap: 0;
}
.newsletter-input-row input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 0.88rem;
  font-family: var(--font);
  outline: none;
}
.newsletter-input-row input:focus {
  border-color: var(--navy);
}
.newsletter-input-row button {
  background: var(--btn-bg);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-family: var(--font);
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  transition: background var(--transition);
}
.newsletter-input-row button:hover {
  background: var(--navy-light);
}

.newsletter-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

.newsletter-image img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 15px;
}

/* FOOTER — Biketrace-style */
.footer-main {
  background: #0a0a0a;
  padding: 64px 0 56px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid-new {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 240px;
  gap: 48px;
  align-items: start;
}

/* Brand column */
.fnew-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fnew-logo-mark {
  margin-bottom: 14px;
  opacity: 0.9;
}

.fnew-brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 14px;
}

.fnew-brand-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 12px;
}

.fnew-brand-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.fnew-brand-location {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

.fnew-brand-img {
  width: 180px;
  height: auto;
  display: block;
}

/* Link columns */
.fnew-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fnew-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 5px 0;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.fnew-links a:hover {
  color: #fff;
}

/* Info / contact column */
.fnew-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fnew-info-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fnew-info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fnew-info-value {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  line-height: 1.55;
}
.fnew-info-value[href] {
  transition: color 0.2s ease;
}
.fnew-info-value[href]:hover {
  color: #fff;
}

.fnew-social-mobile {
  display: none;
}

.fnew-social-desktop {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.fnew-social-desktop .footer-bar-social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fnew-social-desktop .footer-bar-social-icons a {
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.fnew-social-desktop .footer-bar-social-icons a:hover {
  color: #fff;
}
.fnew-social-desktop .footer-bar-follow {
  margin-left: 0;
}

/* Bottom bar */
.footer-bar {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}

.footer-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bar-copy {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.footer-bar-follow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  margin-left: 4px;
}

.footer-bar-location {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-bar-location span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

/* Legacy wrappers kept for compatibility */
.wrapper-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
}

.footer-bottom {
  display: none;
}

/* Footer responsive */
@media (max-width: 900px) {
  .footer-grid-new {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .fnew-brand {
    grid-column: 1/-1;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .fnew-brand-divider {
    display: none;
  }
}
@media (max-width: 600px) {
  .footer-grid-new {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fnew-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .footer-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-inner, .footer-bar-inner {
    padding: 0 20px;
  }
  .fnew-social-desktop {
    display: none;
  }
  .fnew-social-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    width: 100%;
  }
  .fnew-social-mobile .footer-bar-social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .fnew-social-mobile .footer-bar-social-icons a {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
  }
  .fnew-social-mobile .footer-bar-social-icons a:hover {
    color: #fff;
  }
  .fnew-social-mobile .footer-bar-follow {
    margin-left: 0;
  }
}
/* PAGE CONTENT */
.page-content {
  min-height: 60vh;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fontff-footnote hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 2rem 0 0.75rem;
}

.fontff-footnote p {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
}

.fontff-footnote a {
  color: #888;
  text-underline-offset: 4px;
  text-decoration: underline;
}

.fontff-footnote a:hover {
  color: #555;
}

/* POST LAYOUT */
.post-wrapper {
  padding: 60px 0 80px;
}

.post-header-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.post-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.post-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.post-header-tag-container {
  margin-bottom: 40px;
}

.post-header-tag {
  display: inline-block;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
}

.post-author-block {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
  padding-top: 10px;
}

.post-header-author {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}

.post-header-image {
  width: 100%;
}
.post-header-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
}

.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}
.post-content.hide-first-h1 h1:first-of-type {
  display: none;
}
.post-content h2 {
  font-size: 1.5rem;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}
.post-content h3 {
  font-size: 1.3rem;
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.post-content p {
  margin-bottom: 1.5em;
}
.post-content a {
  color: var(--navy);
  text-decoration: none;
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-bottom: 2em;
  overflow-x: auto;
  display: block;
}
.post-content table th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.85rem;
}
.post-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.post-content table tr:hover td {
  background: var(--gray-50);
}
.post-content ul, .post-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.post-content li {
  margin-bottom: 0.5em;
}

.hide-first-h1 h1:first-child {
  display: none;
}

.post-cat-tag {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 20px;
}

/* RELATED */
.related-content-section {
  max-width: 1000px;
  margin: 80px auto 0;
  padding-top: 60px;
}

.related-content-heading {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--text);
}

.related-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: 16px;
}
.related-card:hover {
  border-color: var(--navy);
}
.related-card:hover .related-card-title {
  text-decoration: underline;
}
.related-card-img {
  margin-bottom: 20px;
}
.related-card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.related-card-tag {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.related-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 24px;
}
.related-card-date {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* TOPIC PAGE */
.topic-header {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
  background: var(--gray-50);
}
.topic-header h1 {
  font-size: 3rem;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.topic-meta-top {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--navy);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.topic-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.65;
}
.topic-description p {
  margin: 0;
}

.topic-posts-section {
  padding: 60px 0;
}

.section-title-alt {
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-title-alt h2 {
  font-size: 1rem;
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.no-posts {
  grid-column: 1/-1;
  padding: 80px 40px;
  text-align: center;
  background: var(--gray-50);
  border: 1px dashed var(--border);
  color: var(--gray-400);
  border-radius: var(--radius);
  font-size: 1rem;
}

/* POSTS GRID (reused on topic pages) */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.post-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.post-card:hover h3 {
  text-decoration: underline;
}
.post-card-img {
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: var(--radius);
}
.post-card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.post-card-cat {
  font-size: 0.68rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}
.post-card h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 700;
}
.post-card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* AUTHOR BIO */
.author-bio-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}
.author-bio-box .author-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-bio-box .author-info h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}
.author-bio-box .author-info p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.author-bio-box .author-info .author-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.author-bio-box .author-info .author-link:hover {
  text-decoration: underline;
}

/* AD CARD */
.ad-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  max-width: 500px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  text-decoration: none;
  transition: border-color 0.2s ease;
  margin: 30px auto;
  text-align: left;
}
.ad-card:hover {
  border-color: var(--navy);
}

.top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.app-icon {
  width: 62px;
  height: 62px;
  border-radius: 15px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
  margin: 0;
}

.right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-top: 2px;
}

.install-btn {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--navy);
  border-radius: 5px;
  padding: 6px 20px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, color 0.15s;
}
.install-btn:hover {
  background: var(--navy);
  color: #fff;
}

.app-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}

.description {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  border-top: 1px solid var(--gray-100);
  padding-top: 12px;
  margin: 10px 0 0;
}

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  color: var(--navy);
  background: var(--gray-50);
  border-radius: 4px;
  padding: 2px 6px;
  margin-bottom: 5px;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 3px;
}

.star {
  color: #F5A623;
  font-size: 12px;
}

.rating-label {
  font-size: 11.5px;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 2px;
}

/* BREADCRUMB */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb-nav a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-nav a:hover {
  color: var(--text);
  text-decoration: underline;
}
.breadcrumb-nav span[aria-hidden=true] {
  color: var(--border);
  font-size: 0.9rem;
}

/* PAGE LAYOUT */
.page-content-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 40px;
}
.page-content-inner h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
}

/* CTA BANNER */
.cta-banner-section {
  padding: 0 0 90px;
  background: #fff;
}

.cta-banner {
  position: relative;
  background: #0f1f3d;
  border-radius: 16px;
  padding: 36px 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-grid-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.cta-banner-text h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.cta-banner-text p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0f1f3d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: background var(--transition), color var(--transition);
}
.cta-banner-btn:hover {
  background: #e8eef8;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .topical-grid {
    grid-template-columns: 1fr;
  }
  .review-cards-grid, .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .generators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .find-pack-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-inner {
    grid-template-columns: 1fr;
  }
  .newsletter-image {
    display: none;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .post-header-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .clients-marquee-track {
    gap: 56px;
  }
  .client-logo {
    max-height: 36px;
  }
}
@media (max-width: 768px) {
  .wrapper {
    padding: 40px 20px 40px;
  }
  .site-header .wrapper {
    height: 56px;
    padding: 0 20px;
  }
  .nav-logo-img {
    height: 44px;
  }
  .menu-icon {
    display: block;
    cursor: pointer;
    padding: 6px;
    position: relative;
    z-index: 401;
  }
  .menu-icon svg {
    fill: var(--navy);
    transition: fill var(--transition);
  }
  .site-nav .trigger {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 400;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .site-nav .trigger .page-link {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 12px 24px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
    color: var(--text);
  }
  .site-nav .trigger .page-link:last-child {
    border-bottom: none;
  }
  .site-nav .trigger .page-link.btn-submit {
    background: var(--btn-bg) !important;
    color: var(--white) !important;
    margin: 8px 16px 4px;
    width: calc(100% - 32px);
    border-radius: 0 !important;
    border-bottom: none !important;
    font-size: 0.82rem !important;
    text-align: center !important;
    padding: 11px 24px !important;
  }
  .nav-trigger:checked ~ .trigger {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-trigger:checked ~ label .menu-icon svg {
    fill: var(--navy);
  }
  /* Table responsive styling */
  table {
    display: block;
    overflow-x: auto;
    white-space: normal;
    font-size: smaller;
  }
  /* Hero responsive */
  .hero-top {
    padding: 48px 0 36px;
  }
  .hero-top-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 24px;
  }
  .hero-banner h1 {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .hero-desc {
    max-width: 100%;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .hero-image-strip img {
    height: 260px;
  }
  /* Clients band */
  .clients-band {
    padding: 48px 0;
  }
  .clients-marquee-track {
    gap: 48px;
    animation-duration: 36s;
  }
  .client-logo {
    max-height: 32px;
  }
  /* Sections */
  .review-cards-grid, .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .generators-grid {
    grid-template-columns: 1fr;
  }
  .generators-section {
    padding: 48px 0;
  }
  .gen-card {
    padding: 20px;
  }
  .related-content-grid {
    grid-template-columns: 1fr;
  }
  .topic-card {
    grid-template-columns: 1fr;
  }
  .topic-card-thumb {
    min-height: 160px;
  }
  .topical-section {
    padding: 48px 0;
  }
  .topic-header h1 {
    font-size: 2.4rem;
  }
  .post-title {
    font-size: 2rem;
  }
  .post-wrapper {
    padding-top: 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .brands-logo-grid {
    gap: 16px 24px;
  }
  .find-pack-card {
    padding: 20px;
  }
  .find-pack-section {
    padding: 48px 0;
  }
  .trust-strip {
    padding: 36px 0;
  }
  .trust-strip-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .trust-strip-item {
    flex-direction: row;
    text-align: left;
  }
  .core-capabilities-section {
    padding: 48px 0;
  }
  .core-cap-header h2 {
    font-size: 2.2rem;
  }
  .core-cap-grid {
    grid-template-columns: 1fr;
  }
  .core-cap-box {
    padding: 32px 24px;
  }
  /* USE CASES */
  .usecases-section {
    padding: 48px 0;
  }
  .usecase-row {
    grid-template-columns: 1fr;
  }
  .usecase-right {
    border-left: none;
    border-top: 1px solid var(--border);
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 20px 28px;
    text-align: left;
  }
  .usecase-stat {
    font-size: 2rem;
  }
  .usecase-stat-bar {
    margin-top: 0;
    align-self: center;
  }
  .usecase-left {
    padding: 24px 28px 20px;
  }
  /* MOBILE MAP & COMPARE */
  .map-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .map-content h3 {
    font-size: 2.2rem;
  }
  .map-content p {
    margin: 0 auto 32px;
  }
  .map-stats {
    justify-content: center;
  }
  .compare-grid {
    flex-direction: column;
    gap: 20px;
  }
  .compare-item {
    width: 100%;
  }
  .compare-vs {
    transform: rotate(90deg);
  }
  /* CTA responsive */
  .cta-banner {
    padding: 32px 24px;
  }
  .cta-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
  }
  .cta-banner-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  /* Tool header responsive */
  .tool-header {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .tool-header h1 {
    font-size: 2rem;
  }
  .tool-description {
    font-size: 1rem;
  }
  .tool-content {
    margin: 40px auto;
  }
  .content-left h2 {
    font-size: 1.75rem;
  }
  .content-left h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .review-cards-grid, .posts-grid, .generators-grid, .related-content-grid, .trust-strip-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .hero-top {
    padding: 44px 0 36px;
  }
  .hero-top-inner {
    padding: 0 16px;
    gap: 20px;
  }
  .hero-banner h1 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .hero-desc {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .hero-image-strip img {
    height: 160px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .btn-hero-primary {
    justify-content: center;
    text-align: center;
    padding: 15px 20px;
    font-size: 0.85rem;
  }
  /* Clients band */
  .clients-band {
    padding: 36px 0;
  }
  .clients-band-label {
    font-size: 0.65rem;
    margin-bottom: 24px;
  }
  .clients-marquee-track {
    gap: 36px;
    animation-duration: 28s;
  }
  .client-logo {
    max-height: 28px;
  }
  /* Sections */
  .generators-section {
    padding: 40px 0;
  }
  .generators-heading {
    font-size: 1.35rem;
  }
  .gen-card {
    padding: 16px;
    gap: 14px;
  }
  .gen-card-title {
    font-size: 0.95rem;
  }
  .gen-card-desc {
    font-size: 0.82rem;
  }
  .topic-card-thumb {
    min-height: 140px;
  }
  .topic-card-thumb h3 {
    font-size: 1rem;
  }
  .topical-section {
    padding: 36px 0;
  }
  .find-pack-card {
    padding: 16px;
  }
  .find-pack-section {
    padding: 36px 0;
  }
  .trust-strip {
    padding: 28px 0;
  }
  .trust-strip-item {
    gap: 12px;
    font-size: 0.85rem;
  }
  .author-bio-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  /* Footer */
  .fnew-brand-img {
    width: 140px;
  }
  .fnew-brand-name {
    font-size: 1.1rem;
  }
  .footer-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.75rem;
  }
  /* Nav logo */
  .nav-logo-img {
    height: 70px;
  }
  .site-header .wrapper {
    height: 72px;
  }
  /* Generators footer */
  .core-cap-header h2 {
    font-size: 1.75rem;
  }
  .core-cap-box {
    padding: 24px 20px;
  }
  /* USE CASES small */
  .usecases-section {
    padding: 36px 0;
  }
  .usecase-left {
    padding: 20px 20px 16px;
  }
  .usecase-tag {
    font-size: 0.75rem;
    padding: 3px 10px;
    margin-bottom: 14px;
  }
  .usecase-headline {
    font-size: 0.9rem;
  }
  .usecase-desc {
    font-size: 0.82rem;
  }
  .usecase-right {
    padding: 16px 20px;
  }
  .usecase-stat {
    font-size: 1.6rem;
  }
  .usecase-stat-label {
    font-size: 0.68rem;
  }
  /* Tool header 480px */
  .tool-header {
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .tool-header h1 {
    font-size: 1.5rem;
  }
  .tool-description {
    font-size: 0.9rem;
  }
  .tool-content {
    margin: 28px auto;
  }
  .content-left h2 {
    font-size: 1.5rem;
  }
  .content-left h3 {
    font-size: 1.15rem;
  }
}
/* 404 PAGE */
.error-404 {
  text-align: center;
  padding: 80px 0;
}
.error-404 .error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--gray-100);
  margin-bottom: -20px;
  line-height: 1;
}
.error-404 h1 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.error-404 p {
  max-width: 500px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.error-404 .error-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.error-404 .error-actions .btn {
  padding: 14px 28px;
  font-size: 0.9rem;
}

/* FAQ Styles */
.tool-faq {
  margin: 3rem auto;
  max-width: 800px;
}

.tool-faq h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.faq-item {
  border: 1px solid #eaeaea;
  border-bottom: none;
  background: #fff;
  transition: background 0.2s ease;
}

.faq-item:first-of-type {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.faq-item:last-of-type {
  border-bottom: 1px solid #eaeaea;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--black);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #eaeaea;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 20px 20px 20px;
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
}

/* Tool Header Styles (Title & Description) */
.tool-header {
  margin-top: 3rem;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2.5rem;
}

.tool-header .tool-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.tool-header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a202c;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tool-header .tool-description {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.6;
  margin-top: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Tool Content Split Layout */
.tool-content {
  margin: 60px auto;
  max-width: 1040px;
}

.content-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-bottom: 60px;
  align-items: start;
}

.content-left {
  min-width: 0;
  position: sticky;
  top: 100px;
}
.content-left .content-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #3182ce; /* Blue like Pinecone */
  margin-bottom: 16px;
}
.content-left h2, .content-left h3, .content-left h4, .content-left h5, .content-left h6 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.content-left h3 {
  font-size: 1.5rem;
}
.content-left h4 {
  font-size: 1.25rem;
}

.content-right {
  text-align: left;
  min-width: 0; /* Critical: prevents grid child from overflowing */
  /* Styling for tables in right column */
}
.content-right p, .content-right li, .content-right div {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.75;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.content-right ul, .content-right ol {
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  color: #4a5568;
  text-align: left;
}
.content-right p:last-child, .content-right ul:last-child {
  margin-bottom: 0;
}
.content-right table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.content-right table th, .content-right table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  white-space: nowrap;
}
.content-right table th {
  font-weight: 700;
  color: var(--navy);
  background: var(--gray-50);
}

@media (max-width: 900px) {
  .content-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  .content-left {
    position: static;
  }
  .tool-content {
    padding: 0 4px;
  }
}
@media (max-width: 768px) {
  .content-row {
    gap: 12px;
    margin-bottom: 24px;
  }
  .tool-header h1 {
    font-size: 1.75rem;
  }
  .tool-header .tool-description {
    font-size: 1rem;
  }
  .content-left h2 {
    font-size: 1.5rem;
  }
  .content-left h3 {
    font-size: 1.25rem;
  }
}
/* CALLOUT BOXES */
blockquote, .callout {
  border-top: 0.5px solid #e5e7eb;
  border-bottom: 0.5px solid #e5e7eb;
  padding: 2rem 2.5rem;
  margin: 1.5rem 0;
  display: block;
  background-color: var(--gray-50);
  background-image: radial-gradient(rgba(49, 130, 206, 0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  background-position: 0 0;
  /* Support for author attribution if used */
}
blockquote p, .callout p {
  margin: 0 0 0.75rem 0;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: #334155;
}
blockquote p:last-child, .callout p:last-child {
  margin-bottom: 0;
}
blockquote p:not(:first-of-type), .callout p:not(:first-of-type) {
  font-size: 0.95rem;
  color: #64748b;
}
blockquote strong, .callout strong {
  font-weight: 600;
  color: #0f172a;
}

.highlight {
  background: #f8fafc;
  border: 0.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.highlight code {
  font-family: monospace;
  font-size: 0.875rem;
  line-height: 1.7;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a202c;
  color: #e2e8f0;
  padding: 16px 24px;
  z-index: 9999;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.cookie-banner-text {
  margin: 0;
  flex: 1;
  min-width: 240px;
}

.cookie-banner-link {
  color: #63b3ed;
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.cookie-btn-reject {
  background: transparent;
  color: #a0aec0;
  border: 1px solid #4a5568;
}

.cookie-btn-accept {
  background: #3182ce;
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-weight: 600;
}

/* FOOTER SPACER */
.fnew-spacer {
  margin-top: 18px;
}

/* =============================================
   AI AGENT CTA FORM
   ============================================= */
.aicta-form-section {
  margin: 64px 0 0;
  padding: 48px 0 56px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.aicta-form-inner {
  max-width: 760px;
  margin: 0 auto;
}

.aicta-form-header {
  text-align: center;
  margin-bottom: 32px;
}

.aicta-form-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.aicta-form-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
}

.aicta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aicta-form-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 6px 6px 6px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
@media (max-width: 640px) {
  .aicta-form-row {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 10px;
    border-radius: 8px;
  }
}

.aicta-input-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  border-right: 1px solid #e2e8f0;
  padding: 0 12px;
}
@media (max-width: 640px) {
  .aicta-input-wrap {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 0;
  }
  .aicta-input-wrap:last-of-type {
    border-bottom: none;
  }
}

.aicta-icon {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  flex-shrink: 0;
  margin-right: 10px;
}

.aicta-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: #1a202c;
  outline: none;
  font-family: inherit;
  min-width: 0;
}
.aicta-input::placeholder {
  color: #a0aec0;
}

.aicta-submit-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f1f3d;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.aicta-submit-btn:hover {
  background: #1e3a6e;
}
@media (max-width: 640px) {
  .aicta-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }
}

.aicta-form-result {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}
.aicta-form-result.aicta-success {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}
.aicta-form-result.aicta-error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/*# sourceMappingURL=style.css.map */