:root {
  --bg: #eef2ff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --brand: #0f4c81;
  --brand-2: #16a34a;
  --accent: #f59e0b;
  --line: rgba(15, 23, 42, 0.12);
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 76, 129, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(22, 163, 74, 0.12), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
}

main {
  padding-bottom: 7rem;
}

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(248, 251, 255, 0.78);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 220ms ease, opacity 220ms ease;
  will-change: transform, opacity;
}

.site-header.is-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.navbar,
.section,
.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.navbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.brand-logo {
  width: 120px;
  height: 104px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.12));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex: 1;
  color: #334155;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  background: linear-gradient(135deg, #1d7ed8, #0f4c81);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 58px;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.92));
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.nav-phone strong {
  font-size: 1rem;
  line-height: 1.1;
}

.nav-cta {
  min-height: 46px;
  padding-inline: 1.2rem;
  box-shadow: 0 12px 24px rgba(15, 76, 129, 0.2);
  animation: cta-pulse 0.95s ease-in-out infinite;
  transform-origin: center;
}

@keyframes cta-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 12px 24px rgba(15, 76, 129, 0.2);
  }

  50% {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 18px 34px rgba(15, 76, 129, 0.38);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-cta {
    animation: none;
  }
}

.section {
  padding: 4rem 0;
}

#reviews {
  scroll-margin-top: 110px;
}

.hero {
  padding-top: 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.main-container {
  display: flex;
  align-items: stretch;
  gap: 24px;
  min-height: clamp(680px, 74vh, 780px);
}

.hero-copy,
.lead-card,
.trust-bar,
.university-card,
.info-card,
.feature-card,
.process-step,
.testimonial-card,
.stat-card,
.final-cta,
.faq-item,
.mobile-bar,
.video-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-copy {
  border-radius: 30px;
  padding: 2rem;
}

.left-card,
.right-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  min-height: clamp(610px, 74vh, 760px);
}

.eyebrow,
.section-kicker,
.lead-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  color: var(--brand);
  background: rgba(15, 76, 129, 0.08);
}

.lead-badge {
  color: var(--brand-2);
  background: rgba(22, 163, 74, 0.1);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  margin: 1rem 0 0.8rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-points {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.6rem;
  color: #1f2937;
}

.hero-credibility {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.hero-credibility > div,
.process-step,
.stat-card {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hero-credibility strong,
.stat-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

.hero-credibility span,
.stat-card span,
.meta,
.form-note,
.process-step p,
.info-card p,
.university-card p,
.feature-card,
.testimonial-card p,
.site-footer p,
.site-footer a {
  color: var(--muted);
}

.lead-card {
  border-radius: 30px;
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: auto -25% -35% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 76, 129, 0.2), transparent 66%);
}

.lead-card-head h2 {
  margin: 0.45rem 0;
}

.right-card form {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
}

.right-card button {
  margin-top: auto;
}

.lead-form,
.mini-form {
  display: grid;
  gap: 0.85rem;
}

.lead-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.mini-form input {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.96);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0.7rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1d7ed8, #0f4c81);
}

.btn-dark {
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #111827);
}

.btn-light {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.12);
}

.btn-small {
  min-height: 38px;
  padding: 0.55rem 0.95rem;
}

.btn-large {
  min-height: 50px;
  padding: 0.95rem 1.35rem;
}

.btn-full {
  width: 100%;
  padding: 0.95rem 1.1rem;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
}

.checkbox-wrapper {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  line-height: 1.2;
  color: var(--muted);
  white-space: nowrap;
}

.checkbox-wrapper input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  flex: 0 0 auto;
  accent-color: #1d7ed8;
}

.checkbox-wrapper label {
  margin: 0;
  min-width: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.trust-bar {
  border-radius: 22px;
  padding: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 248, 255, 0.9));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  padding: 0.95rem 0.85rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(29, 126, 216, 0.08) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.trust-item:hover::before {
  transform: translateX(120%);
}

.trust-item strong {
  color: #0f172a;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.trust-check {
  width: 1.45rem;
  height: 1.45rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1d7ed8, #0f4c81);
  box-shadow: 0 8px 18px rgba(15, 76, 129, 0.28);
  flex: 0 0 auto;
}

.section-heading {
  margin-bottom: 1.25rem;
}

.section-heading.compact {
  margin-bottom: 0.8rem;
}

.section-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin: 0.5rem 0 0;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.university-card,
.info-card,
.feature-card,
.testimonial-card {
  border-radius: 22px;
  padding: 1.15rem;
}

.university-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-content: start;
  height: 100%;
}

.university-card {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.university-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 76, 129, 0.18);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.15);
}

.info-card {
  position: relative;
  overflow: hidden;
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: 1.1rem 1.15rem 1.1rem 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95));
  border: 1px solid rgba(15, 76, 129, 0.1);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1d7ed8, #16a34a);
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 76, 129, 0.18);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.info-card strong {
  display: block;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.2;
  color: #334155;
  letter-spacing: -0.01em;
}

