/* =========================================================
   ReviewFilter — static site stylesheet
   Shared by index.html and pricing.html
   Tuned to match reviewfilter.com (Webflow) closely.
   ========================================================= */

:root {
  --dark-900: #17191d;   /* footer / strongest dark   */
  --dark-800: #252c33;   /* 30-customers banner       */
  --dark-700: #282d33;   /* hero gradient top         */
  --text:     rgb(33, 44, 66);   /* matches live site body text color */
  --muted:    #5b6675;
  --cyan-500: #2eaef0;   /* main accent / button      */
  --cyan-600: #1f9be0;
  --gray-50:  #f8f8f9;   /* haze / newsletter         */
  --gray-100: #f5f5f5;   /* how-it-works bg           */
  --gray-200: #fafafa;   /* feature.odd bg            */
  --gray-300: #eef0f3;
  --gray-400: #c8cdd5;
  --gray-500: #95a0ad;
  --white:    #ffffff;
  --radius:   6px;
  --shadow-sm: 0 1px 3px rgba(15, 42, 74, 0.08);
  --shadow-md: 0 6px 18px rgba(15, 42, 74, 0.12);
  --shadow-lg: 0 20px 40px rgba(15, 42, 74, 0.18);
  --max-w: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  /* Sticky-footer layout: ensures short pages (e.g. /blog/) don't leave a
     band of white space below the footer on tall viewports. */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-footer { margin-top: auto; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-600); text-decoration: none; }
a:hover { color: var(--cyan-500); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 500;
}
.section-title { font-size: 35px; font-weight: 500; line-height: 1.2; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.mini-heading {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan-500);
  font-weight: 500;
  margin-bottom: 12px;
}
/* boxed white variant for the hero eyebrow */
.mini-heading.white {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  padding: 4px 9px;
  margin-bottom: 22px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.18s ease, transform 0.18s ease;
}
.btn-primary {
  background: var(--cyan-500);
  color: var(--white);
}
.btn-primary:hover { background: var(--cyan-600); color: var(--white); }
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); color: var(--white); }

/* ---------- header / nav ---------- */
.site-header {
  background: var(--dark-700);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 54px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-cta a {
  background: var(--cyan-500);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
}
.nav-cta a:hover { background: var(--cyan-600); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(rgb(40, 45, 51) 0%, rgb(46, 174, 240) 85%);
  color: var(--white);
  padding: 40px 0 80px;
  overflow: visible;     /* allow the phone to overflow into the white section below */
}
/* faint geometric overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 99px, rgba(255,255,255,0.05) 99px 100px),
    repeating-linear-gradient(90deg, transparent 0 99px, rgba(255,255,255,0.05) 99px 100px);
  opacity: 0.33;
  pointer-events: none;
  z-index: 1;
}
/* white angled slice at bottom (rotated rectangle, matches original) */
.hero-angle {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -300px;
  height: 360px;
  background: var(--white);
  transform: rotate(-3deg);
  z-index: 3;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 5;          /* above the white .hero-angle (z:3) so the phone overlaps onto the white area */
}
.hero-text { max-width: 540px; }
.hero h1,
.hero .hero-heading {
  color: var(--white);
  font-size: 45px;
  font-weight: 500;
  line-height: 50px;
  margin: 0 0 28px;
  letter-spacing: 0;
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
.hero-image {
  position: relative;
  text-align: center;
  z-index: 5;          /* above the hero-angle so phone sits on top of the angled cut */
  align-self: end;     /* anchor phone to bottom of its row so it pushes up close to the nav */
}
.hero-image img {
  width: 360px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  margin-bottom: -120px;  /* phone hangs down into the white section below */
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.35));
}

/* ---------- INTRO BAND ("9 out of 10") — left-aligned, container-wide ---------- */
.intro-band {
  background: var(--white);
  padding: 120px 0 60px;
  text-align: left;
  position: relative;
  z-index: 4;
}
.intro-band > .container { display: block; }
/* "What is your hotel doing..." — large gray uppercase tagline, centered */
.intro-band .section-description {
  margin: 0 auto 24px;
  font-size: 25px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgb(131, 131, 131);
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}
/* "9 out of 10 people..." cyan blockquote — FLOATED LEFT so paragraphs wrap around it */
.intro-band blockquote.intro-quote {
  float: left;
  width: 420px;
  margin: 0 50px 10px 0;
  padding: 6px 0 6px 20px;
  border-left: 5px solid var(--cyan-500);
  color: var(--cyan-500);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}
.intro-band .intro-body {
  max-width: none;
  margin: 0;
  text-align: left;
  color: var(--text);
  font-size: 16px;
  line-height: 24px;
}
.intro-band .intro-body::after { content: ""; display: table; clear: both; }  /* clearfix the float */
.intro-band .intro-body p { margin: 0 0 1.1em; }

