/* ==========================================================================
   LTTT MEDIA — style.css
   ========================================================================== */

:root {
  --navy: #0B1830;
  --navy-2: #132345;
  --blue: #2F5FE0;
  --blue-hover: #2751C9;
  --blue-light: #7FA0F5;
  --blue-pale: #EAF0FE;
  --bg: #F6F8FC;
  --white: #FFFFFF;
  --muted: #5B6472;
  --green: #1FAA59;
  --border: #E6E9F0;
  --star: #F5A623;

  --radius-card: 18px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 10px rgba(11, 24, 48, 0.04);
  --shadow-card-hover: 0 12px 28px rgba(11, 24, 48, 0.10);

  --font-display: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;

  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 999;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 2px;
  border-radius: 4px;
}

.section {
  padding: 88px 0;
}

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

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

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

.section--navy {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head--left {
  text-align: left;
  margin: 0 0 32px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.eyebrow--light {
  color: var(--blue-light);
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.section--navy .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  text-align: center;
  max-width: 100%;
}

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

.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}

.btn-primary--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-block {
  width: 100%;
}

/* ---------- Banner ---------- */
.top-banner {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 10px 20px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: none;
  background: none;
  padding: 0;
  text-align: left;
}

.logo-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10.5px;
  color: var(--blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  padding: 6px 2px;
  position: relative;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav .mobile-nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 100px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(127, 160, 245, 0.5);
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  max-width: 820px;
  margin: 0 auto 22px;
  color: var(--white);
}

.hero h1 .highlight {
  color: var(--blue-light);
}

.hero-lead {
  max-width: 620px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
  margin-bottom: 40px;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
  font-weight: 500;
}

.check-icon {
  color: var(--green);
  flex-shrink: 0;
}

/* ---------- Icon badges ---------- */
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
}

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.card .icon-badge {
  margin-bottom: 18px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--blue);
}

.card-link:hover {
  color: var(--blue-hover);
}

/* Service card as link wrapper */
.service-card {
  display: block;
  height: 100%;
}

/* ---------- Testimonials ---------- */
.video-row {
  margin-bottom: 24px;
  align-items: start;
}

.video-tile {
  border-radius: var(--radius-card);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 16 / 9;
  padding: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: none;
  width: 100%;
}

.video-tile:hover .play-btn {
  background: rgba(255, 255, 255, 0.22);
}

.video-tile.is-playing {
  padding: 0;
  cursor: default;
}

.video-tile.is-playing iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--star);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 18px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14.5px;
}

.testimonial-office {
  color: var(--muted);
  font-size: 13.5px;
}

/* ---------- About teaser / stats ---------- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-teaser p {
  color: var(--muted);
  font-size: 16px;
  margin: 18px 0 22px;
}

.text-link {
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.text-link:hover {
  color: var(--blue-hover);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-block {
  text-align: center;
  padding: 28px 12px;
  background: var(--bg);
  border-radius: var(--radius-card);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  color: var(--navy);
}

.stat-label {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 6px;
}

.section--navy .stat-block {
  background: rgba(255, 255, 255, 0.06);
}

.section--navy .stat-number {
  color: var(--white);
}

.section--navy .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

.section-footer-link {
  text-align: center;
  margin-top: 40px;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--navy);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--blue);
}

.faq-icon::before {
  width: 10px;
  height: 1.6px;
}

.faq-icon::after {
  width: 1.6px;
  height: 10px;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-icon::after {
  transform: scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  color: var(--muted);
  font-size: 15px;
  padding: 0 4px 22px;
}

.faq-answer a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(47, 95, 224, 0.35);
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--blue-hover);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-grid .section-head--left p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin-top: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-link {
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, transform 0.15s ease;
}

.social-link svg {
  width: 34px;
  height: 34px;
}

.social-link:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.company-info {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.company-info p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-card .icon-badge {
  background: rgba(127, 160, 245, 0.18);
  color: var(--blue-light);
}

.contact-card-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-card-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
}

.contact-card-note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
  margin-top: 3px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 24px 0;
  font-size: 13.5px;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
  text-align: center;
}

.footer-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-link:hover {
  color: var(--white);
}

/* ---------- Pages / subpages ---------- */
.page {
  display: none;
}

.page.is-active {
  display: block;
}

.subhero {
  padding: 64px 0 60px;
}

.subhero-back {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  color: var(--blue-light);
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 22px;
}

.subhero-back:hover {
  color: var(--white);
}

