/* =========================================================
   Webbynew — Minimal Brutalism
   Shared stylesheet for every page
   ========================================================= */

:root {
  --red: #e91c2b;
  --red-dark: #c41522;
  --black: #000000;
  --slate: #1f2125;
  --slate-2: #2b2e33;
  --white: #ffffff;
  --bg-soft: #f3f3f3;
  --bg-light: #fafafa;
  --line: #e5e5e5;
  --text: #1a1a1a;
  --muted: #5f6368;

  --font-display: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --container: 1180px;
  --shadow-soft: 0 4px 18px rgba(0, 0, 0, 0.06);
  --shadow-hard: 6px 6px 0 0 var(--black);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease, background-color 0.18s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1rem;
}

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

.section {
  padding: 90px 0;
}

.section-tight {
  padding: 60px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.eyebrow-light {
  color: #fff;
}

.center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
  border: 2px solid transparent;
  background: var(--black);
  color: var(--white);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease,
    border-color 0.15s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 var(--red);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: 4px 4px 0 0 var(--black);
}

.btn-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.btn-light:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 4px 4px 0 0 var(--black);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--black);
  box-shadow: 4px 4px 0 0 var(--red);
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--slate);
  color: #d6d6d6;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 18px;
}

.topbar-left {
  display: flex;
  gap: 22px;
}

.topbar-left a:hover {
  color: var(--red);
}

.topbar-right {
  display: flex;
  gap: 14px;
}

.topbar-right a {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
}

.topbar-right svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.topbar-right a:hover {
  color: var(--red);
}

/* ---------- Header / Nav ---------- */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}

.nav-logo {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.02em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.nav-cta .btn {
  padding: 12px 22px;
  font-size: 11px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  --hero-img: url("Lights.jpg");
  --hero-height: 480px;
  position: relative;
  min-height: var(--hero-height);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding: 90px 24px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  filter: grayscale(1) brightness(0.45);
  z-index: -2;
}

/* Home hero — bigger, custom image */
.hero.hero-home {
  --hero-img: url("agency-41-play-button-15.jpg");
  --hero-height: 1150px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  margin: 0 auto 28px;
  max-width: 900px;
}

.hero p.lead {
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 26px;
  opacity: 0.92;
}

.hero .cta-row {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Red service block ---------- */
.section-red {
  background-color: var(--red);
  background-image: url("agency-41-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-red .eyebrow {
  color: #ffd4d8;
}

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

.red-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 38px;
}

.red-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0;
}

.red-head p {
  font-size: 0.95rem;
  margin: 0;
  align-self: center;
}

/* ---------- Service tiles ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  color: var(--black);
  padding: 22px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 var(--black);
}

.service-card .num {
  position: absolute;
  top: 10px;
  left: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.16em;
}

.service-card h3 {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin: 14px 0 0;
  max-width: 70%;
}

.service-card .ico {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--red);
  flex-shrink: 0;
}

.service-card .ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card .ico svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

.service-card.dark {
  background: var(--black);
  color: var(--white);
}

.service-card.dark:hover {
  box-shadow: 6px 6px 0 0 var(--white);
}

.service-card.dark .num {
  color: var(--red);
}

/* ---------- About / split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-img {
  position: relative;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}

.split-img .badge {
  position: absolute;
  left: -38px;
  top: 40px;
  background: var(--white);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: var(--shadow-soft);
  color: var(--text);
  line-height: 1.25;
}

.split-img .badge .badge-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--red);
}

.split-img .badge .badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.split-img .badge .badge-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.split-img .badge .big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  display: inline-block;
  margin-right: 4px;
}

.split-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
}

.split-content .stripe {
  display: block;
  width: 6px;
  height: 90px;
  background: var(--red);
  margin-top: 24px;
}

/* About section — special styling with gray panel + wave + low red stripe */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: #f4f4f4;
  z-index: 0;
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 180px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 600' fill='none' stroke='%23d8d8d8' stroke-width='1'><path d='M-20 80 Q 40 120 20 200 T 60 360 T -10 540'/><path d='M-40 60 Q 30 110 10 200 T 50 360 T -30 540'/><path d='M-60 40 Q 20 100 0 200 T 40 360 T -50 540'/><path d='M-80 20 Q 10 90 -10 200 T 30 360 T -70 540'/><path d='M-100 0 Q 0 80 -20 200 T 20 360 T -90 540'/></svg>");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 180px 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

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

.about-section .split {
  position: relative;
}

.about-section .split-img {
  position: relative;
}

/* Red vertical stripe pinned to bottom-left of image */
.about-section .split-img::before {
  content: "";
  position: absolute;
  left: -22px;
  bottom: -40px;
  width: 8px;
  height: 130px;
  background: var(--red);
  z-index: 3;
}

/* Hide the stripe in the content column on the About section since we moved it */
.about-section .split-content .stripe {
  display: none;
}

.checks {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.checks li {
  padding: 7px 0 7px 28px;
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}

.kicker-red {
  display: block;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 16px 0 8px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

/* ---------- Dark banner ---------- */
.banner-dark {
  position: relative;
  padding: 90px 24px;
  background: var(--slate);
  color: var(--white);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.banner-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("agency-41-play-button-15.jpg") center/cover no-repeat;
  filter: grayscale(1) brightness(0.35);
  z-index: -2;
}

.banner-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 26, 0.55);
  z-index: -1;
}

.banner-dark h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin: 0;
  max-width: 900px;
  margin-inline: auto;
}