.info-card p {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
}

.info-card:nth-child(6n + 1)::before,
.info-card:nth-child(6n + 4)::before {
  background: linear-gradient(180deg, #1d7ed8, #0f4c81);
}

.info-card:nth-child(6n + 2)::before,
.info-card:nth-child(6n + 5)::before {
  background: linear-gradient(180deg, #16a34a, #22c55e);
}

.info-card:nth-child(6n + 3)::before,
.info-card:nth-child(6n + 6)::before {
  background: linear-gradient(180deg, #0ea5e9, #1d7ed8);
}

.uni-cta {
  margin-top: auto;
  align-self: flex-start;
  padding-inline: 1rem;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #0f4c81, #1d7ed8);
}

.university-card .uni-logo {
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.university-card .uni-logo-img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.badge {
  justify-self: start;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  background: rgba(15, 76, 129, 0.1);
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.badge-row .badge {
  justify-self: auto;
  white-space: nowrap;
  flex: 0 0 auto;
}

.highlight-band {
  padding-top: 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  padding: 1.1rem 1.15rem 1.1rem 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.95));
  border: 1px solid rgba(15, 76, 129, 0.1);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #1d7ed8, #0f4c81);
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 76, 129, 0.18);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.stat-card strong {
  font-size: 1.15rem;
  line-height: 1.1;
  color: #0f172a;
  margin: 0;
}

.stat-card span {
  font-size: 0.95rem;
  line-height: 1.35;
}

.stat-card:nth-child(4n + 2)::before {
  background: linear-gradient(180deg, #16a34a, #22c55e);
}

.stat-card:nth-child(4n + 3)::before {
  background: linear-gradient(180deg, #0ea5e9, #1d7ed8);
}

.stat-card:nth-child(4n + 4)::before {
  background: linear-gradient(180deg, #f59e0b, #f97316);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.35rem;
  padding: 1.15rem 1.15rem 1.15rem 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.96));
  border: 1px solid rgba(15, 76, 129, 0.1);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #1d7ed8, #16a34a);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 76, 129, 0.18);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.feature-card strong {
  display: block;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
  color: #334155;
}

.feature-card br {
  display: none;
}

.feature-card {
  color: var(--muted);
}

.feature-card:nth-child(6n + 1)::before,
.feature-card:nth-child(6n + 4)::before {
  background: linear-gradient(180deg, #1d7ed8, #0f4c81);
}

.feature-card:nth-child(6n + 2)::before,
.feature-card:nth-child(6n + 5)::before {
  background: linear-gradient(180deg, #16a34a, #22c55e);
}

.feature-card:nth-child(6n + 3)::before,
.feature-card:nth-child(6n + 6)::before {
  background: linear-gradient(180deg, #0ea5e9, #1d7ed8);
}

.quick-form-section {
  padding-top: 0;
}

.quick-form-card {
  border-radius: 28px;
  padding: 1.4rem;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.1), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: center;
}

.inline-mini-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem;
}

.inline-mini-form .btn {
  grid-column: 1 / -1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.28rem;
  padding: 1.1rem 1.15rem 1.1rem 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95));
  border: 1px solid rgba(15, 76, 129, 0.1);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #1d7ed8, #16a34a);
}

.process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 76, 129, 0.18);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.process-step span {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: var(--brand);
  font-weight: 800;
}

.process-step strong {
  display: block;
  color: #0f172a;
  line-height: 1.25;
}

.process-step p {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.tabs {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.tab {
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-weight: 800;
}

.tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #1d7ed8);
  border-color: transparent;
}

.tab-panel {
  border-radius: 22px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.subject-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.7rem;
}

.testimonial-card {
  display: grid;
  gap: 0.7rem;
}

.review-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.review-card strong {
  font-size: 0.98rem;
}

.review-card p {
  margin: 0;
  color: var(--muted);
}

.reviews-rail {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 18px;
}

.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reviews-scroll 34s linear infinite;
  will-change: transform;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.review-snapshot {
  display: block;
  width: clamp(220px, 34vw, 320px);
  height: auto;
  flex: 0 0 auto;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.google-review-card {
  width: clamp(280px, 36vw, 360px);
  flex: 0 0 auto;
  padding: 1rem 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  background: linear-gradient(135deg, #0f4c81, #1d7ed8);
  flex: 0 0 auto;
}

.google-review-card strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.2;
}

.review-meta {
  margin: 0.12rem 0 0;
  font-size: 0.78rem;
  color: #64748b;
}

.review-stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.google-review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.93rem;
}

.reviews {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.reviews-heading {
  margin-top: 2rem;
}

.reviews-copy {
  margin: 0.55rem 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.reviews .review-card {
  flex: 1 1 30%;
}

.video-box {
  position: relative;
  width: 100%;
  max-width: 100%;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
  background: #0f172a;
}

.video-pair {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.thumbnail {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.video-box iframe {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  display: block;
}

.local-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #0f172a;
  object-fit: contain;
  object-position: center center;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
    transform: none;
  }
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 18px;
  padding: 0.3rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  padding: 0.85rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding-bottom: 0.9rem;
}

.final-cta {
  border-radius: 28px;
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.bottom-apply-cta {
  border-radius: 24px;
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.09), rgba(22, 163, 74, 0.08));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
  position: fixed;
  left: 50%;
  bottom: 1rem;
  width: min(1080px, calc(100% - 2.4rem));
  transform: translateX(-50%);
  z-index: 44;
  backdrop-filter: blur(14px);
}

.bottom-apply-copy {
  max-width: 500px;
}

.bottom-apply-copy h2 {
  margin: 0.05rem 0 0.15rem;
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
}

.bottom-apply-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.25;
  font-size: 0.84rem;
}

.bottom-apply-btn {
  min-width: 144px;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 1rem;
  animation: cta-pulse 0.95s ease-in-out infinite;
  transform-origin: center;
}

@media (max-width: 720px) {
  .bottom-apply-cta {
    flex-direction: column;
    align-items: stretch;
    width: calc(100% - 1rem);
    bottom: 5rem;
    padding: 0.55rem 0.75rem;
  }

  .bottom-apply-btn {
    width: 100%;
    min-width: 0;
  }
}

.mini-form {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: center;
}

.mini-form input {
  min-width: 180px;
}

.site-footer {
  padding: 0 0 8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(240, 247, 255, 0.45));
}

.footer-grid {
  padding: 1.6rem 0 1rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.footer-grid > div {
  padding: 0.2rem 0;
}

.footer-grid h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 0.8rem;
}

.footer-grid h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 4px;
  height: 1.2em;
  border-radius: 999px;
  background: linear-gradient(180deg, #1d7ed8, #16a34a);
}

.footer-grid p {
  margin: 0.5rem 0 0;
  line-height: 1.6;
}

.footer-links,
.footer-legal {
  display: grid;
  gap: 0.6rem;
  align-content: start;
  padding-top: 0.15rem;
}

.footer-links a,
.footer-legal a {
  width: fit-content;
  padding: 0.1rem 0;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--brand);
}

.copyright {
  margin: 0.9rem 0 0;
  padding: 0.8rem 1rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
  width: 100%;
  color: #64748b;
}

.footer-disclaimer {
  margin: 0.8rem 0 0;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 250, 255, 0.8));
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.65;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 5.7rem;
  z-index: 40;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.32);
  animation: cta-pulse 0.95s ease-in-out infinite;
  transform-origin: center;
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 45;
  border-radius: 18px;
  overflow: hidden;
}

