/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --navy-dark:   #0d1f3c;
  --navy-mid:    #1e3a5f;
  --navy-light:  #2d5480;
  --accent:      #FAC114;
  --accent-dark: #e6a800;
  --whatsapp:    #1FAD53;
  --white:       #ffffff;
  --text-light:  rgba(255,255,255,0.85);
  --text-muted:  rgba(255,255,255,0.55);

  --font-head: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --container: 1200px;
  --main-nav:  64px;
  --header-total: var(--main-nav);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-full: 999px;

  /* Type scale */
  --fs-h1:      clamp(2rem,    4.5vw,  3.814rem);   /* 61.03px */
  --fs-h2:      clamp(1.875rem,3.8vw,  3.051rem);   /* 48.82px */
  --fs-h3:      clamp(1.625rem,3vw,    2.441rem);   /* 39.06px */
  --fs-h4:      clamp(1.375rem,2.4vw,  1.953rem);   /* 31.25px */
  --fs-h5:      clamp(1.125rem,1.9vw,  1.5625rem);  /* 25px    */
  --fs-h6:      clamp(1rem,    1.5vw,  1.25rem);    /* 20px    */
  --fs-body:    1rem;                                /* 16px    */
  --fs-body-sm: 0.8125rem;                           /* 13px    */

  --lh-h1: 1;
  --lh-h2: 1.1;
  --lh-h3: 1.375;
  --lh-h4: 1.3;
  --lh-h5: 1.6;
  --lh-h6: 2;
  --lh-body: 1.875;
  --lh-body-sm: 1.846;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; }

body {
  font-family: var(--font-body);
  background: #f5f7fa;
  color: #1a1f2e;
  -webkit-font-smoothing: antialiased;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

/* Navbar */
.navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s;
}
.nav-links a:hover { color: #0d1f3c; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1;
  width: 300px;
  height: 60px;
  border-radius: var(--radius-md);
  background: #FAC114;
  color: #21232C;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 15px -3px rgba(250,193,20,0.30), 0 4px 6px -4px rgba(250,193,20,0.30);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 20px -3px rgba(250,193,20,0.40);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1;
  width: 300px;
  height: 60px;
  border-radius: var(--radius-md);
  background: #1FAD53;
  color: var(--white);
  transition: transform 0.2s, filter 0.2s;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-md);
  background: #1FAD53;
  color: var(--white);
  transition: filter 0.2s;
  white-space: nowrap;
}
.btn-nav-contact:hover { filter: brightness(1.08); }

.icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

/* Mobile toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 1rem 1.5rem 1.25rem;
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu ul li a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: #374151;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Desktop nav */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
  .nav-inner > .btn-nav-contact { display: inline-flex; }
}
@media (max-width: 1023px) {
  .nav-inner > .btn-nav-contact { display: none; }
}

/* ===== HERO PAGE — transparent nav ===== */
.hero-page .navbar {
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-page .navbar.is-scrolled {
  background: rgba(2, 16, 16, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-page .nav-links a {
  color: white;
  font-weight: 700;
}
.hero-page .nav-links a:hover { color: rgba(255,255,255,0.70); }
.hero-page .nav-logo img { filter: brightness(0) invert(1); }
.hero-page .hamburger-bar { background: white; }
.hero-page .mobile-menu {
  background: rgba(2, 16, 16, 0.97);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-page .mobile-menu ul li a {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.07);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-total);
  background-color: #020407;
  background-image:
    /* bright core — sits at bottom-right corner */
    radial-gradient(ellipse 38% 48% at 90% 94%, #1a30c0 0%, transparent 58%),
    /* main large glow — pulled inward so it reads as mid-right, not just a corner */
    radial-gradient(ellipse 72% 68% at 76% 80%, #0e2298 0%, #070e45 42%, transparent 70%),
    /* very faint blue atmosphere so top-left isn't pure black */
    radial-gradient(ellipse 55% 45% at 65% 65%, #06103a 0%, transparent 65%);
}

/* Grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.18;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-block: 4rem;
}

h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  color: #F8FAFC;
  max-width: 684px;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}
.text-accent {
  background: linear-gradient(90deg, #ffcc33, #ffdf80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  color: white;
  max-width: 844px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* Bullet points — single column, icon left of text */
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  text-align: left;
}
.hero-bullets li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: white;
  line-height: 1.6;
}
.check-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 540px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-whatsapp { width: 100%; max-width: 340px; }
}

/* ===================================================
   GBP PAGE
   =================================================== */

/* Always show solid dark navbar on GBP page (not transparent like hero) */
.gbp-page .navbar {
  background: rgba(2, 16, 16, 0.97) !important;
  backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

/* Active nav link */
.nav-link--active {
  color: hsl(45, 96%, 53%) !important;
  font-weight: 600 !important;
}

/* Long nav item — slightly smaller on desktop */
@media (min-width: 1024px) {
  .nav-links a[href*="google-business"] {
    font-size: 0.875rem;
  }
}

/* ---- GBP HERO ---- */
.gbp-hero {
  position: relative;
  background: #071425;
  background-image:
    radial-gradient(ellipse 70% 90% at 90% 60%, #1a4490 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 75% 80%, #0e2d6e 0%, transparent 70%);
  padding-top: var(--header-total);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

/* Soft glow blob — top left */
.gbp-hero-glow {
  position: absolute;
  width: 1141px;
  height: 1141px;
  left: -255px;
  top: -119px;
  background: rgba(26, 68, 144, 0.5);
  border-radius: 50%;
  filter: blur(250px);
  pointer-events: none;
  z-index: 0;
}

/* Right-side photo, hard-light blended into the green */
.gbp-hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: hard-light;
  z-index: 1;
  pointer-events: none;
}

/* Text container */
.gbp-hero-text {
  position: relative;
  z-index: 2;
  padding-block: 3.5rem;
}

/* H1 — G icon sits inline as the letter G */
.gbp-hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.0;
  color: #f8fafc;
  max-width: 50%;
  margin: 0 0 1.5rem 0;
}
.gbp-g-icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  object-fit: contain;
  vertical-align: -0.2em;
  transform: rotate(8deg);
  transform-origin: top left;
}
.gbp-hero-sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.8);
  max-width: 48%;
  margin: 0;
}

