/* ============================================
   GRYD - Environmental Intelligence Platform
   Corporate Website Styles
   
   Earthy. Technical. Authoritative.
   Oil wells, geology, remediation, compliance.
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Earth tones - deep and grounded */
  --earth-900: #1a1a14;
  --earth-800: #2a2a1e;
  --earth-700: #3d3b2e;
  --earth-600: #504d3c;
  --earth-500: #6b6651;

  /* Slate / geological layers */
  --slate-900: #1b1f23;
  --slate-800: #252b31;
  --slate-700: #333b44;
  --slate-600: #475569;
  --slate-500: #64748b;

  /* Forest / remediation greens */
  --green-900: #0f2419;
  --green-800: #14372a;
  --green-700: #1a4a38;
  --green-600: #2d6a4f;
  --green-500: #40916c;
  --green-400: #52b788;
  --green-300: #74c69d;
  --green-200: #b7e4c7;

  /* Amber / warning / oil tones */
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-300: #fcd34d;
  --amber-200: #fde68a;

  /* Core palette */
  --bg-primary: #0f1210;
  --bg-secondary: #141a16;
  --bg-elevated: #1a211c;
  --bg-surface: #1e2620;
  --bg-light: #f4f1eb;
  --bg-off-white: #eae6dc;

  /* Text */
  --text-primary: #e8e4dc;
  --text-secondary: #a09882;
  --text-muted: #7a7264;
  --text-dark: #1a1a14;
  --text-dark-secondary: #504d3c;

  /* Accent = amber-green blend */
  --accent: #52b788;
  --accent-bright: #74c69d;
  --accent-glow: rgba(82, 183, 136, 0.15);
  --accent-warm: #d97706;
  --accent-warm-glow: rgba(217, 119, 6, 0.12);

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #f4f1eb;
  --border-dark: rgba(255, 255, 255, 0.06);
  --border-light: rgba(26, 26, 20, 0.1);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 18, 16, 0.12), 0 1px 2px rgba(15, 18, 16, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 18, 16, 0.16);
  --shadow-lg: 0 10px 40px rgba(15, 18, 16, 0.2);
  --shadow-glow: 0 0 40px rgba(82, 183, 136, 0.08);
  --shadow-amber: 0 0 30px rgba(217, 119, 6, 0.08);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

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

button {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.75rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
  font-size: 1.05rem;
  color: var(--text-dark-secondary);
  line-height: 1.75;
}

/* --- The [GRYD] Brand Mark --- */
.brand {
  font-family: var(--font-mono);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  position: relative;
}

.brand .bracket {
  color: var(--accent);
  font-weight: 400;
}

/* Navbar brand */
.navbar__brand {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.navbar__brand .brand {
  font-size: 1.4rem;
}

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background-color: var(--bg-primary);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-primary);
}

.section--dark p {
  color: var(--text-secondary);
}

.section--earth {
  background-color: var(--bg-off-white);
}

.section--off-white {
  background-color: var(--bg-off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.grid {
  display: grid;
  gap: 32px;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  gap: 8px;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--green-600);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-500);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.4);
  transform: translateY(-2px);
}

.btn--outline {
  border: 2px solid var(--green-600);
  color: var(--green-600);
  background: transparent;
}

.btn--outline:hover {
  background: var(--green-600);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-light {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  background: transparent;
}

.btn--outline-light:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(82, 183, 136, 0.05);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--bg-primary);
  font-weight: 700;
}

.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(15, 18, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all var(--transition);
  border-bottom: 1px solid var(--border-dark);
}

.navbar.scrolled {
  background: rgba(15, 18, 16, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__logo img {
  height: 40px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar__links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  border-radius: 1px;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--text-primary);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__links a.btn::after {
  display: none;
}

.navbar__cta {
  margin-left: 8px;
}

.navbar__cta.btn--sm {
  padding: 8px 16px;
  font-size: 0.78rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
  border-radius: 1px;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Topographic contour lines instead of grid */
.hero__topo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.06;
  pointer-events: none;
}

.hero__grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(82, 183, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 183, 136, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(
    ellipse,
    rgba(82, 183, 136, 0.06) 0%,
    rgba(45, 106, 79, 0.03) 30%,
    rgba(217, 119, 6, 0.02) 50%,
    transparent 70%
  );
  pointer-events: none;
}

/* Terrain particles canvas */
.hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

/* Giant [GRYD] brand in hero */
.hero__brand {
  font-family: var(--font-mono);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.hero__brand .bracket {
  color: var(--accent);
  font-weight: 300;
  position: relative;
}

.hero__brand .bracket--open::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -40px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent));
  transform: translateY(-50%);
}