/* ---------- HOW IT WORKS (tabbed) ---------- */
.section-how-it-works {
  background: var(--gray-100);
  padding: 50px 0 60px;            /* bottom padding holds gray BELOW the .top-line-block line */
  text-align: center;
}
/* faint 1px divider line near the bottom of the section, matches the original site's .top-line-block */
.section-how-it-works .top-line-block {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 30px 0 0;                /* no margin-bottom — section padding-bottom gives the gray below the line */
}
/* Match live site: large light title + larger light description */
.section-how-it-works .section-title {
  margin: 0 auto 20px;
  text-transform: lowercase;
  font-size: 46px;
  font-weight: 300;
  line-height: 1;
  color: rgb(61, 68, 78);
}
.section-how-it-works .section-description {
  color: rgba(0, 0, 0, 0.51);
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 21px;
  font-weight: 300;
  line-height: 27px;
}
/* Narrower content area for the tabs + line block (matches live's 940px container) */
.section-how-it-works > .container {
  max-width: 940px;
}
.process-tabs {
  max-width: 960px;
  margin: 0 auto;
}
/* Tab menu: 4 circular icon buttons sitting on a faint horizontal line */
.process-tab-menu {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 100px);
  gap: 30px;
  justify-content: center;
  margin: 0 auto 10px;
  padding: 10px 0;
  background: transparent;
}
/* faint 1px horizontal line that runs through the centre of the tabs (matches .process-tabs-line) */
.process-tab-menu::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
}
.process-tab-link { position: relative; z-index: 1; }
/* Inactive tab — same color as section bg, no shadow (so it looks like a flat icon) */
.process-tab-link {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  padding: 20px 12px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0);
  font-family: inherit;
}
.process-tab-link img {
  height: 32px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.process-tab-link .step-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.process-tab-link:hover {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
}
/* Active tab — white circle with the faint drop shadow */
.process-tab-link.is-active {
  background: var(--white);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.process-tab-link.is-active .step-label { color: var(--cyan-500); font-weight: 600; }
/* Tab content sits on the section's gray background (no white card) */
.process-tab-content {
  background: transparent;
  padding: 10px 0 0;
  text-align: left;
}
.process-tab-pane {
  display: none;
  max-width: 960px;
  margin: 0 auto;
}
.process-tab-pane.is-active { display: grid; }
.process-tab-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.process-tab-row .pt-media { order: 1; }
.process-tab-row .pt-text  { order: 2; }
.process-tab-row.reverse .pt-media { order: 2; }
.process-tab-row.reverse .pt-text  { order: 1; }
.pt-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.pt-text h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.25;
}
.pt-text p { color: var(--text); margin-bottom: 1em; font-size: 16px; line-height: 24px; }

/* ---------- FEATURE SECTIONS (alternating white / gray) ---------- */
.feature-section {
  padding: 64px 0 100px;
  background: var(--gray-200);
}
.feature-section.even { background: var(--white); }
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);  /* image column wider → renders close to 768px on desktop */
  gap: 50px;
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
}
/* When reversed (image on left), put the wider column on the left */
.feature-row.reverse { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
/* default: text first, media second (text-left, image-right) */
.feature-row .feature-text  { order: 1; }
.feature-row .feature-media { order: 2; }
/* reversed: media first, text second (image-left, text-right) */
.feature-row.reverse .feature-media { order: 1; }
.feature-row.reverse .feature-text  { order: 2; }
.feature-media {
  display: flex;
  justify-content: center;
}
.feature-media img {
  width: 100%;
  height: auto;
  max-width: 768px;
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}
.feature-text { max-width: 520px; }
.feature-text .mini-heading { color: var(--cyan-500); }
.feature-text h2 {
  font-size: 35px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}
.feature-text p { color: var(--text); font-size: 16px; line-height: 24px; }

/* scroll-in animation: slide in from outside edges */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}
[data-reveal="left"]  { transform: translateX(-80px); }
[data-reveal="right"] { transform: translateX(80px); }
[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal].is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- MINI FEATURES (Twitter / Wordpress / QR) ---------- */
.section-features {
  background: var(--gray-50);
  padding: 30px 0 45px;
}
.mini-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.mini-feature {
  text-align: center;
  padding: 30px 16px;
}
.mini-feature img {
  margin: 0 auto 18px;
  max-height: 64px;
  width: auto;
}
.mini-feature h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}
.mini-feature p { color: var(--text); font-size: 16px; line-height: 24px; }