@media (max-width: 768px) {
  .gbp-hero h1    { max-width: 90%; font-size: 2rem; }
  .gbp-hero-sub   { max-width: 90%; }
  .gbp-hero-photo { width: 100%; opacity: 0.35; }
}

/* ---- CONTENT SECTIONS ---- */
.gbp-section {
  padding-block: 5rem;
}
.gbp-section--white { background: white; }
.gbp-section--gray  { background: #f9fafb; }

/* Two-column layout */
.gbp-two-col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .gbp-two-col            { flex-direction: row; align-items: center; }
  .gbp-two-col--reverse   { flex-direction: row-reverse; }
  .gbp-two-col .gbp-col-text  { flex: 1; }
  .gbp-two-col .gbp-col-image { flex: 0 0 40%; }
}
.gbp-col-text h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  line-height: 1.2;
  color: #21232c;
  margin-bottom: 1.25rem;
}
.gbp-col-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: #657386;
  margin-bottom: 1rem;
}
.gbp-col-text p:last-child { margin-bottom: 0; }
.gbp-lead {
  font-weight: 600;
  color: #3d4a5c !important;
}
.gbp-highlight-text {
  font-weight: 700;
  color: #3d4a5c !important;
  font-size: 1.0625rem !important;
}
.gbp-stat-text {
  font-size: 1.0625rem !important;
  color: #3d4a5c !important;
}
.gbp-tip-box {
  background: #f0fdf8;
  border-left: 3px solid #2a9d7b;
  padding: 0.875rem 1.125rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #374151;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.gbp-col-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-inline: auto;
  display: block;
}
.gbp-photo-rounded {
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Narrow centered section */
.gbp-narrow {
  max-width: 760px;
}
.gbp-narrow h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  color: #21232c;
  margin-bottom: 1.25rem;
}
.gbp-narrow p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: #657386;
  margin-bottom: 1rem;
}
.gbp-narrow p:last-child { margin-bottom: 0; }

/* ---- 4 TIPS SECTION ---- */
.gbp-tips {
  background: white;
  padding-block: 5rem;
}
.gbp-tips-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.gbp-tips-intro { flex: 1; }
.gbp-tips-intro h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  color: #21232c;
  margin-bottom: 0.75rem;
}
.gbp-tips-intro p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: #657386;
  max-width: 640px;
}
.gbp-tips-illus {
  width: 150px;
  flex-shrink: 0;
  display: none;
}
@media (min-width: 768px) {
  .gbp-tips-illus { display: block; }
}

.gbp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.gbp-card {
  background: white;
  border: 1px solid #e1e7ef;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.gbp-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.gbp-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  background: #091734;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  color: #ebebeb;
  margin-bottom: 1rem;
}
.gbp-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  color: #21232c;
  margin-bottom: 0.25rem;
}
.gbp-card-sub {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.875rem;
  color: #21232c;
  margin-bottom: 0.75rem;
}
.gbp-card p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: #657386;
}