.hero__brand .bracket--close::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -40px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: translateY(-50%);
}

.hero__brand-sub {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 40px;
  display: block;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82, 183, 136, 0.08);
  border: 1px solid rgba(82, 183, 136, 0.15);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__tag .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

.hero h1 {
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent-bright), var(--amber-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Geological strata line decoration */
.hero__strata {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  overflow: hidden;
}

.hero__strata::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background:
    linear-gradient(175deg, transparent 40%, rgba(82, 183, 136, 0.04) 41%, rgba(82, 183, 136, 0.04) 42%, transparent 43%),
    linear-gradient(172deg, transparent 50%, rgba(217, 119, 6, 0.03) 51%, rgba(217, 119, 6, 0.03) 52%, transparent 53%),
    linear-gradient(178deg, transparent 60%, rgba(82, 183, 136, 0.02) 61%, rgba(82, 183, 136, 0.02) 63%, transparent 64%);
}

/* --- Page Header (for inner pages) --- */
.page-header {
  padding: 160px 0 80px;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(82, 183, 136, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-header__grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(82, 183, 136, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 183, 136, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.page-header h1 {
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* --- Feature Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all var(--transition);
  border: 1px solid rgba(26, 26, 20, 0.08);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--amber-500));
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-600);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(82, 183, 136, 0.08));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--green-600);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}

.card__link:hover {
  gap: 12px;
  color: var(--green-500);
}

/* --- How It Works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-600), var(--amber-500), var(--green-600), var(--amber-500));
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.3);
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* --- Stats Strip --- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat {
  padding: 20px;
}

.stat__number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent-bright);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  font-family: var(--font-mono);
}

.stat__label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.stat__sub {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.stat__sub-tag {
  display: inline-block;
  background: rgba(82, 183, 136, 0.1);
  color: var(--accent-bright);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial {
  background: var(--white);
  border: 1px solid rgba(26, 26, 20, 0.08);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: all var(--transition);
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-600);
}

.testimonial__quote {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--green-600);
}

.testimonial__author {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.testimonial__role {
  color: var(--text-dark-secondary);
  font-size: 0.85rem;
  margin-top: 2px;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 40%, var(--earth-800) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(82, 183, 136, 0.06), transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* --- Alternating Feature Sections --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-row--reverse {
  direction: rtl;
}

.feature-row--reverse > * {
  direction: ltr;
}

.feature-row__visual {
  background: linear-gradient(135deg, var(--bg-off-white), rgba(82, 183, 136, 0.04));
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26, 26, 20, 0.06);
  position: relative;
  overflow: hidden;
}

.feature-row__visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(82, 183, 136, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 183, 136, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.feature-row__visual-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(45, 106, 79, 0.25);
}

.feature-row__visual-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-row__content h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.feature-row__content p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.feature-list {
  margin-bottom: 28px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-list li .check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(45, 106, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list li .check svg {
  width: 12px;
  height: 12px;
  stroke: var(--green-600);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Roadmap Section --- */
.roadmap {
  background: var(--bg-elevated);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.roadmap h3 {
  color: var(--text-primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.roadmap ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 1rem;
  border-bottom: 1px solid var(--border-dark);
}

.roadmap ul li:last-child {
  border-bottom: none;
}

.roadmap ul li .arrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* --- Values Cards --- */
.value-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26, 26, 20, 0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--amber-500));
  opacity: 0;
  transition: opacity var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-600);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(82, 183, 136, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.value-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--green-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
}

/* --- Contact Cards --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(26, 26, 20, 0.08);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--green-600);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(82, 183, 136, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h4 {
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.95rem;
}

.contact-card a {
  color: var(--green-600);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--green-500);
}

/* --- Social Links --- */
.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}