/* ---------- 30-CUSTOMERS BANNER (slanted top + bottom edges) ---------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--dark-800);
  color: var(--white);
  padding: 130px 0 130px;
  text-align: center;
}
/* slanted top edge — gray haze rectangle rotated -3deg */
.cta-banner::before {
  content: "";
  position: absolute;
  top: -110px;
  left: -10%;
  right: -10%;
  height: 160px;
  background: var(--gray-50);
  transform: rotate(-3deg);
  z-index: 1;
}
/* slanted bottom edge — same treatment */
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -310px;
  left: -10%;
  right: -10%;
  height: 360px;
  background: var(--gray-50);
  transform: rotate(-3deg);
  z-index: 1;
}
.cta-banner > .container {
  position: relative;
  z-index: 2;
}
.cta-banner .gif-strip {
  margin: 0 auto 32px;
  max-width: 280px;
}
.cta-banner .gif-strip img {
  margin: 0 auto;
  width: 100%;
  max-width: 225px;
  height: auto;
  display: block;
}
.cta-banner h2 {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
}
.cta-banner .btn {
  font-size: 15px;
  padding: 12px 32px;
}

/* ---------- NEWSLETTER ---------- */
.newsletter {
  padding: 134px 0 48px;
  background: var(--gray-50);
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 30px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 6px 24px rgba(15, 42, 74, 0.08);
}
.newsletter-text { text-align: center; }
.newsletter h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.25;
}
.newsletter h3 .text-accent { color: var(--cyan-500); }
.newsletter-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 auto 22px;
  max-width: 320px;
}
.newsletter-cta {
  display: inline-block;
  padding: 13px 30px;
  font-size: 15px;
  border-radius: 6px;
}
/* E-book cover overlaps the top of the card — uses absolute positioning so the
   card height stays tight to the left-hand text content. */
.newsletter-image {
  position: relative;
  min-height: 100%;
}
.newsletter-image picture {
  position: absolute;
  bottom: -10px;         /* anchor image bottom 10px lower than card row line */
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 220px;
  max-width: 100%;
}
.newsletter-image picture img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  margin: 0;
}

/* Mobile: stack the card vertically with the e-book on top of the text. */
@media (max-width: 720px) {
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 24px 32px;
    max-width: 380px;
  }
  .newsletter-image {
    order: -1;           /* image above text */
    min-height: 0;
    height: 180px;        /* reserved space for the image */
  }
  .newsletter-image picture {
    position: relative;   /* drop absolute positioning */
    bottom: auto;
    left: auto;
    transform: none;
    width: 150px;
    margin: -30px auto 0; /* lift slightly above the card */
  }
  .newsletter h3 { font-size: 20px; }
}
/* Newsletter submit button is dark navy (not cyan) on the live site */
.newsletter-form button {
  background: var(--text);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  font-size: 15px;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}
.newsletter-form button:hover { background: rgb(20, 30, 50); }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
}
.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
  padding: 13px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(46, 174, 240, 0.15);
}
.newsletter-image { text-align: center; }
.newsletter-image img {
  margin: 0 auto;
  max-height: 340px;
}

/* ---------- LOGO STRIP (with hotel/restaurant photo + dark gradient) ---------- */
.logo-strip {
  position: relative;
  background-image: url('../images/hotel-restaurant-bg.jpeg');
  background-image: image-set(
    url('../images/hotel-restaurant-bg.webp') type('image/webp'),
    url('../images/hotel-restaurant-bg.jpeg') type('image/jpeg')
  );
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  overflow: hidden;
}
.logo-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(32, 33, 36, 0.7);
  background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(24,26,29,0.99) 100%);
  z-index: 1;
}
.logo-strip-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 30px 30px;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo-strip img {
  max-height: 54px;
  max-width: 110px;
  width: auto;
  /* full color logos — matches original */
  opacity: 1;
  filter: none;
}