/* ---- FREE AUDIT SECTION ---- */
.gbp-audit {
  background: #091734;
  padding-block: 5rem;
  overflow: hidden;
}
.gbp-audit-inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .gbp-audit-inner       { flex-direction: row; align-items: flex-start; }
  .gbp-audit-text        { flex: 1; }
  .gbp-audit-form-wrap   { flex: 0 0 460px; }
}
.gbp-audit-text h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: white;
  margin-bottom: 1.25rem;
}
.gbp-audit-text > p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.75rem;
}
.gbp-audit-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.gbp-audit-bullets li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  padding-left: 1.5rem;
  position: relative;
}
.gbp-audit-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2a9d7b;
  font-weight: 700;
}

.gbp-audit-form-wrap {
  position: relative;
  width: 100%;
}
.gbp-audit-badge {
  position: absolute;
  top: -18px;
  right: 12px;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.gbp-form {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  position: relative;
}
.gbp-form-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.125rem;
  color: #21232c;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.gbp-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #657386;
  margin-bottom: 0.3rem;
  margin-top: 0.875rem;
}
.gbp-form label:first-of-type { margin-top: 0; }
.gbp-form input,
.gbp-form textarea {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e1e7ef;
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #21232c;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gbp-form input:focus,
.gbp-form textarea:focus {
  border-color: #2a9d7b;
  box-shadow: 0 0 0 3px rgba(42,157,123,0.12);
}
.gbp-form textarea { resize: vertical; }
.gbp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 480px) {
  .gbp-form-row { grid-template-columns: 1fr; }
}
.gbp-form-btn {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.9rem;
  background: #009118;
  color: white;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}
.gbp-form-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.gbp-form-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 0.75rem;
}

/* ---- GBP BODY: TWO-COLUMN LAYOUT ---- */
.gbp-body {
  background: #fff;
  padding-block: 4rem;
}

.gbp-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.gbp-left-col {
  min-height: 200px;
}


.gbp-right-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Laptop image + stars */
.gbp-laptop-fig {
  position: relative;
  margin: 0;
}
.gbp-laptop-fig img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}
.gbp-stars {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-top: 0.625rem;
}
.gbp-stars span {
  font-size: 1.625rem;
  color: #FFF600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.18);
  line-height: 1;
}

/* Bold impact quote */
.gbp-rc-quote {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: #21232c;
}

/* Illustration stacked above text */
.gbp-rc-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.gbp-rc-item--spacer {
  margin-top: 0.5rem;
}
.gbp-rc-img {
  height: auto;
  display: block;
}
.gbp-rc-img--lg  { width: 170px; }
.gbp-rc-img--md  { width: 150px; }
.gbp-rc-img--xl  { width: 200px; }

.gbp-rc-item p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #374151;
  margin: 0;
}

/* Free Audit card */
.gbp-audit-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  padding: 2.25rem 1.5rem 1.5rem;
  overflow: visible;
}

.gbp-ribbon {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.gbp-audit-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.gbp-audit-g-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}
.gbp-audit-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9375rem;
  color: #21232c;
  line-height: 1.35;
  margin: 0 0 0.2rem 0;
}
.gbp-audit-card-sub {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0;
}

/* Form inside the audit card */
.gbp-audit-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.gbp-audit-form label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #374151;
  font-weight: 500;
}
.gbp-audit-form input,
.gbp-audit-form textarea {
  width: 100%;
  background: rgba(0,0,0,0.04);
  border: 1px solid #e1e7ef;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #21232c;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gbp-audit-form input:focus,
.gbp-audit-form textarea:focus {
  border-color: #2a9d7b;
  box-shadow: 0 0 0 3px rgba(42,157,123,0.12);
}
.gbp-audit-form textarea { resize: vertical; }

.gbp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

.gbp-audit-form button[type="submit"] {
  background: #009118;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
  width: 100%;
  margin-top: 0.25rem;
}
.gbp-audit-form button[type="submit"]:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* ---- GBP LEFT COLUMN ---- */

/* Intro block */
.gbp-lc-intro {
  position: relative;
  margin-bottom: 2.5rem;
}

.gbp-lc-h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  line-height: 1.15;
  color: #21232c;
  margin: 0 0 1.25rem 0;
}

.gbp-lc-lead {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
  color: #1a1f2e;
  margin: 0 0 1rem 0;
}

.gbp-lc-body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.65;
  color: #657386;
  margin: 0 0 1rem 0;
}
.gbp-lc-body:last-child { margin-bottom: 0; }

/* Decorative arrow */
.gbp-arrow-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 75px;
  opacity: 0.65;
  pointer-events: none;
}

/* Large main photo */
.gbp-main-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  margin-bottom: 3rem;
}

/* Section headings (h3) */
.gbp-lc-h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  color: #21232c;
  margin: 2.5rem 0 1.25rem 0;
}