/* ---------- Stats card overlap ---------- */
.stats-wrap {
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

.stats {
  background-color: #f5f3ef;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8'><path d='M0 8 L8 0' stroke='%23e8e5df' stroke-width='0.6'/></svg>");
  background-size: 8px 8px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 50px 30px;
  gap: 14px;
}

.stat {
  text-align: center;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat .icon {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 180px;
  height: 90px;
  background: var(--white);
  color: var(--red);
  border-radius: 0;
  margin-bottom: 20px;
  padding: 12px;
}

.stat .icon img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}

.stat .icon svg {
  width: 46px;
  height: 46px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.stat .label {
  font-size: 13px;
  letter-spacing: 0;
  color: var(--muted);
  text-transform: none;
  font-weight: 400;
}

/* ---------- Inline note row ---------- */
.note-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 60px 0 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.note-row .img-wrap {
  position: relative;
  flex-shrink: 0;
}

.note-row .img-wrap img {
  width: 170px;
  height: 100px;
  object-fit: cover;
  display: block;
}

.note-row .img-wrap::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
}

.note-row .text strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--black);
}

.note-row .text p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- Why choose / split reverse ---------- */
.split.reverse {
  grid-template-columns: 1fr 1fr;
}

/* Why-section — image anchored to viewport left, content right-aligned in container */
.why-section {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.why-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 280px;
  height: 50px;
  background: #f3f3f3;
  z-index: 0;
}

.why-section .why-image {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 935px;
  height: 600px;
  max-width: 100vw;
  z-index: 1;
}

.why-section .why-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.02);
}

.why-section > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.why-content {
  max-width: 360px;
  margin-left: auto;
  margin-right: 0;
  padding: 30px 0;
}

.why-content h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.why-content p {
  font-size: 0.95rem;
  color: var(--text);
}

.why-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: #e3e3e3;
  margin-top: 32px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--white);
}

.testimonials .container {
  text-align: center;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.t-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.t-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 var(--red);
}

.t-card p {
  font-size: 0.92rem;
  color: var(--text);
  margin: 0;
}

.t-card .person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.t-card .person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.t-card .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.t-card .role {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
}

/* ---------- Red callout ---------- */
.callout-red {
  background: var(--red);
  color: var(--white);
  padding: 38px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.callout-red h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
  max-width: 640px;
  display: flex;
  align-items: center;
  gap: 22px;
  line-height: 1.25;
}

.callout-red svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.callout-ico {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
}

.callout-ico img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* White-outline button inside the red callout */
.callout-red .btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
  padding: 16px 30px;
}

.callout-red .btn-outline:hover {
  background: var(--white);
  color: var(--red);
  box-shadow: 4px 4px 0 0 var(--black);
}

/* ---------- Make brands stand out ---------- */
.bg-gray {
  background: var(--bg-soft);
}