/* ---------- PRICING PAGE HERO ---------- */
.pricing-hero {
  background: var(--white);
  padding: 60px 0 20px;
  text-align: center;
}
.pricing-hero .mini-heading {
  color: var(--gray-500);
  font-size: 11px;
  margin-bottom: 18px;
  display: block;
}
/* H1 styled as a small uppercase chip — matches live site */
.pricing-hero h1 {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 11px 22px;
  margin: 0 0 22px;
  line-height: 1;
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
.pricing-hero p { color: var(--text); font-size: 15px; margin: 0; }

/* ---------- PRICING CARDS ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  align-items: stretch;
}
.plan-card {
  background: var(--white);
  border: none;
  border-radius: 14px;
  padding: 44px 26px 36px;
  box-shadow: 0 2px 18px rgba(15, 42, 74, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan-card:hover {
  box-shadow: 0 8px 28px rgba(15, 42, 74, 0.12);
  transform: translateY(-2px);
}
.plan-card.featured {
  background: linear-gradient(180deg, #2da4e0 0%, #1d3760 100%);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.06);
  box-shadow: 0 24px 48px rgba(15, 42, 74, 0.22);
  z-index: 2;
}
.plan-card.featured:hover { transform: scale(1.06) translateY(-2px); }
.plan-card.featured h3,
.plan-card.featured .plan-price { color: var(--white); }
.plan-card.featured .plan-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--white);
  color: var(--text);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.plan-card .plan-name {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 24px;
  color: var(--text);
}
.plan-card.featured .plan-name { color: var(--white); }

.price-line {
  text-align: center;
  margin: 0 0 32px;
  white-space: nowrap;
}
.plan-price {
  font-size: 56px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan-card.featured .plan-price { color: var(--white); }
.plan-period {
  color: var(--muted);
  font-size: 12px;
  margin-left: 4px;
  vertical-align: middle;
  position: relative;
  top: 2px;
}
.plan-card.featured .plan-period { color: rgba(255, 255, 255, 0.8); }

/* Feature pills — each <li> is its own bordered rounded rectangle */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-features li {
  position: relative;
  padding: 11px 14px 11px 38px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--text);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: transparent;
}
.plan-card.featured .plan-features li {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}
/* Included: cyan checkmark */
.plan-features li::before {
  content: "\2713";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #4cc1ed;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}
/* Excluded: light gray X */
.plan-features li.excluded::before {
  content: "\2715";
  color: #b8c0cc;
}
.plan-card.featured .plan-features li.excluded::before {
  color: rgba(255, 255, 255, 0.55);
}

.plan-card .plan-cta {
  text-align: center;
  margin-top: auto;
}
/* Pricing-page button: outlined dark for Lite & Pro */
.btn-outline-dark {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--gray-300);
  border-radius: 30px;
  padding: 12px 36px;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.btn-outline-dark:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
  color: var(--text);
}
/* Core's solid cyan Buy Now button — pill shape, white text */
.plan-card.featured .plan-cta .btn-primary {
  background: var(--cyan-500);
  color: var(--white);
  border-radius: 30px;
  padding: 12px 36px;
  font-weight: 500;
}
.plan-card.featured .plan-cta .btn-primary:hover {
  background: var(--cyan-600);
}

/* promise band */
.promise {
  background: var(--gray-50);
  padding: 70px 0;
}
.promise-card {
  background: var(--white);
  border-radius: 10px;
  padding: 44px 50px;
  box-shadow: 0 2px 18px rgba(15, 42, 74, 0.06);
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.promise-text { text-align: center; }
.promise-card h2 {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 400;
  color: rgb(131, 131, 131);
  line-height: 1.2;
}
.promise-chip {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 8px 18px;
  margin-bottom: 22px;
  line-height: 1;
}
.promise-card p {
  color: var(--text);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.promise-card img {
  margin: 0 auto;
  width: 220px;
  max-width: 100%;
}

/* ---------- PMS INTEGRATIONS PAGE ---------- */
.pms-section {
  background: var(--white);
  padding: 70px 0 80px;
}
.pms-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  color: var(--text);
  margin: 0 auto 50px;
  max-width: 900px;
  line-height: 1.3;
}
.pms-heading .accent { color: var(--cyan-500); font-weight: 700; }
.pms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.pms-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.pms-card:hover {
  box-shadow: 0 6px 18px rgba(15, 42, 74, 0.08);
  transform: translateY(-1px);
}
.pms-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.pms-card--logo-lg img { transform: scale(1.2); }

.pms-form-section {
  background: var(--gray-50);
  padding: 30px 0 70px;
}
.pms-form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 60px 80px;
  box-shadow: 0 2px 18px rgba(15, 42, 74, 0.06);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pms-form-card h2 {
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--text);
}
.pms-form-card p {
  color: var(--text);
  font-size: 15px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.pms-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.pms-form input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
}
.pms-form input::placeholder { color: var(--gray-500); }
.pms-form input:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(46, 174, 240, 0.15);
}
.pms-form button {
  align-self: center;
  margin-top: 10px;
  font-family: inherit;
  cursor: pointer;
  border-radius: 30px;
  padding: 12px 36px;
  border: none;
}

@media (max-width: 960px) {
  .pms-grid { grid-template-columns: repeat(3, 1fr); }
  .pms-heading { font-size: 28px; }
  .pms-form-card { padding: 44px 28px; }
  .pms-form-card h2 { font-size: 28px; }
}
@media (max-width: 640px) {
  .pms-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pms-card { height: 110px; padding: 16px; }
}

/* ---------- API PAGE ---------- */
.api-hero-banner {
  height: 320px;
  background-image: url('https://res.cloudinary.com/www-reviewfilter-com/image/upload/v1778922690/api-reviewfilter_i3kjcd.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.api-row {
  background: var(--white);
  padding: 80px 0;
}
.api-row--haze { background: var(--gray-50); }
.api-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.api-row-media {
  display: flex;
  justify-content: center;
}
.api-row-media img {
  max-width: 100%;
  height: auto;
  max-height: 240px;
  width: auto;
}
.api-row-text { max-width: 540px; }
.api-heading {
  display: inline-block;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: var(--cyan-500);
  border: 1px solid var(--cyan-500);
  border-radius: 4px;
  padding: 10px 26px;
  margin: 0 0 22px;
  line-height: 1;
}
.api-row-text p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 28px;
}
.api-cta {
  border-radius: 6px;
  padding: 12px 28px;
}