/* Section text blocks */
.gbp-lc-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gbp-lc-bold {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.65;
  color: #657386;
  margin: 0 0 1rem 0;
}
.gbp-lc-bold--dark { color: #1a1f2e; }
.gbp-lc-bold:last-child { margin-bottom: 0; }

/* General guidelines callout */
.gbp-lc-guideline {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
  color: #1a1f2e;
  margin: 1.5rem 0 0 0;
  padding: 0.875rem 1.125rem;
  background: #f0fdf8;
  border-left: 3px solid #2a9d7b;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ---- GBP CONTACT WIDGET (GBP mockup) ---- */
.gbp-contact-widget {
  background: #fff;
  border: 1px solid #e1e7ef;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-block: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.gbp-contact-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: #1a73e8;
  text-align: center;
  margin: 0 0 1.25rem 0;
}

.gbp-contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gbp-contact-card {
  background: #dbeafe;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.gbp-contact-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9375rem;
  color: #1a73e8;
  text-align: center;
  margin: 0 0 0.375rem 0;
}

.gbp-contact-info {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.65;
  color: #21232c;
  text-align: center;
  margin: 0 0 0.75rem 0;
}
.gbp-contact-info:last-child { margin-bottom: 0; }

.gbp-contact-phone {
  color: #1a73e8 !important;
}

.gbp-contact-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  margin: 0 0 0.5rem 0;
}

.gbp-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.8125rem;
}
.gbp-hours-table td {
  padding: 0.2rem 0.25rem;
  color: #374151;
  line-height: 1.5;
}
.gbp-hours-table td:first-child {
  font-weight: 600;
  color: #21232c;
}
.gbp-hours-table td:last-child {
  text-align: right;
}

/* Responsive: stack on smaller screens */
@media (max-width: 960px) {
  .gbp-layout {
    grid-template-columns: 1fr;
  }
  .gbp-right-col {
    max-width: 500px;
    margin-inline: auto;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .gbp-contact-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .gbp-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   SHARED SECTION HELPERS
   =================================================== */
.section-h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: #21232c;
  margin-bottom: 0.75rem;
}
.section-body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #657386;
  margin-bottom: 0.5rem;
}
.text-center { text-align: center; }

/* ===================================================
   ABOUT / VALUE PROP
   =================================================== */
.about {
  padding-block: 5rem;
  background: #fff;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.section-eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-body);
  line-height: 1.4;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.about-text h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: #21232c;
  margin-bottom: 1.25rem;
}
.about-highlight {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  color: var(--navy-dark);
  margin-bottom: 1rem;
}
.about-text p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #657386;
  margin-bottom: 0.75rem;
}
.about-mockup-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}
.about-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.about-arrow {
  position: absolute;
  top: 2rem;
  left: -3rem;
  width: 7rem;
  display: none;
}
@media (min-width: 900px) { .about-arrow { display: block; } }
.about-mockup-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ===================================================
   PROCESS
   =================================================== */
.process {
  padding-block: 6rem;
  background: #f9fafb;
}
.process .section-h2 { margin-bottom: 0.5rem; }
.process .section-body { margin-bottom: 4rem; }

.process-grid-wrap {
  position: relative;
  margin-bottom: 3rem;
}

.process-character {
  position: absolute;
  bottom: 100%;
  right: 2%;
  margin-bottom: -2.5rem;
  width: 22rem;
  z-index: 20;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) { .process-character { display: block; } }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}
.process-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.process-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.process-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.process-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: #1a3060;
  background-image: url('assets/dust-texture.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.process-icon svg {
  width: 34px;
  height: 34px;
}
.process-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  color: #9ca3af;
}
.process-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-h6);
  line-height: var(--lh-h6);
  color: #21232c;
  margin-bottom: 0.5rem;
}
.process-card p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #657386;
}

.process-zero-cost {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #6b7280;
  text-align: center;
  margin-top: 1.5rem;
  letter-spacing: 0.01em;
}

.process-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .process-bottom { grid-template-columns: 1fr; }
}

.why-free-card {
  background: rgba(31,173,83,0.05);
  border: 1px solid rgba(31,173,83,0.15);
  border-radius: 16px;
  padding: 2rem;
}
.why-free-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  color: #21232c;
  margin-bottom: 0.875rem;
}
.why-free-card p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #657386;
}

.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
}
@media (max-width: 540px) {
  .testimonial-card { flex-direction: column; align-items: center; }
}
.testimonial-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.625rem;
}
.testimonial-stars img { width: 20px; height: 20px; }
.testimonial-card blockquote {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #21232c;
  margin-bottom: 0.75rem;
}
.testimonial-attr {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: rgba(33,35,44,0.8);
}
.testimonial-attr span { font-weight: 400; }
.testimonial-url {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #9ca3af;
}

/* ===================================================
   EXAMPLES / PORTFOLIO
   =================================================== */
