/* RightForm LDA — marketing site */
:root {
  --navy: #0B1F3A;
  --navy-deep: #071526;
  --navy-soft: #132a4a;
  --teal: #2DB4B9;
  --teal-dark: #249a9e;
  --teal-soft: #e6f7f8;
  --teal-glow: rgba(45, 180, 185, 0.18);
  --white: #ffffff;
  --off-white: #f5f8fb;
  --slate: #4a5d73;
  --slate-light: #6b7c90;
  --border: rgba(11, 31, 58, 0.08);
  --shadow: 0 12px 40px rgba(11, 31, 58, 0.1);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.14);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --radius-pill: 999px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--teal-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal);
  color: var(--navy);
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.35rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy) !important;
  box-shadow: 0 8px 24px var(--teal-glow);
}

.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white) !important;
}

.btn-outline {
  background: transparent;
  border-color: rgba(11, 31, 58, 0.2);
  color: var(--navy) !important;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-dark) !important;
  background: var(--teal-soft);
}

.btn-outline-dark {
  background: transparent;
  border-color: rgba(11, 31, 58, 0.15);
  color: var(--navy) !important;
}

.btn-outline-dark:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.btn-light {
  background: var(--white);
  color: var(--navy) !important;
  box-shadow: var(--shadow);
}

.btn-light:hover {
  background: var(--teal-soft);
}

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 31, 58, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo {
  width: auto;
  height: 36px;
  object-fit: contain;
  object-position: left center;
}

.logo-footer {
  height: 40px;
  margin-bottom: 1rem;
}

.nav-desktop {
  display: none;
  gap: 1.75rem;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-desktop a:hover {
  color: var(--teal);
}

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

.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none !important;
}

.header-phone:hover {
  color: var(--teal) !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  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);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 1rem 1.25rem;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile a:not(.btn) {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 0.75rem 0.5rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.nav-mobile a:not(.btn):hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--teal);
}

.nav-mobile .btn {
  width: 100%;
  margin-top: 0.25rem;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .header-phone {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }

  .logo {
    height: 40px;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #f7fbfd 0%, #eef6f8 45%, #f5f8fb 100%);
  padding: 3rem 0 4rem;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.blob-1 {
  width: 380px;
  height: 380px;
  background: rgba(45, 180, 185, 0.35);
  top: -80px;
  right: 5%;
}

.blob-2 {
  width: 280px;
  height: 280px;
  background: rgba(11, 31, 58, 0.08);
  bottom: -40px;
  left: 10%;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: rgba(45, 180, 185, 0.2);
  top: 40%;
  left: 40%;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    padding: 4.5rem 0 5.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.85);
}

.eyebrow svg {
  flex-shrink: 0;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.1rem;
}

.hero-copy h1 .accent {
  color: var(--teal);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
}

.hero-trust svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* Hero card */
.hero-card {
  position: relative;
  background: var(--white);
  border-radius: calc(var(--radius) + 0.25rem);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.hero-card-badge {
  position: absolute;
  top: -12px;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--teal), #3ec9ce);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 16px var(--teal-glow);
  transform: rotate(3deg);
}

.hero-card-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.hero-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-card-head h2 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.hero-card-head p {
  margin: 0;
  color: var(--slate-light);
  font-size: 0.9rem;
}

.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-card-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.hero-card-list .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.price-tag {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}

.price-tag.soft {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.8rem;
}

.hero-card-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--slate-light);
  text-align: center;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--off-white) 0%, #eef4f7 100%);
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
}

.section-lead {
  color: var(--slate);
  font-size: 1.05rem;
  margin: 0;
}

/* Service cards */
.cards-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(11, 31, 58, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 800px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(11, 31, 58, 0.04);
}

.price-card.featured {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.price-card.featured .price-desc,
.price-card.featured ul li {
  color: rgba(255, 255, 255, 0.8);
}

.price-label {
  display: inline-block;
  align-self: flex-start;
  background: var(--teal);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.price-card h3 {
  font-size: 1.25rem;
}

.price-amount {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.25rem 0 0.5rem;
  line-height: 1;
}

.price-amount .currency {
  font-size: 1.5rem;
  vertical-align: super;
  margin-right: 0.1rem;
}

.price-card.featured .price-amount {
  color: var(--teal);
}

.price-desc {
  color: var(--slate);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.price-card ul {
  margin-bottom: 1.5rem;
  flex: 1;
}

.price-card ul li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  color: var(--slate);
  font-size: 0.92rem;
}

.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.price-card .btn {
  width: 100%;
}

.pricing-notes {
  margin-top: 2rem;
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}

.pricing-notes p {
  color: var(--slate);
  font-size: 0.95rem;
}

.pricing-notes .fine {
  font-size: 0.85rem;
  color: var(--slate-light);
}

/* About */
.about-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 1.3fr 1fr;
    align-items: start;
  }
}

.about-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
}

.about-copy > p {
  color: var(--slate);
  font-size: 1.05rem;
}

.disclaimer-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.5rem;
  margin-top: 1.5rem;
}

.disclaimer-box h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.disclaimer-box p {
  color: var(--slate);
  font-size: 0.95rem;
}

.disclaimer-meta {
  margin-top: 1rem;
}

.disclaimer-meta li {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 0.4rem;
  padding-left: 0;
}

.about-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.04);
}

.info-card h3 {
  font-size: 1rem;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}

.info-card p {
  margin-bottom: 0.35rem;
}

.info-card .muted {
  color: var(--slate-light);
  font-size: 0.9rem;
  margin: 0;
}

.info-card.highlight {
  background: linear-gradient(135deg, var(--teal-soft), #dff4f5);
  border-color: rgba(45, 180, 185, 0.25);
}

/* CTA */
.cta-section {
  padding-top: 2rem;
  padding-bottom: 4.5rem;
}

.cta-panel {
  background: linear-gradient(135deg, var(--navy) 0%, #134055 55%, #1a5c62 100%);
  border-radius: calc(var(--radius) + 0.35rem);
  padding: 2.5rem 1.75rem;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(45, 180, 185, 0.2);
  filter: blur(40px);
  top: -100px;
  right: -60px;
  pointer-events: none;
}

.cta-copy,
.cta-actions,
.cta-hours {
  position: relative;
}

.cta-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cta-hours {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 700px) {
  .cta-panel {
    padding: 3.25rem 3rem;
  }
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 22rem;
}

.footer-disclaimer {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-lda a {
  color: var(--teal);
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .card {
    transition: none;
  }
}