@media (max-width: 960px) {
  .api-hero-banner { height: 220px; }
  .api-row { padding: 50px 0; }
  .api-row-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .api-row-text { max-width: 100%; margin: 0 auto; }
  .api-row-media img { max-height: 180px; }
}

/* ---------- CONTACT US PAGE ---------- */
.contact-hero {
  position: relative;
  background: linear-gradient(rgb(40, 45, 51) 0%, rgb(46, 174, 240) 85%);
  color: var(--white);
  padding: 90px 0 140px;
  overflow: hidden;
}
.contact-hero-angle {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -260px;
  height: 320px;
  background: var(--white);
  transform: rotate(-3deg);
  z-index: 1;
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.contact-hero-text { max-width: 480px; }
.contact-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 8px 16px;
  margin-bottom: 28px;
  line-height: 1;
}
.contact-hero-text h1 {
  color: var(--white);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}
.contact-form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 44px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray-500); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(46, 174, 240, 0.15);
}
.contact-submit {
  align-self: center;
  margin-top: 10px;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  font-family: inherit;
  cursor: pointer;
}

.contact-links {
  background: var(--white);
  padding: 70px 0 90px;
}
.contact-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.contact-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  border-radius: 10px;
  padding: 28px 30px;
  box-shadow: 0 2px 18px rgba(15, 42, 74, 0.06);
  color: var(--text);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.contact-link-card:hover {
  box-shadow: 0 8px 28px rgba(15, 42, 74, 0.12);
  transform: translateY(-2px);
  color: var(--text);
}
.contact-link-text h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}
.contact-link-text p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.contact-link-card img {
  width: 56px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .contact-hero { padding: 60px 0 120px; }
  .contact-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-hero-text { max-width: 100%; }
  .contact-hero-text h1 { font-size: 32px; }
  .contact-form-card { padding: 32px 24px; }
  .contact-links-grid { grid-template-columns: 1fr; }
}

/* ---------- THANK YOU PAGE ---------- */
.thanks-hero {
  background: linear-gradient(rgb(40, 45, 51) 0%, rgb(46, 174, 240) 85%);
  padding: 90px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.thanks-card {
  background: var(--white);
  border-radius: 14px;
  padding: 60px 50px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.thanks-check {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  background: var(--cyan-500);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(46, 174, 240, 0.35);
}
.thanks-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--cyan-500);
  font-weight: 600;
  margin-bottom: 16px;
}
.thanks-card h1 {
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--text);
  line-height: 1.25;
}
.thanks-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 auto 32px;
  max-width: 460px;
}
.thanks-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--gray-300);
  border-radius: 6px;
}
.btn-ghost:hover {
  background: var(--gray-50);
  color: var(--text);
}

@media (max-width: 640px) {
  .thanks-hero { padding: 60px 0; }
  .thanks-card { padding: 44px 24px; }
  .thanks-card h1 { font-size: 26px; }
}

/* ---------- SUPPORT PAGE ---------- */
.support-hero {
  background: linear-gradient(rgb(40, 45, 51) 0%, rgb(46, 174, 240) 100%);
  color: var(--white);
  padding: 60px 0 90px;
  text-align: center;
}
.support-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 9px 18px;
  margin-bottom: 40px;
  line-height: 1;
}
.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.support-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: var(--text);
  display: block;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.support-card:hover {
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}
.support-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.support-card-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}
.support-card-header img {
  width: 46px;
  height: auto;
  flex-shrink: 0;
}
.support-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.faq-section {
  background: var(--gray-50);
  padding: 80px 0 90px;
  text-align: center;
}
.faq-icon {
  display: block;
  width: 78px;
  height: 78px;
  margin: 0 auto 28px;
  background: var(--cyan-500);
  border-radius: 16px;
  padding: 16px;
  box-sizing: border-box;
  box-shadow: 0 6px 18px rgba(46, 174, 240, 0.25);
}
.faq-section h2 {
  font-size: 38px;
  font-weight: 500;
  margin: 0 0 60px;
  color: var(--text);
  line-height: 1.2;
}
.faq-grid {
  columns: 2;
  column-gap: 70px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  break-inside: avoid;
  margin-bottom: 36px;
  padding-bottom: 0;
}
.faq-item h3 {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.35;
}
.faq-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 960px) {
  .support-hero { padding: 50px 0 70px; }
  .support-cards { grid-template-columns: 1fr; max-width: 480px; }
  .faq-section { padding: 60px 0 70px; }
  .faq-section h2 { font-size: 28px; margin-bottom: 40px; }
  .faq-grid { columns: 1; }
}