.mobile-bar a {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 0.95rem 0.5rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.94);
}

.mobile-bar a + a {
  border-left: 1px solid rgba(15, 23, 42, 0.08);
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lead-modal.is-open {
  display: flex;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.52);
}

.lead-modal-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border-radius: 28px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.08);
  font-size: 1.4rem;
  cursor: pointer;
}

body.thankyou {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

body.modal-open {
  overflow: hidden;
}

.thankyou-wrap {
  width: min(760px, calc(100% - 2rem));
  border-radius: 32px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.thankyou-wrap h1 {
  margin-bottom: 0.75rem;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.thankyou-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  border: 1px solid transparent;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.thankyou-btn-call {
  color: #fff;
  background: linear-gradient(135deg, #1d7ed8, #0f4c81);
}

.thankyou-btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #111827);
}

.thankyou-btn-home {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.12);
}

.thankyou-btn:hover {
  transform: translateY(-1px);
}

.thankyou-btn:focus-visible {
  outline: 3px solid rgba(29, 126, 216, 0.25);
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .four-up,
  .three-up,
  .stats-row,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta,
  .quick-form-card,
  .mini-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .main-container {
    flex-direction: column;
    min-height: auto;
  }

  .left-card,
  .right-card {
    min-height: auto;
  }

  .navbar,
  .nav-actions {
    gap: 0.6rem;
  }

  .navbar {
    flex-wrap: wrap;
    min-height: auto;
    padding: 0.45rem 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0.7rem;
    font-size: 0.76rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    flex: none;
  }

  .nav-phone strong {
    font-size: 0.9rem;
  }

  .nav-phone {
    min-width: 148px;
    padding: 0.55rem 0.8rem;
  }

  .brand-logo {
    width: 96px;
    height: 84px;
  }

  .hero-grid,
  .four-up,
  .three-up,
  .stats-row,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reviews .review-card {
    flex-basis: 100%;
  }

  .lead-card {
    order: -1;
  }

  .hero-copy,
  .lead-card,
  .trust-bar,
  .final-cta {
    border-radius: 22px;
    padding: 1rem;
  }

  .section {
    padding: 2.6rem 0;
  }

  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .video-box {
    max-width: 100%;
  }

  .mobile-bar {
    display: flex;
  }

  .floating-whatsapp {
    bottom: 4.9rem;
  }

  .site-footer {
    padding-bottom: 10rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-cta,
  .bottom-apply-btn,
  .floating-whatsapp {
    animation: none;
  }
}