.examples {
  padding-block: 6rem;
  background: #f3f4f6;
  overflow: visible;
}
.examples-header {
  position: relative;
  margin-bottom: 1rem;
}
.examples-character {
  position: absolute;
  right: 40px;
  top: -120px;
  height: 240px;
  display: none;
}
@media (min-width: 768px) { .examples-character { display: block; } }
.examples-hint {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #9ca3af;
  text-align: center;
  font-style: italic;
  margin-bottom: 3rem;
}
.examples-track-wrap {
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.examples-track-wrap::-webkit-scrollbar { display: none; }
.examples-track-wrap.is-grabbing { cursor: grabbing; }

.examples-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 10;
  pointer-events: none;
}
.examples-fade--left  { left: 0;  background: linear-gradient(to right, #f3f4f6, transparent); }
.examples-fade--right { right: 0; background: linear-gradient(to left,  #f3f4f6, transparent); }

.examples-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding-block: 1rem;
  user-select: none;
}
.ex-card {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.ex-card img {
  height: 280px;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) { .ex-card img { height: 340px; } }

.ex-overlay {
  position: absolute;
  top: 5%;
  left: 12.5%;
  right: 12.5%;
  bottom: 13.5%;
  background: rgba(255,255,255,0.97);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.ex-card:hover .ex-overlay { opacity: 1; pointer-events: auto; }
.ex-cat {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}
.ex-overlay h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  color: #21232c;
  margin-top: 0.25rem;
}
.ex-overlay p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}
.ex-view {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy-dark);
  margin-top: 0.75rem;
  text-decoration: underline;
}

.examples-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.ex-arrow {
  transition: transform 0.15s;
}
.ex-arrow:hover  { transform: scale(1.08); }
.ex-arrow:active { transform: scale(0.95); }
.ex-arrow img { width: 56px; height: 56px; display: block; }

/* iframe site modal */
.site-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-modal[hidden] { display: none; }
.site-modal-inner {
  position: relative;
  width: 90vw;
  height: 90vh;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.site-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  background: rgba(0,0,0,0.7);
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.site-modal-close:hover { background: rgba(0,0,0,0.9); }
.site-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================================================
   REVIEWS
   =================================================== */
.reviews-section {
  /* now lives inside .smartfn-section */
}
.reviews-inner {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .reviews-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}
.reviews-left {
  width: 100%;
}
@media (min-width: 1024px) { .reviews-left { width: 55%; } }

.reviews-tagline {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: var(--fs-h6);
  line-height: var(--lh-h6);
  color: #21232c;
  transform: rotate(-4deg);
  transform-origin: top left;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.reviews-title-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}
.reviews-google-logo {
  width: 80px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
@media (min-width: 768px) { .reviews-google-logo { width: 100px; } }
.reviews-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.375rem;
}
.reviews-stars svg { width: 20px; height: 20px; }
.reviews-title-row h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  color: #21232c;
}
.reviews-body {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  color: #21232c;
  margin-top: 2rem;
  max-width: 820px;
}
.reviews-bottom-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.reviews-play-btn {
  position: relative;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  cursor: pointer;
}
@media (min-width: 768px) { .reviews-play-btn { width: 180px; height: 180px; } }
.reviews-circle-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.reviews-play-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.2s;
}
@media (min-width: 768px) { .reviews-play-img { width: 90px; height: 90px; } }
.reviews-play-btn:hover .reviews-play-img { transform: translate(-50%, -50%) scale(1.1); }
.reviews-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.reviews-check-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-head);
  font-weight: 200;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #21232c;
}
.reviews-check-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.reviews-check-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #038C8C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviews-check-circle svg { width: 22px; height: 22px; }
.reviews-right {
  display: none;
  position: relative;
  width: 45%;
  min-height: 560px;
}
@media (min-width: 1024px) { .reviews-right { display: block; } }
.reviews-mockup {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  object-fit: contain;
}
.reviews-character {
  position: absolute;
  right: 80px;
  top: 0;
  width: 380px;
  object-fit: contain;
  z-index: 10;
}

/* video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal[hidden] { display: none; }
.video-modal-inner {
  position: relative;
  width: min(95vw, 900px);
  background: black;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.video-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  background: rgba(255,255,255,0.15);
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.video-modal-close:hover { background: rgba(255,255,255,0.3); }
.video-modal-inner video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
}

/* ===================================================
   SMART FUNCTIONS
   =================================================== */