.social-links a {
  width: 48px;
  height: 48px;
  background: var(--bg-off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark-secondary);
  transition: all var(--transition);
  border: 1px solid rgba(26, 26, 20, 0.08);
}

.social-links a:hover {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
  transform: translateY(-3px);
}

.social-links a svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Footer --- */
.footer {
  background: var(--bg-primary);
  padding: 64px 0 0;
  border-top: 1px solid var(--border-dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__brand-name {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.08em;
}

.footer__brand-name .bracket {
  color: var(--accent);
  font-weight: 300;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer__col h4 {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer__col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color var(--transition);
}

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer__bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Brand Reveal Animation --- */
@keyframes brandReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 0.2em;
  }
  60% {
    opacity: 1;
    letter-spacing: 0.02em;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.06em;
  }
}

@keyframes bracketSlide {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bracketSlideRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__brand {
  animation: brandReveal 1s ease-out forwards;
}

.hero__brand .bracket--open {
  display: inline-block;
  animation: bracketSlide 0.8s ease-out 0.2s both;
}

.hero__brand .bracket--close {
  display: inline-block;
  animation: bracketSlideRight 0.8s ease-out 0.2s both;
}

@keyframes subtitleFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__brand-sub {
  animation: subtitleFade 0.6s ease-out 0.6s both;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { gap: 48px; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .section {
    padding: 72px 0;
  }

  .navbar__links {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--nav-height));
    background: var(--bg-primary);
    flex-direction: column;
    padding: 40px 30px;
    gap: 24px;
    align-items: flex-start;
    transition: right var(--transition);
    border-left: 1px solid var(--border-dark);
  }

  .navbar__links.open {
    right: 0;
  }

  .navbar__links .btn {
    width: 100%;
    text-align: center;
  }

  .navbar__hamburger {
    display: flex;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .steps::before {
    display: none;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .feature-row--reverse {
    direction: ltr;
  }

  .feature-row__visual {
    height: 260px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

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

  .section-header {
    margin-bottom: 40px;
  }

  .page-header {
    padding: 130px 0 60px;
  }

  .roadmap {
    padding: 32px;
  }

  .hero__brand {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero__brand .bracket--open::before,
  .hero__brand .bracket--close::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero__brand {
    font-size: 2.75rem;
  }

  .stat__number {
    font-size: 2.25rem;
  }

  .feature-row__content h3 {
    font-size: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .article__comparison {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   Pricing Steps (How It Works)
   ============================================ */
.pricing-steps-section {
  padding: 64px 0 0;
}

.pricing-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-step {
  text-align: center;
  flex: 1;
  max-width: 240px;
}

.pricing-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.25);
}

.pricing-step h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.pricing-step p {
  font-size: 0.88rem;
  color: var(--text-dark-secondary);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

.pricing-step__connector {
  width: 48px;
  min-width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300));
  margin-top: 23px;
  opacity: 0.4;
  border-radius: 1px;
}

@media (max-width: 640px) {
  .pricing-steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .pricing-step__connector {
    width: 2px;
    min-width: 2px;
    height: 28px;
    margin-top: 0;
  }

  .pricing-step {
    max-width: 280px;
  }
}

/* ============================================
   Pricing Page Styles
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(26, 26, 20, 0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-600);
}

.pricing-card--featured {
  border: 2px solid var(--green-600);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
  z-index: 1;
}

.pricing-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.pricing-card__badge--savings {
  background: linear-gradient(135deg, var(--amber-700), var(--amber-500));
}

.pricing-card__header {
  margin-bottom: 24px;
}

.pricing-card__tier {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.pricing-card__header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-card__desc {
  font-size: 0.88rem;
  color: var(--text-dark-secondary);
  line-height: 1.6;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-card__currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.pricing-card__amount {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card__per {
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
  font-weight: 500;
}

.pricing-card__price--custom {
  margin-bottom: 8px;
}

.pricing-card__custom-text {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-600);
  letter-spacing: 0.02em;
}

.pricing-card__total {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(26, 26, 20, 0.06);
  font-size: 0.88rem;
  color: var(--text-dark-secondary);
}

.pricing-card__savings {
  background: rgba(45, 106, 79, 0.1);
  color: var(--green-700);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.pricing-card__features {
  flex: 1;
  margin-bottom: 28px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
}

.pricing-card__features li svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  stroke: var(--green-600);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card--selected {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15), var(--shadow-lg);
  transform: translateY(-6px);
}

.pricing-card--selected.pricing-card--featured {
  transform: scale(1.02) translateY(-6px);
}

.pricing-card__btn {
  align-self: center;
  padding: 10px 24px;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-off-white);
  border-radius: var(--radius-md);
}

.pricing-note p {
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto;
}

/* --- FAQ --- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.faq-item {
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(26, 26, 20, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--green-600);
  box-shadow: var(--shadow-sm);
}

.faq-item h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   Image Banner
   ============================================ */
.img-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}

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

.img-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 18, 16, 0.85), rgba(20, 55, 42, 0.75));
  display: flex;
  align-items: center;
}

.img-banner__overlay h2 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

.img-banner__overlay p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
}