/* Brands "Stand Out" section — overlay subtle grain texture */
.brands-section {
  background-color: var(--bg-soft);
  background-image: url("agency-41-ds.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stand-out {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.stand-left h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
}

.tag-row {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.tag {
  background: var(--white);
  padding: 14px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  min-width: 220px;
}

.tag .check-circle {
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.tag .check-circle svg {
  width: 14px;
  height: 14px;
}

.tag-divider {
  border: none;
  border-top: 1px solid #d0d0d0;
  margin: 36px 0 26px;
  width: 100%;
  max-width: 540px;
}

.mini-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 0;
}

.mini-cta .ico {
  width: 56px;
  height: 56px;
  background: transparent;
  display: grid;
  place-items: center;
  color: var(--red);
  flex-shrink: 0;
}

.mini-cta .ico svg,
.mini-cta .ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mini-cta p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 360px;
}

.mini-cta a {
  color: var(--red);
  font-weight: 600;
}

/* Right column — stack of white cards with red left stripe */
.stand-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stand-card {
  background: var(--white);
  border-left: 4px solid var(--red);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.stand-card.lead {
  padding: 26px 28px;
}

.stand-card.lead h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--black);
}

.stand-card.lead p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.stand-card .acc-item {
  background: var(--white);
  border: none;
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  transition: background 0.18s ease, color 0.18s ease;
}

.stand-card .acc-item:hover,
.stand-card .acc-item.open {
  background: var(--bg-soft);
}

.stand-card .acc-item .plus {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  color: var(--black);
}

.stand-card .acc-body {
  background: var(--white);
  border: none;
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.92rem;
  color: var(--muted);
}

.stand-card .acc-body.open {
  padding: 0 28px 22px;
  max-height: 300px;
}

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.price-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 0 var(--red);
}

.price-card .label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--red);
}

.price-card .amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--black);
  border-bottom: 2px solid var(--red);
  padding-bottom: 12px;
  margin-bottom: 10px;
  display: inline-block;
}

.price-card ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  text-align: left;
}

.price-card ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.88rem;
  color: var(--muted);
}

.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}

.price-card .btn {
  margin-top: auto;
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--red);
  padding: 10px 22px;
}

.price-card .btn:hover {
  background: var(--red);
  color: var(--white);
}

/* ---------- Add-ons / feature grid ---------- */
.addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.addon-card {
  background: var(--white);
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.addon-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 var(--black);
}

.addon-card .title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.addon-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.addon-card .price {
  color: var(--red);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ---------- Big feature grid (mobile apps page) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.feature-pill {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.feature-pill:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 var(--red);
}

/* ---------- Red split (red w/ two cards) ---------- */
.red-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 8px;
}

.red-card {
  background: var(--white);
  color: var(--black);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.red-card h3 {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin: 0;
}

.red-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.red-card .btn {
  align-self: flex-start;
  margin-top: 10px;
}

/* ---------- Forms / Tally ---------- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
  margin: 30px auto 0;
  max-width: 680px;
}

.form-wrap.no-border {
  border: none;
  padding: 0;
}

.form-wrap h2 {
  text-align: center;
}

.tally-embed {
  width: 100%;
}

/* ---------- SMS page ---------- */
.sms-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.sms-stat {
  background: var(--white);
  padding: 28px 22px;
  text-align: center;
  border-left: 4px solid var(--red);
  box-shadow: var(--shadow-soft);
}

.sms-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
  display: block;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.sms-stat .label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 8px;
  display: block;
  letter-spacing: 0.04em;
}

.pricing.two-cols {
  grid-template-columns: 1fr 1fr;
  max-width: 760px;
  margin: 30px auto 0;
}

/* Calculator card */
.calculator-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 38px;
  max-width: 720px;
  margin: 30px auto 0;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.calculator-card > p:first-of-type {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 auto 8px;
  max-width: 520px;
}

.calculator-card .slider-wrap {
  margin: 26px 0 30px;
}

.calculator-card input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #e5e5e5;
  outline: none;
  border-radius: 0;
}

.calculator-card input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--red);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  border-radius: 50%;
}

.calculator-card input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--red);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  border-radius: 50%;
}

.calculator-card .slider-range {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.06em;
}

.calculator-card .calc-credits {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin: 6px 0 0;
  letter-spacing: -0.02em;
}

.calculator-card .calc-divider {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 28px auto 22px;
}

.calculator-card .calc-total {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--red);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
}

.calculator-card .calc-breakdown {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--muted);
}

