:root {
  --rad-soft: #F2F5FE;
  --rad-white: #FFFFFF;
  --rad-primary: #0E53BE;
  --rad-primary-2: #2A6ED8;
  --rad-navy: #142149;
  --rad-line: #DCE4F5;
  --rad-muted: #5A6785;
}

* {
  box-sizing: border-box;
}

body.rad {
  margin: 0;
  background: var(--rad-white);
  color: var(--rad-navy);
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.rad a {
  text-decoration: none;
  color: inherit;
}

.rad-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.rad-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  letter-spacing: -.005em;
}

.rad-btn-sm {
  padding: .65rem 1.1rem;
  font-size: .85rem;
}

.rad-btn-primary {
  background: var(--rad-primary);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(14, 83, 190, .28);
}

.rad-btn-primary:hover {
  background: var(--rad-primary-2);
  transform: translateY(-1px);
  color: #fff !important;
}

.rad-btn-navy {
  background: var(--rad-navy);
  color: #fff !important;
}

.rad-btn-navy:hover {
  background: #1c2c5e;
  color: #fff !important;
}

.rad-btn-ghost {
  background: transparent;
  color: var(--rad-navy);
  border-color: var(--rad-line);
}

.rad-btn-ghost:hover {
  border-color: var(--rad-primary);
  color: var(--rad-primary);
}

.rad-btn-block {
  width: 100%;
}

/* Nav */
.rad-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rad-line);
}

.rad-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rad-brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  color: var(--rad-navy);
  font-size: 1.05rem;
}

.rad-brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--rad-primary);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
}

.rad-nav-links {
  display: flex;
  gap: 2rem;
}

.rad-nav-links a {
  color: var(--rad-navy);
  font-weight: 500;
  font-size: .92rem;
  opacity: .8;
}

.rad-nav-links a:hover {
  color: var(--rad-primary);
  opacity: 1;
}

@media (max-width: 768px) {
  .rad-nav-links {
    display: none;
  }
}

/* Hero */
.rad-hero {
  background: linear-gradient(180deg, var(--rad-soft) 0%, #fff 100%);
  padding: 5rem 0 6rem;
}

.rad-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 900px) {
  .rad-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.rad-badge {
  display: inline-block;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: rgba(14, 83, 190, .08);
  color: var(--rad-primary);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.rad-h1 {
  font-size: 2.5rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.025em;
  margin: 1.2rem 0 1.2rem;
  color: var(--rad-navy);
}

.rad-h1-accent {
  color: var(--rad-primary);
}

.rad-lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--rad-muted);
  max-width: 520px;
  margin: 0 0 2rem;
}

.rad-hero-ctas {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* Hero video container */
.rad-hero-mock {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rad-video-container {
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rad-video-container video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.rad-section {
  padding: 6rem 0;
}

.rad-section-white {
  background: #fff;
}

.rad-section-soft {
  background: var(--rad-soft);
}

.rad-section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.rad-h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--rad-navy);
  letter-spacing: -.02em;
  margin: 0 0 1rem;
}

.rad-h2-underline {
  width: 80px;
  height: 3px;
  background: var(--rad-primary);
  border-radius: 2px;
  margin: 0 auto;
}

.rad-h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rad-navy);
  margin: .5rem 0 1rem;
  letter-spacing: -.015em;
}

.rad-p {
  color: var(--rad-muted);
  line-height: 1.65;
  font-size: 1rem;
  margin: 0 0 1.5rem;
}

.rad-p-center {
  text-align: center;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Features */
.rad-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .rad-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .rad-feat-grid {
    grid-template-columns: 1fr;
  }
}

.rad-feat-card {
  background: #fff;
  border: 1px solid var(--rad-line);
  border-radius: 14px;
  padding: 1.75rem 1.4rem;
  transition: all .2s ease;
}

.rad-feat-card:hover {
  border-color: var(--rad-primary);
  box-shadow: 0 10px 30px -12px rgba(14, 83, 190, .2);
  transform: translateY(-2px);
}

.rad-feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #F2F5FE;
  color: var(--rad-primary);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.rad-feat-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--rad-navy);
  margin: 0 0 .5rem;
}

.rad-feat-desc {
  color: var(--rad-muted);
  font-size: .9rem;
  line-height: 1.55;
  margin: 0;
}

.rad-feat-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Workflow */
.rad-flow {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.rad-flow-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .rad-flow-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.rad-flow-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--rad-primary);
  letter-spacing: -.03em;
  line-height: 1;
  opacity: .9;
}

.rad-flow-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.rad-flow-stats strong {
  display: block;
  font-size: 1.6rem;
  color: var(--rad-primary);
  font-weight: 800;
}

.rad-flow-stats span {
  font-size: .8rem;
  color: var(--rad-muted);
}