/* ============================================
   Blog Styles
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.blog-card {
  background: var(--white);
  border: 1px solid rgba(26, 26, 20, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-600);
}

.blog-card__img {
  height: 240px;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: var(--text-dark-secondary);
}

.blog-card__tag {
  background: rgba(45, 106, 79, 0.1);
  color: var(--green-700);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card__date {
  color: var(--text-dark-secondary);
}

.blog-card__content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card__content p {
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
}

.blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--green-600);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}

.blog-card:hover .blog-card__read {
  gap: 12px;
}

/* ============================================
   Article Styles
   ============================================ */
.article-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 18, 16, 0.92) 0%, rgba(15, 18, 16, 0.4) 60%, rgba(15, 18, 16, 0.2) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.article-hero h1 {
  color: var(--text-primary);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 800px;
  line-height: 1.25;
}

.article {
  max-width: 760px;
  margin: 0 auto;
}

.article__lead {
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 500;
}

.article h2 {
  font-size: 1.75rem;
  margin-top: 48px;
  margin-bottom: 20px;
}

.article h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.article p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article ul,
.article ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article ul {
  list-style: disc;
}

.article ol {
  list-style: decimal;
}

.article li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark-secondary);
  margin-bottom: 8px;
}

.article li strong {
  color: var(--text-dark);
}

.article__image {
  margin: 40px -40px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.article__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.article__image-caption {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark-secondary);
  padding: 12px 40px 0;
  font-style: italic;
}

.article__cta {
  margin-top: 56px;
  padding: 48px;
  background: linear-gradient(135deg, var(--bg-off-white), rgba(82, 183, 136, 0.06));
  border: 1px solid rgba(45, 106, 79, 0.12);
  border-radius: var(--radius-lg);
  text-align: center;
}

.article__cta h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.article__cta p {
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.article__cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.article__comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}

.article__comparison-col {
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(26, 26, 20, 0.08);
  border-radius: var(--radius-md);
}

.article__comparison-col--highlight {
  background: linear-gradient(135deg, rgba(82, 183, 136, 0.04), rgba(45, 106, 79, 0.06));
  border-color: var(--green-600);
}

.article__comparison-col h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.article__comparison-col ol {
  padding-left: 20px;
}

.article__comparison-col li {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.article__comparison-time {
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--amber-600);
}

.article__comparison-time--fast {
  color: var(--green-600);
}

/* ============================================
   Feature Images (replacing icon placeholders)
   ============================================ */
.feature-row__visual--img {
  padding: 0;
  border: none;
  background: none;
}

.feature-row__visual--img::before {
  display: none;
}

.feature-row__visual--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ============================================
   Responsive Additions
   ============================================ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

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

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

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

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

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

  .article-hero {
    height: 320px;
  }

  .article-hero__overlay {
    padding-bottom: 32px;
  }

  .article__image {
    margin: 32px -12px;
  }

  .article__image-caption {
    padding: 12px 12px 0;
  }

  .article__cta {
    padding: 32px 24px;
  }

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

  .img-banner {
    height: 300px;
  }
}