/* ---------- SETUP INSTRUCTIONS PAGE ---------- */
.setup-section {
  background: var(--white);
  padding: 70px 0 90px;
}
.setup-container { max-width: 900px; }
.setup-eyebrow-wrap { text-align: center; margin-bottom: 40px; }
.setup-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 10px 22px;
  line-height: 1;
}
.setup-intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 16px;
}
.setup-intro a {
  color: var(--cyan-500);
  text-decoration: underline;
}
.setup-intro a:hover { color: var(--cyan-600); }

.setup-steps {
  list-style: decimal;
  margin: 40px 0 0;
  padding: 0 0 0 40px;
}
.setup-step {
  margin-bottom: 50px;
  padding-left: 14px;
}
.setup-step::marker { color: var(--muted); font-weight: 500; }
.setup-step-heading {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--cyan-500);
  font-weight: 500;
  border: 1px solid var(--cyan-500);
  border-radius: 4px;
  padding: 9px 22px;
  margin: 0 0 22px;
  line-height: 1;
}
.setup-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 16px;
}
.setup-step p a {
  color: var(--cyan-500);
  text-decoration: underline;
}
.setup-step p a:hover { color: var(--cyan-600); }
.setup-step code {
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'Roboto Mono', Menlo, Consolas, monospace;
  color: var(--text);
}
.setup-figure {
  margin: 24px 0 28px;
}
.setup-figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(15, 42, 74, 0.12);
  border: 1px solid var(--gray-300);
}
.setup-list {
  list-style: disc;
  padding-left: 24px;
  margin: 0 0 20px;
}
.setup-list li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
}

@media (max-width: 640px) {
  .setup-section { padding: 50px 0 60px; }
  .setup-steps { padding-left: 24px; }
  .setup-step { padding-left: 8px; }
}

/* ---------- VIDEO TUTORIALS PAGE ---------- */
.video-section {
  background: var(--white);
  padding: 70px 0 40px;
}
.video-section--alt {
  background: var(--gray-50);
  padding: 60px 0 80px;
}
.video-eyebrow-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.video-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 10px 22px;
  line-height: 1;
}
.video-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto 80px;
}
.video-row-text { max-width: 440px; }
.video-row.reverse .video-row-text { justify-self: end; }
.video-chip {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 8px 16px;
  margin-bottom: 22px;
  line-height: 1;
}
.video-row-text h2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.2;
}
.video-row-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 28px;
}
.video-watch-link {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
}
.video-watch-link span { margin-left: 6px; transition: transform 0.2s ease; display: inline-block; }
.video-watch-link:hover { color: var(--cyan-500); }
.video-watch-link:hover span { transform: translateX(4px); }

.video-row-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 42, 74, 0.18);
  background: #000;
}
.video-row-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 960px) {
  .video-section { padding: 50px 0 20px; }
  .video-section--alt { padding: 40px 0 60px; }
  .video-row { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .video-row-text { max-width: 100%; }
  .video-row.reverse .video-row-embed { order: -1; }
  .video-row.reverse .video-row-text { justify-self: stretch; }
  .video-row-text h2 { font-size: 28px; }
}

/* ---------- SUPPORT REQUEST PAGE ---------- */
.sreq-hero {
  background: linear-gradient(rgb(40, 45, 51) 0%, rgb(46, 174, 240) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}
.sreq-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 9px 18px;
  margin-bottom: 22px;
  line-height: 1;
}
.sreq-hero h1 {
  color: var(--white);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 auto 14px;
  max-width: 720px;
}
.sreq-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
}
.sreq-hero .required-marker { color: #ffb84d; font-weight: 700; }

.sreq-form-section {
  background: var(--gray-50);
  padding: 50px 0 80px;
}
.sreq-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 50px 56px;
  box-shadow: 0 12px 36px rgba(15, 42, 74, 0.12);
  max-width: 820px;
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
}
.sreq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
  margin-bottom: 24px;
}
.sreq-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sreq-field--full { grid-column: 1 / -1; }
.sreq-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}
.required-marker {
  color: var(--cyan-500);
  font-weight: 700;
}
.sreq-form input,
.sreq-form select,
.sreq-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  resize: vertical;
}
.sreq-form textarea { min-height: 140px; line-height: 1.5; }
.sreq-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='none' stroke='%235b6675' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 36px;
}
.sreq-form input::placeholder,
.sreq-form textarea::placeholder { color: var(--gray-500); }
.sreq-form input:focus,
.sreq-form select:focus,
.sreq-form textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(46, 174, 240, 0.15);
}
.sreq-submit {
  display: block;
  margin: 8px auto 0;
  border: none;
  border-radius: 6px;
  padding: 13px 36px;
  font-family: inherit;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 720px) {
  .sreq-hero { padding: 60px 0 50px; }
  .sreq-hero h1 { font-size: 28px; }
  .sreq-form-card { padding: 34px 24px; margin-top: -30px; }
  .sreq-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- BLOG ---------- */
.blog-hero {
  background: linear-gradient(rgb(40, 45, 51) 0%, rgb(46, 174, 240) 100%);
  color: var(--white);
  padding: 80px 0 70px;
  text-align: center;
}
.blog-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 9px 18px;
  margin-bottom: 22px;
  line-height: 1;
}
.blog-hero h1 {
  color: var(--white);
  font-size: 44px;
  font-weight: 500;
  margin: 0 0 18px;
  line-height: 1.2;
}
.blog-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.65;
}