.subhero h1 {
  font-size: clamp(30px, 4.6vw, 46px);
  color: var(--white);
  max-width: 760px;
}

.page-content {
  padding-top: 72px;
  padding-bottom: 72px;
}

.page-content p.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 20px;
}

.page-content h2 {
  font-size: 26px;
  margin: 48px 0 28px;
}

.prose {
  max-width: 760px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 19px;
  margin: 32px 0 12px;
}

.prose p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 16px;
}

.prose ul {
  margin: 0 0 20px;
  padding: 0;
}

.prose li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 15.5px;
  color: var(--muted);
}

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 56px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 0;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 14px;
}

.step h4 {
  font-size: 14.5px;
  color: var(--navy);
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  padding-top: 22px;
}

.step-arrow svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.4px;
}

.page-cta {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.page-cta h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.page-cta > p {
  color: var(--muted);
  font-size: 15.5px;
  max-width: 460px;
  margin: 0 auto 28px;
}

.page-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---------- Carousels (Wyniki: case studies + opinie) ---------- */
.carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}

.carousel-arrow:hover {
  background: var(--bg);
  transform: translateY(-1px);
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.video-card {
  flex: 0 0 60%;
  scroll-snap-align: center;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  box-shadow: var(--shadow-card);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.review-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 22px 22px 24px;
  position: relative;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-right: 24px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
}

.review-company {
  color: var(--muted);
  font-size: 13px;
}

.review-google-badge {
  position: absolute;
  top: 20px;
  right: 20px;
}

.review-google-badge svg {
  width: 18px;
  height: 18px;
}

.review-card .stars {
  font-size: 14px;
  margin-bottom: 4px;
}

.review-date {
  color: var(--muted);
  font-size: 12.5px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14.5px;
  color: var(--navy);
  line-height: 1.55;
}

.review-text--placeholder {
  color: var(--blue-hover);
  font-weight: 600;
  font-style: italic;
}

/* Service detail */
.service-tagline {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  max-width: 720px;
  margin-bottom: 48px;
}

.service-block {
  max-width: 760px;
  margin-bottom: 40px;
}

.service-block h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-block p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 14px;
}

.service-block p:last-child {
  margin-bottom: 0;
}

.scope-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15.5px;
  color: var(--navy);
}

.scope-list .check-icon {
  margin-top: 3px;
}

.process-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15.5px;
  color: var(--navy);
}

.process-number {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.process-note {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  margin-top: 4px;
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 24, 48, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.2s ease;
}

.modal-overlay.is-open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.modal-close:hover {
  background: var(--bg);
}

.modal h3 {
  font-size: 22px;
  margin-bottom: 6px;
  padding-right: 30px;
}

.modal p.modal-sub {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 24px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 6px;
}

.form-field input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  background: var(--bg);
}

.form-field input:focus {
  outline: 3px solid var(--blue-light);
  outline-offset: 1px;
  border-color: var(--blue);
}

.form-field input.is-invalid {
  border-color: #e0453c;
  background: #fdf1f0;
}

.form-error-message {
  display: none;
  color: #e0453c;
  font-size: 13.5px;
  font-weight: 600;
  margin: -4px 0 14px;
}

.form-error-message.is-visible {
  display: block;
}

.btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-success {
  display: none;
  text-align: center;
  padding: 12px 0 4px;
}

.form-success .check-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success .check-icon svg {
  width: 24px;
  height: 24px;
}

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

  .video-row {
    grid-template-columns: 1fr 1fr;
  }

  .about-teaser {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 24px 20px;
    display: none;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
  }

  .main-nav .mobile-nav-cta {
    display: inline-flex;
    width: auto;
    margin-top: 16px;
    border-bottom: none;
    padding: 13px 26px;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions {
    display: none;
  }

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

  .stat-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 64px 0 72px;
  }

  .section {
    padding: 64px 0;
  }

  .steps-row {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .step {
    flex-direction: row;
    text-align: left;
    gap: 14px;
  }

  .step-number {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step-arrow {
    display: none;
  }

  .carousel-arrow {
    display: none;
  }

  .video-card {
    flex-basis: 85%;
  }

  .review-card {
    flex-basis: 85%;
  }
}

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

  .subhero h1 {
    font-size: 24px;
  }

  .section-head h2 {
    font-size: 22px;
  }

  .page-content h2 {
    font-size: 20px;
  }

  .hero-pill {
    font-size: 11px;
    padding: 6px 14px;
  }

  .eyebrow {
    font-size: 11px;
  }
}