.rad-flow-cta {
  text-align: center;
  margin-top: 2rem;
}

.rad-flow-mock {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(20, 33, 73, 0.08);
  position: relative;
  padding-top: 30px; /* Space for browser top bar */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rad-flow-mock:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(20, 33, 73, 0.12);
}

/* Browser top bar */
.rad-flow-mock::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  display: block;
}

/* Browser window dot controls (Red, Yellow, Green) */
.rad-flow-mock::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f56;
  box-shadow: 14px 0 0 #ffbd2e, 28px 0 0 #27c93f;
  z-index: 2;
}

.rad-flow-mock img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 0 11px 11px;
}

.rad-tmpl-card .rad-tmpl-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  border-radius: 8px;
  color: var(--rad-navy);
  font-size: .92rem;
  font-weight: 500;
}

.rad-tmpl-row span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rad-line);
}

.rad-tmpl-active {
  background: rgba(14, 83, 190, .08);
  color: var(--rad-primary);
  font-weight: 600;
}

.rad-tmpl-active span {
  background: var(--rad-primary);
  box-shadow: 0 0 0 4px rgba(14, 83, 190, .15);
}

.rad-mic-card {
  text-align: center;
  padding: 1rem 0;
}

.rad-mic-btn {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--rad-primary), var(--rad-primary-2));
  color: #fff;
  font-size: 1.8rem;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(14, 83, 190, .35);
}

.rad-mic-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 36px;
  margin-bottom: 1rem;
}

.rad-mic-wave i {
  width: 3px;
  background: var(--rad-primary);
  border-radius: 2px;
  animation: radWave 1.1s ease-in-out infinite;
}

.rad-mic-wave i:nth-child(1) {
  height: 30%;
}

.rad-mic-wave i:nth-child(2) {
  height: 60%;
  animation-delay: .1s;
}

.rad-mic-wave i:nth-child(3) {
  height: 90%;
  animation-delay: .2s;
}

.rad-mic-wave i:nth-child(4) {
  height: 70%;
  animation-delay: .3s;
}

.rad-mic-wave i:nth-child(5) {
  height: 100%;
  animation-delay: .4s;
}

.rad-mic-wave i:nth-child(6) {
  height: 55%;
  animation-delay: .5s;
}

.rad-mic-wave i:nth-child(7) {
  height: 80%;
  animation-delay: .6s;
}

.rad-mic-wave i:nth-child(8) {
  height: 40%;
  animation-delay: .7s;
}

@keyframes radWave {

  0%,
  100% {
    transform: scaleY(.4);
  }

  50% {
    transform: scaleY(1);
  }
}

.rad-mic-quote {
  color: var(--rad-muted);
  font-size: .9rem;
  line-height: 1.55;
  margin: 0;
  padding: 0 1rem;
}

.rad-export-doc {
  background: var(--rad-soft);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.rad-doc-line {
  height: 10px;
  background: #fff;
  border-radius: 3px;
  margin-bottom: .55rem;
  border: 1px solid var(--rad-line);
}

.rad-doc-line-lg {
  height: 14px;
  width: 70%;
  background: var(--rad-primary);
  border-color: var(--rad-primary);
}

.rad-doc-line-sm {
  width: 40%;
}

/* Stats banner */
.rad-stats-banner {
  background: var(--rad-navy);
  border-radius: 20px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  color: #fff;
  box-shadow: 0 30px 60px -25px rgba(20, 33, 73, .5);
}

@media (max-width: 800px) {
  .rad-stats-banner {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

@media (max-width: 560px) {
  .rad-stats-banner {
    padding: 1.25rem;
    border-radius: 12px;
  }
}

.rad-stats-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  letter-spacing: -.015em;
}

.rad-stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
}

.rad-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .rad-stats-grid {
    grid-template-columns: 1fr;
  }
}

.rad-stat {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 1.5rem;
}

.rad-stat strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
}

.rad-stat span {
  display: block;
  margin-top: .5rem;
  color: rgba(255, 255, 255, .65);
  font-size: .82rem;
}

/* Testimonials */
.rad-tst-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .rad-tst-grid {
    grid-template-columns: 1fr;
  }
}

.rad-tst-card {
  background: #fff;
  border: 1px solid var(--rad-line);
  border-radius: 14px;
  padding: 2rem;
}

.rad-tst-stars {
  color: var(--rad-primary);
  font-size: 1.05rem;
  letter-spacing: .15em;
  margin-bottom: 1rem;
}