.blog-listing {
  background: var(--white);
  padding: 70px 0 90px;
}
.blog-listing-heading {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 36px;
  color: var(--text);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
/* Auto-centre when there are fewer than 3 posts so the row doesn't look orphaned */
.blog-grid:has(article:nth-child(1):last-child) { grid-template-columns: minmax(0, 360px); justify-content: center; }
.blog-grid:has(article:nth-child(2):last-child) { grid-template-columns: repeat(2, minmax(0, 360px)); justify-content: center; }
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 42, 74, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 42, 74, 0.14);
}
.blog-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-100);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-category {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--cyan-500);
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-card-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 12px;
}
.blog-card-title a { color: var(--text); }
.blog-card-title a:hover { color: var(--cyan-500); }
.blog-card-excerpt {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

/* Single blog post */
.blog-post {
  position: relative;
  background: var(--white);
  padding: 50px 0 40px;
  /* clip the gradient/angle pseudo-elements horizontally without trapping the
     card's drop shadow vertically — otherwise the shadow gets cut off at the
     section's bottom edge and creates a hard horizontal line above the
     related-posts section. */
  overflow-x: clip;
  overflow-y: visible;
}
/* dark→cyan gradient backdrop sitting behind the top of the article card */
.blog-post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 480px;
  background: linear-gradient(rgb(40, 45, 51) 0%, rgb(46, 174, 240) 100%);
  z-index: 0;
}
/* angled white slice cutting through the gradient */
.blog-post::after {
  content: "";
  position: absolute;
  top: 410px;
  left: -10%;
  right: -10%;
  height: 140px;
  background: var(--white);
  transform: rotate(-3deg);
  z-index: 0;
}
.blog-post-container { position: relative; z-index: 1; }
.blog-post-card {
  background: var(--white);
  border-radius: 12px;
  padding: 60px 80px 70px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  margin: 0 auto;
}
/* Constrain inner content to a comfortable reading width while the card fills the full site container */
.blog-post-card > .blog-breadcrumbs,
.blog-post-card > .blog-post-header,
.blog-post-card > .blog-post-hero,
.blog-post-card > .blog-post-body,
.blog-post-card > .blog-post-footer {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.blog-breadcrumbs {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.3px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.blog-breadcrumbs a { color: var(--cyan-500); }
.blog-breadcrumbs a:hover { color: var(--cyan-600); }
.blog-breadcrumbs span { margin: 0 8px; }
.blog-post-header { margin-bottom: 36px; }
.blog-post-header .blog-category { margin-bottom: 16px; }
.blog-post-header h1 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--text);
}
.blog-post-meta {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.blog-post-meta time { color: var(--text); font-weight: 500; }
.blog-post-meta span { margin: 0 8px; }
.blog-post-meta span:last-child { margin: 0; }

.blog-post-hero {
  margin: 0 0 36px;
}
.blog-post-hero img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.blog-post-figure {
  margin: 32px 0;
}
.blog-post-figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--gray-300);
}
.blog-post-figure figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  font-style: italic;
}

.blog-post-body { font-size: 16px; line-height: 1.75; color: var(--text); }
.blog-post-body p { margin: 0 0 1.2em; }
.blog-post-body h2 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  margin: 40px 0 16px;
  padding-left: 18px;
  border-left: 4px solid var(--cyan-500);
}
.blog-post-body h3 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  margin: 32px 0 14px;
}
.blog-post-body a { color: var(--cyan-500); text-decoration: underline; }
.blog-post-body a:hover { color: var(--cyan-600); }
.blog-post-body ul, .blog-post-body ol { padding-left: 24px; margin: 0 0 1.2em; }
.blog-post-body li { margin-bottom: 6px; }
.blog-quote {
  border-left: 4px solid var(--cyan-500);
  background: var(--gray-50);
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  border-radius: 0 8px 8px 0;
}

.blog-post-footer {
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-300);
}
.blog-back-link {
  color: var(--cyan-500);
  font-size: 14px;
  font-weight: 500;
}
.blog-back-link:hover { color: var(--cyan-600); }