.smartfn-section {
  padding-block: 6rem 8rem;
  background: linear-gradient(180deg, #f9fafb 0%, #fff 12%);
  position: relative;
  overflow: hidden;
}

/* Gradient blobs */
.smartfn-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
.smartfn-blob--1 {
  width: 660px;
  height: 640px;
  background: linear-gradient(135deg, #0F7D42, #40B8F5);
  top: 0;
  right: -140px;
}
.smartfn-blob--2 {
  width: 820px;
  height: 681px;
  background: linear-gradient(135deg, #08BD99, #F585FF);
  bottom: -120px;
  right: -180px;
}

.smartfn-section .container { position: relative; z-index: 1; }

/* Header */
.smartfn-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.smartfn-header h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #0f1c2e;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.smartfn-header h2::after {
  content: '';
  display: block;
  height: 3px;
  background: #1FAD53;
  border-radius: 2px;
  margin: 0.4rem auto 0;
  width: 60%;
}
.smartfn-header p {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.6;
  margin-top: 1.25rem;
}

/* Feature rows */
.smartfn-feature {
  max-width: 560px;
  margin-bottom: 4rem;
}
.smartfn-feature--contact {
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.smartfn-feature-visual {
  flex-shrink: 0;
  width: 220px;
}
.smartfn-illustration { width: 100%; }

/* Logo + stars row */
.smartfn-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.smartfn-google-logo {
  width: 72px;
  height: auto;
}
.smartfn-stars {
  font-size: 1.5rem;
  color: #FBBC04;
  line-height: 1;
}

/* Feature title with underline */
.smartfn-feature-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: #0f1c2e;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2.5px solid #1FAD53;
  display: inline-block;
}

/* Checklist */
.smartfn-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.smartfn-checklist li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: #374151;
  font-weight: 500;
}
.smartfn-checklist li img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ===================================================
   SMART FORM
   =================================================== */
.smart-form-section {
  /* now lives inside .smartfn-section */
}
.smart-form-inner {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .smart-form-inner {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
.smart-form-visual {
  display: none;
  position: relative;
  width: 45%;
  min-height: 480px;
}
@media (min-width: 1024px) { .smart-form-visual { display: block; } }
.sf-bell {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  object-fit: contain;
  z-index: 10;
}
.sf-survey {
  position: absolute;
  left: 220px;
  top: 20px;
  width: 200px;
  object-fit: contain;
  z-index: 20;
}
.smart-form-text {
  width: 100%;
}
@media (min-width: 1024px) { .smart-form-text { width: 55%; } }
.smart-form-text h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  color: #21232c;
  display: inline;
}
.sf-underline {
  display: block;
  width: 100%;
  max-width: 511px;
  height: 3px;
  background: #1BA057;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}
.sf-subtitle {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #21232c;
  text-align: left;
  max-width: 511px;
  margin-bottom: 0;
}
.sf-body {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  color: #21232c;
  margin-top: 2rem;
  max-width: 600px;
}
.sf-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1BAD53;
  margin-bottom: 0.4rem;
}
.sf-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.sf-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: #21232c;
  font-weight: 500;
}
.sf-check-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ===================================================
   PRICING
   =================================================== */
.pricing-section {
  padding-block: 6rem;
  background: #f9fafb;
}
.pricing-tagline {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 3.5rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  align-items: start;
}
.pricing-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.pricing-card--featured {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: white;
  box-shadow: 0 12px 30px rgba(13,31,60,0.25);
  transform: scale(1.02);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #21232c;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  margin-bottom: 0.5rem;
}
.pricing-price {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.pricing-price span:first-child {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.5rem;
}
.pricing-unit {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #9ca3af;
}
.pricing-card--featured .pricing-unit { color: rgba(255,255,255,0.6); }
.pricing-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body-sm);
  color: #657386;
  margin-bottom: 1.25rem;
}
.pricing-card--featured .pricing-desc { color: rgba(255,255,255,0.75); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body-sm);
}
.pricing-features svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  stroke: var(--whatsapp);
}
.pricing-card--featured .pricing-features svg { stroke: var(--accent); }
.pricing-btn {
  display: block;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem;
  border-radius: 12px;
  background: var(--navy-dark);
  color: white;
  transition: opacity 0.2s, transform 0.2s;
}
.pricing-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.pricing-card--featured .pricing-btn {
  background: var(--accent);
  color: #21232c;
}
.pricing-note {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #657386;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

/* ===================================================
   GATEWAY
   =================================================== */
.gateway-section {
  padding-block: 6rem;
  background: #f3f4f6;
}
.gateway-section .section-h2 { margin-bottom: 3rem; }
.gateway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.gateway-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: all 0.3s;
  color: inherit;
}
.gateway-card:hover {
  background: #10244C;
  border-color: #10244C;
  box-shadow: 0 8px 24px rgba(16,36,76,0.2);
}
.gateway-icon {
  width: 32px;
  height: 32px;
  stroke: var(--navy-dark);
  margin-bottom: 1rem;
  transition: stroke 0.3s;
}
.gateway-card:hover .gateway-icon { stroke: white; }
.gateway-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-h6);
  line-height: var(--lh-h6);
  color: #21232c;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.gateway-card:hover h3 { color: white; }