.rad-tst-quote {
  color: var(--rad-navy);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.rad-tst-person {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.rad-tst-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rad-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .85rem;
}

.rad-tst-person strong {
  display: block;
  color: var(--rad-navy);
  font-size: .95rem;
}

.rad-tst-person span {
  color: var(--rad-muted);
  font-size: .82rem;
}

/* Pricing */
.rad-price-head {
  text-align: center;
  margin-bottom: 3rem;
}

.rad-price-wrap {
  display: flex;
  justify-content: center;
}

.rad-price-card {
  width: 100%;
  max-width: 420px;
  background: var(--rad-navy);
  border-radius: 18px;
  padding: 2.5rem;
  color: #fff;
  box-shadow: 0 30px 60px -25px rgba(14, 83, 190, .4);
  border: 1px solid rgba(14, 83, 190, .4);
}

.rad-price-kicker {
  color: rgba(255, 255, 255, .65);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.rad-price-value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width: 480px) {
  .rad-price-card {
    padding: 1.5rem;
  }
}

.rad-price-amt {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -.025em;
}

.rad-price-per {
  color: rgba(255, 255, 255, .6);
  font-size: .88rem;
}

.rad-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  color: rgba(255, 255, 255, .85);
  font-size: .93rem;
}

/* Lead */
.rad-lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .rad-lead-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.rad-lead-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  color: var(--rad-muted);
  font-size: .95rem;
}

.rad-lead-form {
  background: #fff;
  border: 1px solid var(--rad-line);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 40px -20px rgba(20, 33, 73, .15);
}

.rad-lead-form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  color: var(--rad-navy);
  font-size: .85rem;
  font-weight: 600;
}

.rad-lead-form input,
.rad-lead-form select {
  padding: .8rem .95rem;
  border: 1px solid var(--rad-line);
  border-radius: 9px;
  font-size: .95rem;
  color: var(--rad-navy);
  background: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color .15s;
}

.rad-lead-form input:focus,
.rad-lead-form select:focus {
  border-color: var(--rad-primary);
  box-shadow: 0 0 0 3px rgba(14, 83, 190, .12);
}

/* Footer */
.rad-footer {
  background: #fff;
  border-top: 1px solid var(--rad-line);
  padding: 2rem 0;
}

.rad-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.rad-footer-copy {
  color: var(--rad-muted);
  font-size: .85rem;
}

.rad-footer-links {
  display: flex;
  gap: 1.5rem;
}

.rad-footer-links a {
  color: var(--rad-muted);
  font-size: .85rem;
}

.rad-footer-links a:hover {
  color: var(--rad-primary);
}

/* Custom Lead Form styles matching user design */
.new-lead-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f2f5;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
  max-width: 650px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

@media (max-width: 576px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #142149;
}

.form-group input,
.form-group textarea {
  background: #f4f6fc !important;
  border: 1px solid transparent !important;
  border-radius: 6px !important;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem !important;
  font-family: 'Inter', sans-serif !important;
  color: #142149 !important;
  outline: none;
  transition: all 0.2s;
}

#phone {
  padding-left: 52px !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8c98b2 !important;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0E53BE !important;
  background: #ffffff !important;
}

.form-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}

.submit-btn {
  background: #0b51c5;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.submit-btn:hover {
  background: #09409c;
}

.submit-btn:active {
  transform: scale(0.98);
}

/* intl-tel-input customization */
.iti {
  width: 100%;
}

.iti__country-list {
  color: #142149;
  max-width: 300px;
  white-space: normal;
  overflow-x: hidden;
}

/* Hero Video Trigger & Overlay */
.rad-video-trigger {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid #dce4f5;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

.rad-video-trigger video {
  width: 100%;
  height: auto;
  display: block;
}

.rad-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.rad-video-trigger:hover .rad-video-overlay {
  background: rgba(0, 0, 0, 0.1);
}

.rad-play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 2px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.rad-play-btn svg {
  width: 28px;
  height: 28px;
  fill: #ffffff !important;
  margin-left: 4px;
  /* visually center play icon */
  transition: all 0.3s ease;
}

.rad-video-trigger:hover .rad-play-btn {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.8);
  border-color: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.rad-video-trigger:hover .rad-play-btn svg {
  fill: #ffffff !important;
}

/* Custom Modal Styles */
.rad-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rad-modal.active {
  display: flex;
  opacity: 1;
}

.rad-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

.rad-modal-content {
  position: relative;
  width: 95%;
  max-width: 1050px;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1001;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.rad-modal.active .rad-modal-content {
  transform: scale(1);
}

.rad-modal-close {
  display: none;
}

.rad-modal-body {
  position: relative;
  width: 100%;
}

.rad-modal-body video {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  border-radius: 12px;
}

/* Submit Button Loading & Success States */
.submit-btn.success {
  background: #2ec4b6 !important;
  /* Premium Mint Green */
  color: #ffffff !important;
  cursor: default;
  box-shadow: 0 4px 12px rgba(46, 196, 182, 0.2);
}

.submit-btn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}