/* Related posts at the bottom of a single post */
.related-posts {
  background: var(--white);
  padding: 40px 0 80px;
}
.related-posts-heading {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 36px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.related-grid:has(article:nth-child(1):last-child) { grid-template-columns: minmax(0, 420px); justify-content: center; }
.related-grid:has(article:nth-child(2):last-child) { grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; }
.related-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 42, 74, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 42, 74, 0.14);
}
.related-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-100);
}
.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.related-card-body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.related-card-category {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--cyan-500);
  font-weight: 600;
  margin-bottom: 10px;
}
.related-card-title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 12px;
  flex: 1;
}
.related-card-title a { color: var(--text); }
.related-card-title a:hover { color: var(--cyan-500); }
.related-card-meta {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 720px) {
  .blog-hero { padding: 60px 0 50px; }
  .blog-hero h1 { font-size: 32px; }
  .blog-grid { grid-template-columns: 1fr; gap: 28px; }
  .blog-post { padding: 36px 0 60px; }
  .blog-post::before { height: 340px; }
  .blog-post::after { top: 280px; }
  .blog-post-card { padding: 32px 22px 36px; border-radius: 10px; }
  .blog-post-header h1 { font-size: 28px; }
  .blog-post-body { font-size: 15px; }
  .blog-post-body h2 { font-size: 22px; }
  .related-grid { grid-template-columns: 1fr; gap: 22px; }
  .related-posts { padding: 50px 0 20px; }
}

/* ---------- TERMS / PRIVACY PAGE ---------- */
.terms-section {
  background: var(--gray-50);
  padding: 70px 0 90px;
}
.terms-container { max-width: 900px; }
.terms-card {
  background: var(--white);
  border-radius: 12px;
  padding: 60px 70px 70px;
  box-shadow: 0 8px 30px rgba(15, 42, 74, 0.08);
}
.terms-header { margin-bottom: 36px; }
.terms-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--cyan-500);
  font-weight: 600;
  margin-bottom: 14px;
}
.terms-header h1 {
  font-size: 36px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}
.terms-body { font-size: 15px; line-height: 1.75; color: var(--text); }
.terms-body p { margin: 0 0 1.2em; }
.terms-body h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin: 40px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--cyan-500);
}
.terms-body a { color: var(--cyan-500); text-decoration: underline; }
.terms-body a:hover { color: var(--cyan-600); }
.terms-list { padding-left: 24px; margin: 0 0 1.4em; }
.terms-list li { margin-bottom: 10px; }

@media (max-width: 640px) {
  .terms-section { padding: 50px 0 70px; }
  .terms-card { padding: 36px 24px 44px; }
  .terms-header h1 { font-size: 26px; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--dark-900);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 24px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col p { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.6; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 13px; }
.footer-col a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  transition: background 0.18s ease, color 0.18s ease;
  text-decoration: none;
}
.footer-social a:hover { background: var(--cyan-500); color: var(--white); }
.footer-social a i { line-height: 1; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,0.65); font-size: 12px; }
.footer-bottom a:hover { color: var(--white); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .hero h1, .hero .hero-heading { font-size: 38px; line-height: 44px; }
  .feature-text h2 { font-size: 28px; }
  .cta-banner h2 { font-size: 26px; }
}

@media (max-width: 960px) {
  .hero { padding: 40px 0 100px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero h1, .hero .hero-heading { font-size: 32px; line-height: 38px; margin-left: auto; margin-right: auto; }
  .hero-image img { max-height: 380px; }
  .hero-angle { bottom: -290px; height: 320px; }
  .intro-band { padding: 100px 0 40px; }
  .intro-band blockquote.intro-quote { float: none; width: auto; max-width: 100%; margin: 0 0 24px; }
  .process-tab-menu { max-width: 100%; }
  .process-tab-link { height: 80px; }
  .process-tab-link img { height: 32px; }
  .process-tab-row { grid-template-columns: 1fr; gap: 30px; }
  .process-tab-row.reverse .pt-media { order: 0; }
  .process-tab-row.reverse .pt-text  { order: 0; }
  .feature-section { padding: 50px 0 60px; }
  .feature-row { grid-template-columns: 1fr; gap: 36px; }
  .feature-row.reverse .feature-media { order: 0; }
  .feature-row.reverse .feature-text  { order: 0; }
  .mini-features { grid-template-columns: 1fr; gap: 30px; }
  .newsletter { padding: 80px 0 40px; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .newsletter-form { margin: 0 auto; }
  .cta-banner { padding: 80px 0; }
  .cta-banner h2 { font-size: 22px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; padding: 30px 24px 60px; }
  .plan-card.featured { transform: none; }
  .promise-card { grid-template-columns: 1fr; text-align: center; }
  .logo-strip-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .logo-strip { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .process-tab-menu { grid-template-columns: repeat(4, 1fr); }
  .process-tab-link { height: 70px; padding: 12px 6px 6px; }
  .process-tab-link .step-label { font-size: 10px; letter-spacing: 1px; }
  .process-tab-content { padding: 36px 20px 50px; }
  .feature-section { padding: 40px 0 50px; }
  .feature-row { padding: 0 16px; }
  .logo-strip-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .plan-card { padding: 28px 22px; }
  .cta-banner { padding: 60px 0; }
}