/* SMS signup form (static, no backend) */
.sms-form {
  max-width: 760px;
  margin: 30px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.sms-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.sms-form .form-row.full {
  grid-column: 1 / -1;
}

.sms-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}

.sms-form label .req {
  color: var(--red);
  margin-left: 2px;
}

.sms-form input,
.sms-form select,
.sms-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8d8d8;
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: 0;
  transition: border-color 0.18s ease;
}

.sms-form input:focus,
.sms-form select:focus,
.sms-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

.sms-form textarea {
  min-height: 110px;
  resize: vertical;
}

.sms-form .form-note {
  background: var(--bg-soft);
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  margin-bottom: 26px;
  font-size: 0.92rem;
  color: var(--text);
}

.sms-form .form-note strong {
  color: var(--black);
}

.sms-form .submit-row {
  margin-top: 28px;
  text-align: center;
}

.sms-form button.btn {
  cursor: pointer;
  padding: 16px 38px;
  font-size: 13px;
}

.sms-form button.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success .check {
  width: 64px;
  height: 64px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 32px;
  font-weight: 700;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form-success p {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.6;
}

.form-error {
  background: #fdecec;
  border-left: 4px solid var(--red);
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  color: var(--red-dark);
}

@media (max-width: 760px) {
  .sms-stats {
    grid-template-columns: 1fr 1fr;
  }

  .pricing.two-cols {
    grid-template-columns: 1fr;
  }

  .sms-form .form-grid {
    grid-template-columns: 1fr;
  }

  .calculator-card,
  .sms-form {
    padding: 26px 22px;
  }

  .calculator-card .calc-total {
    font-size: 2.4rem;
  }
}

/* ---------- Legal pages (Privacy, Terms, Cookies) ---------- */
.legal-section {
  padding: 70px 0 90px;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text);
}

.legal-content .meta-date {
  display: block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.legal-content > p:first-of-type {
  font-size: 1.05rem;
  color: var(--text);
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 44px 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
  font-weight: 700;
  padding-left: 16px;
  border-left: 4px solid var(--red);
  line-height: 1.3;
}

.legal-content h3 {
  font-size: 1rem;
  margin: 24px 0 8px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--black);
  font-weight: 700;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin: 0 0 16px;
}

.legal-content li {
  margin: 6px 0;
}

.legal-content a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--black);
}

.legal-content strong {
  color: var(--black);
}

.legal-content .contact-block {
  background: var(--bg-soft);
  padding: 24px 28px;
  margin: 30px 0 0;
  border-left: 4px solid var(--red);
}

.legal-content .contact-block p {
  margin: 4px 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--slate);
  color: #c5c8cc;
  padding: 38px 0 18px;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 14px 14px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top h3 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}

.footer-top a.phone {
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.18s ease, color 0.18s ease;
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.footer-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-bottom {
  padding-top: 18px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9499a0;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-bottom a:hover {
  color: var(--red);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .section {
    padding: 70px 0;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
    margin-right: 0;
  }

  .nav > .container > nav {
    order: 3;
    width: 0;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: none;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .nav-links a:hover,
  .nav-links a.active {
    border-bottom: none;
  }

  .nav-cta {
    display: none;
  }

  .service-grid,
  .pricing,
  .addons,
  .red-cards,
  .t-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .split,
  .split.reverse,
  .stand-out {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-section::before,
  .about-section::after {
    display: none;
  }

  .about-section .split-img::before {
    left: 0;
    bottom: -20px;
  }

  .why-section::before {
    display: none;
  }

  .why-section {
    display: block;
    min-height: 0;
    padding: 0 0 60px;
  }

  .why-section .why-image {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: auto;
    aspect-ratio: 935 / 600;
    margin-bottom: 24px;
  }

  .why-section .why-image img {
    height: 100%;
  }

  .why-content {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .split-img .badge {
    left: 8px;
    top: 8px;
  }

  .red-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .callout-red {
    text-align: center;
    flex-direction: column;
  }

  .callout-red h3 {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 56px 0;
  }

  .topbar .container {
    flex-direction: column;
    gap: 4px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .topbar-left {
    gap: 12px;
  }

  .service-grid,
  .pricing,
  .addons,
  .red-cards,
  .t-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 380px;
    padding: 70px 20px;
  }

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

  .callout-red {
    padding: 26px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .split-img .badge {
    left: 8px;
    top: -18px;
  }
}