.gateway-card p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #657386;
  margin-bottom: 1rem;
  flex: 1;
  transition: color 0.3s;
}
.gateway-card:hover p { color: rgba(255,255,255,0.75); }
.gateway-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy-dark);
  transition: color 0.3s, letter-spacing 0.3s;
}
.gateway-card:hover .gateway-link { color: var(--accent); }

/* ===================================================
   CONTACT SECTION
   =================================================== */
.contact-section {
  position: relative;
  padding-block: 6rem;
  background: #091734;
  overflow: hidden;
}
.contact-circle {
  position: absolute;
  right: 3%;
  top: 10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) { .contact-circle { display: block; } }
.contact-circle-video {
  object-fit: cover;
  object-position: center;
}
.contact-bruno {
  position: absolute;
  bottom: 0;
  right: 5%;
  height: 60%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  z-index: 5;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) { .contact-bruno { display: block; } }
.contact-quote {
  position: absolute;
  top: 35%;
  right: 4%;
  width: 340px;
  z-index: 5;
  display: none;
  align-items: flex-start;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .contact-quote { display: flex; } }
.contact-quote img { width: 40px; height: 28px; flex-shrink: 0; margin-top: 0.25rem; }
.contact-quote p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: white;
  text-align: center;
}
.contact-quote-attr {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
  text-align: center;
  margin-top: 0.75rem;
}
.contact-content { position: relative; z-index: 10; }
.contact-heading-row {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 0.75rem;
  max-width: 42rem;
}
.contact-bird {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
  flex-shrink: 0;
  margin-bottom: -0.5rem;
}
@media (min-width: 768px) { .contact-bird { width: 9rem; height: 9rem; } }
.contact-heading-row h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  color: white;
}
.contact-sub {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 36rem;
  padding-left: 0;
}
@media (min-width: 768px) { .contact-sub { padding-left: 10rem; } }
.contact-form {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  max-width: 32rem;
}
.cf-field {
  margin-bottom: 1rem;
}
.cf-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #657386;
  margin-bottom: 0.3rem;
}
.cf-field input,
.cf-field textarea {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #21232c;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(250,193,20,0.15);
}
.cf-field textarea { resize: vertical; }
.cf-submit {
  width: 100%;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.cf-optional {
  font-size: 0.75rem;
  font-weight: 400;
  color: #9ca3af;
  margin-left: 0.3em;
}
.cf-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 0.75rem;
}
.cf-feedback {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 1.25em;
  margin-top: 0.75rem;
  text-align: center;
}
.cf-feedback--success { color: #16a34a; }
.cf-feedback--error   { color: #dc2626; }

/* ===================================================
   FOOTER
   =================================================== */
/* ===== FOOTER — Agency 4 style ===== */
.site-footer {
  background: #1A1A1A;
  padding-block: 3rem 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
}

/* 4-column grid */
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem 3rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-cols { grid-template-columns: 1fr; }
}

/* Brand col */
.footer-logo {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}
.footer-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #B5B5B5;
  margin-bottom: 1.25rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-social-link {
  color: #B5B5B5;
  display: flex;
  align-items: center;
  transition: color 0.18s;
}
.footer-social-link:hover { color: #fff; }

/* Column titles */
.footer-col-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
}

/* Nav links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-col ul li a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  color: #B5B5B5;
  text-decoration: none;
  line-height: 1.25;
  transition: color 0.18s;
}
.footer-col ul li a:hover { color: #fff; }

/* Contact dl */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 0.5rem;
}
.footer-contact-row dt,
.footer-contact-row dd {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  color: #B5B5B5;
  line-height: 1.5;
  margin: 0;
}
.footer-contact-row dd a {
  color: #B5B5B5;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-contact-row dd a:hover { color: #fff; }

/* Have questions bar */
.footer-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #202020;
  border-radius: 16px;
  padding: 1.5rem 2.5rem;
  margin-bottom: 2rem;
}
.footer-cta-bar-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.125rem;
  color: #fff;
}
.footer-cta-bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: #21232C;
  text-decoration: none;
  background: #FAC114;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.75rem;
  box-shadow: 0 10px 15px -3px rgba(250,193,20,0.30), 0 4px 6px -4px rgba(250,193,20,0.30);
  transition: transform 0.2s, box-shadow 0.2s;
}
.footer-cta-bar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 20px -3px rgba(250,193,20,0.40);
}

/* Disclaimer */
.footer-disclaimer {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.8;
  color: #B5B5B5;
  margin-bottom: 1.25rem;
}

/* Legal links */
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  margin-bottom: 0.75rem;
}
.footer-legal-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  color: #B5B5B5;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-legal-links a:hover { color: #fff; }

/* Copyright */
.footer-copyright {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  color: #B5B5B5;
  line-height: 1.6;
}
.footer-copyright strong { font-weight: 700; }

/* ===================================================
   FAQ PAGE
   =================================================== */
.faq-page-section {
  padding-block: 5rem 7rem;
  background: #fff;
}
.faq-page-inner {
  max-width: 780px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding-block: 2rem;
}
.faq-item:first-child { border-top: 1px solid #e5e7eb; }
.faq-item dt {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  color: #0f1c2e;
  margin-bottom: 0.85rem;
}
.faq-item dd {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  margin: 0;
}
.faq-item dd p {
  margin-bottom: 0.85rem;
}
.faq-item dd p:last-child { margin-bottom: 0; }
.faq-cta {
  margin-top: 3.5rem;
  padding: 2rem 2.5rem;
  background: #f9fafb;
  border-radius: 16px;
  text-align: center;
}
.faq-cta p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #374151;
  margin-bottom: 0.5rem;
}
.faq-cta a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: #1FAD53;
  text-decoration: none;
}
.faq-cta a:hover { text-decoration: underline; }

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-page-section {
  padding-block: 5rem 7rem;
  background: #fff;
}
.about-page-inner {
  max-width: 760px;
}
.about-page-h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  color: #0f1c2e;
  margin-bottom: 2rem;
}
.about-page-body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 1.5rem;
}

/* ===================================================
   SEO PAGE — HERO
   =================================================== */
.seo-hero {
  position: relative;
  background: #071425;
  background-image:
    radial-gradient(ellipse 70% 90% at 90% 60%, #1a4490 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 75% 80%, #0e2d6e 0%, transparent 70%);
  padding-top: var(--header-total);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.seo-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding-block: 3.5rem;
  width: 100%;
}

.seo-hero-h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.0;
  color: #f8fafc;
  margin: 0 0 1.25rem 0;
}

.seo-hero-sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.80);
  max-width: 480px;
  margin: 0;
}

.seo-hero-img {
  width: clamp(240px, 30vw, 380px);
  flex-shrink: 0;
}

.seo-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

@media (max-width: 768px) {
  .seo-hero-inner { grid-template-columns: 1fr; }
  .seo-hero-img   { display: none; }
  .seo-hero-h1    { font-size: 2rem; }
  .seo-hero-sub   { max-width: 100%; }
}

/* ===================================================
   SEO PAGE — CHECKLIST
   =================================================== */
.seo-checklist {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.seo-check-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.seo-check-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 1px;
}

.seo-check-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: #21232c;
  line-height: 1.4;
  margin: 0 0 0.375rem 0;
}

.seo-cta-h3 {
  margin-top: 3.5rem;
}

/* ===================================================
   GBP — "NOT SURE WHERE TO START?" SECTION
   =================================================== */
.gbp-start {
  position: relative;
  padding-block: 4.5rem 6rem;
  background: #f8fafc;
  overflow: hidden;
}

/* Woman photo — absolute right, smaller, fades into grey */
.gbp-start-figure {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 34%;
  max-width: 400px;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 22%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, black 22%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.gbp-start-figure img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.42;
  mix-blend-mode: soft-light;
}

.gbp-start-inner {
  position: relative;
  z-index: 1;
}

.gbp-start-head {
  max-width: 560px;
  margin-bottom: 2.75rem;
}

.gbp-start-h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: #21232c;
  margin-bottom: 0.875rem;
}

.gbp-start-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #657386;
}

/* 4 cards side by side, each shifted down progressively */
.gbp-cascade {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.gbp-scard {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.05);
  padding: 1.5rem 1.25rem;
}

.gbp-scard:nth-child(2) { margin-top: 2.5rem; }
.gbp-scard:nth-child(3) { margin-top: 5rem; }
.gbp-scard:nth-child(4) { margin-top: 7.5rem; }

.gbp-scard-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #091734;
  border-radius: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}

.gbp-scard-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: #21232c;
  margin-bottom: 0.25rem;
}

.gbp-scard-tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  color: #21232c;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.gbp-scard-body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.65;
  color: #657386;
}

.gbp-scard-body strong {
  color: #21232c;
  font-weight: 700;
}

@media (max-width: 860px) {
  .gbp-cascade { grid-template-columns: repeat(2, 1fr); }
  .gbp-scard:nth-child(2),
  .gbp-scard:nth-child(3),
  .gbp-scard:nth-child(4) { margin-top: 0; }
  .gbp-start-figure { display: none; }
  .gbp-start { padding-block: 3.5rem; }
}

@media (max-width: 520px) {
  .gbp-cascade { grid-template-columns: 1fr; }
}
