@keyframes glisten {
  0% {
    background-position: 100%0;
  }
  to {
    background-position: -100%0;
  }
}
@keyframes trustScroll {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#throughline-zone,
.hero {
  position: relative;
}
.hero {
  background: var(--slate);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 100px;
  overflow: hidden;
}
.hero-video,
.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  bottom: 0;
}
.hero-video {
  z-index: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    #000 0,
    #000 60%,
    transparent 100%
  );
  mask-image: linear-gradient(to right, #000 0, #000 60%, transparent 100%);
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero::before {
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(12, 35, 55, 0.5) 0,
    rgba(12, 35, 55, 0.3) 50%,
    rgba(12, 35, 55, 0.5) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  display: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 4;
}
.hero-inner,
.hero-left {
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-eyebrow .label,
.intro-scroll-text .word.accent-word.revealed {
  color: var(--accent);
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.hero-headline {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent-light);
}
.hero-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-proof {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 48px;
}
.hero-proof-number {
  font-family: "DM Serif Display", serif !important;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}
.hero-proof-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.hero-review-block {
  border-left: none !important;
  padding-left: 0 !important;
}
.hero-review-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-review-avatars {
  display: flex;
}
.hero-review-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-right: -10px;
}
.hero-review-avatars img:last-child {
  margin-right: 0;
}
.hero-stars-row {
  color: #f5c518;
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 1;
}
.hero-review-score {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.hero-right {
  position: relative;
  z-index: 1;
}
.hero-form-card {
  background: #fff;
  border: 0;
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}
.hero-form-title {
  font-family: "DM Serif Display", serif !important;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--slate);
  font-weight: 400;
  margin-bottom: 4px;
  text-align: center;
  line-height: 1.2;
  background: linear-gradient(
    90deg,
    var(--slate) 0%,
    var(--slate) 35%,
    #d4943a 43%,
    #f5c563 50%,
    #d4943a 57%,
    var(--slate) 65%,
    var(--slate) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glisten 3s ease-in-out infinite;
}
.hero-form-title em {
  color: var(--accent);
  font-style: italic;
}
.hero-form-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  text-align: center;
}
.trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(12, 35, 55, 0.6);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(152, 193, 217, 0.15);
  padding: 14px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: trustScroll 20s linear infinite;
}
.trust-bar-text {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 0 32px;
}
.trust-badge-item,
.trust-badges {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-shrink: 0;
}
.trust-badges img {
  height: 36px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.trust-badges img:hover {
  opacity: 0.8;
}
.stats-section {
  background: var(--slate);
  padding: 80px 48px;
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.stat-item {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.intro-scroll-text p,
.stat-number {
  font-family: "DM Serif Display", serif !important;
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--accent-light);
  line-height: 1;
}
.stat-label-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.intro-section {
  background: var(--surface);
  padding: 120px 48px;
  position: relative;
  border-radius: 24px 24px 0 0;
  margin-top: -24px;
  z-index: 2;
}
.intro-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.intro-left {
  position: sticky;
  top: 120px;
}
.intro-video-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}
.intro-video-wrap video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.intro-scroll-text {
  margin-bottom: 64px;
}
.intro-scroll-text p {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.4;
  color: var(--text);
  margin: 0;
}
.intro-scroll-text .word {
  display: inline;
  color: rgba(12, 35, 55, 0.15);
  transition: color 0.15s ease;
}
.how-header h2,
.intro-scroll-text .word.revealed {
  color: var(--text);
}
.intro-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.intro-stat {
  flex: 1 1 0;
  min-width: 0;
  padding: 24px 0;
  text-align: center;
  position: relative;
}
.intro-stat + .intro-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border);
}
.intro-stat-number {
  font-family: "DM Serif Display", serif !important;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 6px;
}
.intro-stat-label {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.how-header,
.how-section {
  position: relative;
  z-index: 3;
}
.how-section {
  background: #fff;
  padding-bottom: 10vh;
  padding-top: 100px;
  border-radius: 24px 24px 0 0;
  margin-top: -24px;
}
/* Steps two-column layout */
.how-section.section-pad {
  padding-left: 32px;
  padding-right: 32px;
}
.how-section .section-narrow {
  max-width: 1600px;
  padding: 0;
}
.how-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.how-header {
  position: sticky;
  top: 120px;
  text-align: left;
  margin-bottom: 0;
  padding-left: 48px;
}
.how-header .label {
  margin-bottom: 20px;
  display: block;
  color: var(--text-tertiary);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.how-header h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05;
  color: var(--text);
}
.how-header p {
  color: var(--text-secondary, #596B7D);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
  margin-top: 20px;
}
.how-cards {
  position: relative;
  padding-bottom: 40px;
}
.how-card {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 520px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 12px 48px rgba(12, 35, 55, 0.18),
    0 4px 16px rgba(12, 35, 55, 0.08);
  position: sticky;
  top: 80px;
  margin-bottom: 30px;
  transform-origin: center top;
  z-index: 1;
  border: 1px solid rgba(12, 35, 55, 0.06);
}
.how-card:nth-child(1) {
  z-index: 1;
  top: 80px;
}
.how-card:nth-child(2) {
  z-index: 2;
  top: 100px;
}
.how-card:nth-child(3) {
  z-index: 3;
  top: 120px;
}
.how-card:nth-child(4) {
  z-index: 4;
  top: 140px;
  margin-bottom: 0;
}
.how-card-left {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  position: relative;
  z-index: 2;
}
.how-card h3,
.how-card-num {
  font-family: "DM Serif Display", serif !important;
  font-weight: 400;
}
.how-card-num {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  color: rgba(12, 35, 55, 0.08);
  line-height: 1;
  margin-bottom: 12px;
}
.how-card h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}
.how-card p {
  font-size: 1.15rem;
  color: var(--text-tertiary);
  line-height: 1.75;
  max-width: 420px;
}
.how-card-cta {
  margin-top: 32px;
}
.how-card-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent, #c8a55a);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  letter-spacing: 0.02em;
}
.how-card-cta a:hover {
  background: var(--accent-hover, #b8953a);
  transform: translateY(-1px);
}
.how-card-cta a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.how-card-illustration,
.how-card-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.how-card-right {
  overflow: hidden;
}
.how-card .how-card-right {
  background: linear-gradient(135deg, #0c2337 0, #1a3a5c 50%, #0c2337 100%);
}
.how-card-illustration svg {
  opacity: 1 !important;
  filter: contrast(1.4) brightness(1.1);
}
.how-card-illustration {
  width: 85%;
  height: 85%;
}
.how-card-illustration svg {
  width: 80%;
  max-width: 320px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.12));
}
.how-card[data-step="4"] .how-card-illustration {
  width: 90%;
  height: 90%;
}
.how-card[data-step="4"] .how-card-illustration svg {
  width: 90%;
  max-width: 400px;
}
.verdicts-section {
  background: var(--slate);
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  margin-top: -24px;
  z-index: 5;
}
.verdicts-header {
  text-align: center;
  margin-bottom: 64px;
}
.verdicts-header .label {
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.verdicts-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  line-height: 1.15;
}
.verdicts-header p {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
  font-size: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.verdicts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.verdict-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
}
.verdict-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(152, 193, 217, 0.2);
  transform: translateY(-2px);
}
.verdict-amount {
  font-family: "DM Serif Display", serif !important;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 8px;
}
.verdict-type {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.verdict-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
.verdict-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  background: rgba(152, 193, 217, 0.1);
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--accent-light);
  letter-spacing: 0.02em;
}
.stacked-sections {
  position: relative;
}
.stacked-section {
  overflow: hidden;
}
.folder-tab-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.folder-tab-top {
  display: inline-block;
  width: 280px;
  box-sizing: border-box;
  text-align: center;
  padding: 18px 50px 16px 30px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  position: relative;
  background: 0 0;
  margin-left: 36px;
  z-index: 2;
}
.folder-tab-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px 0 0 0;
  clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 100%, 0 100%);
  z-index: -1;
}
.folder-tab-cta {
  padding: 10px 24px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  background: 0 0;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.folder-tab-cta:hover {
  background: var(--accent);
  color: var(--slate);
}
#folder-1 .folder-tab-top::before {
  background: #0c2337;
}
#folder-2 .folder-tab-top::before {
  background: #1a3a54;
}
#folder-3 .folder-tab-top::before {
  background: #2a5270;
}
.folder-body-area {
  position: relative;
  padding-bottom: 80px;
}
#folder-1 .folder-body-area {
  background: #0c2337;
  border-radius: 12px 12px 12px 12px;
}
#folder-2 .folder-body-area {
  background: #1a3a54;
  border-radius: 12px 12px 12px 12px;
}
#folder-3 .folder-body-area {
  background: #2a5270;
  border-radius: 12px 12px 12px 12px;
}
.stacked-section {
  margin-left: 24px;
  margin-right: 24px;
  position: relative;
  z-index: 2;
}
.stacked-section:nth-child(2) {
  margin-top: -120px;
  z-index: 3;
}
.stacked-section:nth-child(3) {
  margin-top: -120px;
  z-index: 4;
}
.folder-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.folder-cta .btn-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--slate);
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 0;
}
.folder-cta .btn-cta:hover {
  background: var(--accent-dark);
  color: #fff;
}
.stacked-section .attorney-name,
.stacked-section .attorneys-header-left h2,
.stacked-section .result-amount,
.stacked-section .results-header h2,
.stacked-section .reviews-header h2,
.stacked-section h2 {
  color: #fff !important;
}
.stacked-section .attorneys-header-left p,
.stacked-section .result-card p,
.stacked-section .results-disclaimer,
.stacked-section .results-header p,
.stacked-section .review-text,
.stacked-section .reviews-header p,
.stacked-section p {
  color: rgba(255, 255, 255, 0.65) !important;
}
.stacked-section .attorney-tag,
.stacked-section .label,
.stacked-section .result-type {
  color: var(--accent) !important;
}
.stacked-section .review-author {
  color: #fff !important;
}
.stacked-section .review-stars {
  color: #f5a623;
}
.stacked-section .btn-outline {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.stacked-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5) !important;
}
.stacked-section .result-card,
.stacked-section .review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.stacked-section .attorney-card {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.stacked-section .attorney-info {
  background: var(--accent-light);
  border-radius: 0 0 12px 12px;
}
.stacked-section .attorney-name {
  color: var(--slate) !important;
}
.stacked-section .attorney-role {
  color: var(--slate) !important;
  opacity: 0.7;
}
.stacked-section .attorney-tag {
  background: rgba(152, 193, 217, 0.12);
}
.stacked-section .attorneys-header-left p,
.stacked-section .results-header p,
.stacked-section .reviews-header p {
}
.results-header {
  text-align: center;
  margin-bottom: 48px;
}
.practice-header .label,
.results-header .label,
.reviews-header .label {
  color: var(--accent-dark);
  margin-bottom: 12px;
  display: block;
}
.attorneys-header-left h2,
.practice-header h2,
.results-header h2,
.reviews-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--text);
  line-height: 1.15;
}
.results-header p {
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
}
.result-amount {
  font-family: "DM Serif Display", serif !important;
  font-size: 2rem;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 8px;
}
.result-type {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 12px;
}
.result-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.results-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-tertiary);
  margin-top: 32px;
  font-style: italic;
}
.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}
.attorneys-header-left p,
.reviews-header p {
  color: var(--text-secondary);
  margin-top: 12px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
}
.review-stars {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.practice-card h3,
.review-text {
  font-size: 0.95rem;
  color: var(--text);
}
.review-text {
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.review-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate);
}
/* ── PRACTICE AREAS — minimal list ─── */
.pa-section {
  background: var(--surface, #F7F9FB);
  position: relative;
  z-index: 4;
}
.pa-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
/* Left — sticky header */
.pa-left {
  position: sticky;
  top: 120px;
}
.pa-left .label {
  color: var(--accent-dark, #6B9FB3);
  margin-bottom: 16px;
  display: block;
}
.pa-left h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--slate, #0C2337);
  line-height: 1.05;
  margin-bottom: 20px;
}
.pa-left p {
  color: var(--text-secondary, #596B7D);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}
/* Right — practice area list */
.pa-list {
  display: flex;
  flex-direction: column;
}
.pa-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--accent, #98C1D9);
  text-decoration: none;
  color: var(--slate, #0C2337);
  transition: padding-left 0.3s ease, color 0.3s ease;
}
.pa-item:first-child {
  border-top: 1px solid var(--accent, #98C1D9);
}
.pa-item:hover {
  padding-left: 12px;
  color: var(--accent-dark, #6B9FB3);
}
.pa-item-name {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  flex-shrink: 0;
}
.pa-item-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-tertiary, #8A96A3);
  line-height: 1.5;
  flex: 1;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.pa-item:hover .pa-item-desc {
  opacity: 1;
  transform: translateX(0);
}
.pa-item-arrow {
  width: 20px;
  height: 20px;
  stroke: var(--accent, #98C1D9);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.pa-item:hover .pa-item-arrow {
  opacity: 1;
  transform: translateX(0);
}
/* Responsive */
@media (max-width: 768px) {
  .pa-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pa-left {
    position: static;
    text-align: center;
  }
  .pa-left p { margin: 0 auto; }
  .pa-left h2 br { display: none; }
  .pa-item-desc { display: none; }
  .pa-item-arrow { opacity: 1; transform: none; margin-left: auto; }
  .pa-item-arrow line { display: none; }
  .pa-item-name { font-size: 1.1rem; }
}
.attorneys-section {
  background: 0 0;
}
.attorneys-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
}
.attorneys-header-left {
  max-width: 520px;
}
.attorneys-header-left .label {
  margin-bottom: 16px;
  display: block;
}
.attorneys-header-left h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}
.attorneys-header-left p {
  font-size: 0.95rem;
  margin-top: 16px;
  line-height: 1.65;
}
.attorneys-carousel-wrap {
  position: relative;
}
.attorneys-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.attorneys-grid::-webkit-scrollbar {
  display: none;
}
.attorneys-grid .attorney-card {
  flex: 0 0 calc((100% - 72px) / 4);
  scroll-snap-align: start;
}
.attorneys-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(12, 35, 55, 0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.attorneys-arrow:hover {
  background: var(--accent);
  color: var(--slate);
  border-color: var(--accent);
}
.attorneys-arrow-left {
  left: -22px;
}
.attorneys-arrow-right {
  right: -22px;
}
.attorney-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
}
.attorney-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}
.attorney-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.35s ease;
}
.attorney-card:hover .attorney-photo {
  filter: grayscale(0%);
}
.attorney-placeholder {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-light) 100%);
  color: var(--accent);
  font-family: "DM Serif Display", serif !important;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  filter: none;
}
.attorney-info {
  padding: 16px 20px 20px;
}
.attorney-name {
  font-family: "DM Serif Display", serif !important;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 4px;
}
.attorney-role {
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.attorney-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.attorney-tag {
  display: inline-block;
  background: rgba(152, 193, 217, 0.08);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  font-weight: 500;
}
.why-section {
  background: var(--slate);
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 32px 24px 0;
}
.why-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(152, 193, 217, 0.06) 0,
    transparent 60%
  );
  pointer-events: none;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-left .label {
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.why-left h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.cta-left h2 em,
.why-left h2 em {
  color: var(--accent-light);
  font-style: italic;
}
.why-left > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(152, 193, 217, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}
.why-feature h4 {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}
.why-feature p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}
.why-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(
    135deg,
    rgba(152, 193, 217, 0.06) 0,
    rgba(12, 35, 55, 0.15) 100%
  );
  border-radius: 16px;
  padding: 40px 36px;
  border: 1px solid rgba(152, 193, 217, 0.12);
}
.ca-serve-title {
  font-family: "DM Serif Display", serif !important;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}
.ca-serve-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #98c1d9;
  margin: 16px auto 0;
  border-radius: 2px;
}
.ca-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}
.ca-map-wrap {
  display: flex;
  justify-content: center;
}
.ca-outline {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(152, 193, 217, 0.15));
}
.ca-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
}
.why-section .ca-cities a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.8;
  text-decoration: none !important;
  transition: all 0.25s ease;
  padding: 3px 10px;
  border-radius: 6px;
  display: block;
  border-left: 2px solid transparent;
}
.why-section .ca-cities a:hover {
  color: #98c1d9 !important;
  background: rgba(152, 193, 217, 0.08);
  border-left-color: #98c1d9;
  text-decoration: none !important;
  padding-left: 14px;
}
.why-section .ca-cities a:last-child {
  color: #98c1d9 !important;
  font-style: italic;
  font-weight: 500;
}
.faq-section {
  background: var(--surface);
  border-radius: 24px 24px 0 0;
  margin-top: -24px;
  position: relative;
  z-index: 7;
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-left {
  position: sticky;
  top: 120px;
}
.faq-left .label {
  margin-bottom: 16px;
  display: block;
  color: var(--accent);
}
.faq-left h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--slate);
  line-height: 1.15;
  margin-bottom: 16px;
}
.faq-left p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-q-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1.5px solid #98c1d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: #98c1d9;
}
.faq-item:hover .faq-toggle {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}
.faq-item.open .faq-toggle {
  background: #98c1d9;
  border-color: #98c1d9;
  color: var(--slate);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    margin 0.3s ease,
    opacity 0.3s ease;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  opacity: 0;
}
.faq-item.open .faq-a {
  max-height: 240px;
  opacity: 1;
  margin-top: 16px;
}
.cta-section {
  background: var(--slate);
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  margin-top: -24px;
  z-index: 8;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 50%at 10% 90%,
      rgba(152, 193, 217, 0.1) 0,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40%at 90% 10%,
      rgba(74, 144, 217, 0.05) 0,
      transparent 70%
    );
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-left h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-left p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 440px;
}
.cta-form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 40px 36px;
}
.cta-form-title {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 24px;
}
.section-pad {
  padding: 120px 48px;
}
.section-narrow {
  max-width: 1280px;
  margin: 0 auto;
}
/* .reveal initial state is set by JS (homepage.js) after GSAP loads.
   This ensures content is visible even if JS fails to load. */
.reveal {
  opacity: 1;
  transform: none;
}
@media (max-width: 1024px) {
  .practice-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-grid,
  .verdicts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .attorneys-grid .attorney-card {
    flex: 0 0 calc((100% - 48px) / 3);
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .reveal {
    transform: none !important;
  }
  .accent-word,
  .reveal,
  .word {
    opacity: 1 !important;
  }
  .hero {
    padding: 120px 20px 80px;
    min-height: auto;
  }
  .hero-video {
    width: 100%;
    mask-image: none;
    -webkit-mask-image: none;
    opacity: 0.25;
  }
  .hero::before {
    width: 100%;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-left {
    text-align: center;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }
  .hero-proof {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero-review-block {
    flex-shrink: 1;
    min-width: 0;
  }
  .hero-proof-item {
    text-align: center;
  }
  .hero-proof-upfront,
  .practice-card .card-arrow,
  .practice-card .card-desc,
  .practice-card::after,
  .stat-item::after {
    display: none;
  }
  .hero-proof-number {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }
  .hero-proof-label {
    font-size: 0.65rem;
  }
  .hero-form-card {
    padding: 32px 24px;
  }
  .section-pad {
    padding: 80px 20px;
  }
  .trust-bar {
    padding: 14px 0;
  }
  .trust-bar-inner {
    flex-direction: row;
    gap: 0;
  }
  .trust-badges {
    gap: 24px;
  }
  .trust-badges img {
    height: 28px;
  }
  .intro-section {
    padding: 80px 20px;
    overflow: hidden;
  }
  .intro-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .intro-left {
    position: static;
  }
  .intro-video-wrap {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  .intro-video-wrap iframe,
  .intro-video-wrap video {
    aspect-ratio: 16/9;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .intro-stats {
    flex-direction: row;
    gap: 0;
  }
  .intro-stat {
    padding: 18px 0;
  }
  .intro-stat-number {
    font-size: 1.4rem !important;
  }
  .intro-stat-label {
    font-size: 0.6rem;
  }
  .intro-scroll-text p {
    font-size: 1.3rem !important;
    word-break: break-word;
  }
  .stats-section {
    padding: 48px 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .how-cards {
    max-width: 100%;
    margin: 0 auto;
  }
  .how-card {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    height: 420px;
    position: sticky;
    margin-bottom: 24px;
    will-change: auto;
  }
  .how-card:nth-child(1) { top: 52px; z-index: 1; }
  .how-card:nth-child(2) { top: 60px; z-index: 2; }
  .how-card:nth-child(3) { top: 68px; z-index: 3; }
  .how-card:nth-child(4) { top: 76px; z-index: 4; }
  .how-card-left {
    padding: 16px 20px;
    order: 2;
    text-align: center;
    align-items: center;
    transform-origin: center top;
  }
  .how-card-right {
    order: 1;
    min-height: 220px;
    overflow: hidden;
    padding: 12px 0;
    transform-origin: center top;
  }
  /* Fill illustrations to max size within the blue section */
  .how-card-illustration {
    width: 90%;
    height: 90%;
  }
  .how-card-illustration svg {
    width: 80% !important;
    max-width: none !important;
    height: auto !important;
    max-height: 100% !important;
    object-fit: contain;
  }
  /* Card 4 check is landscape — needs wider sizing */
  .how-card[data-step="4"] .how-card-illustration {
    width: 95%;
    height: 90%;
  }
  .how-card[data-step="4"] .how-card-illustration svg {
    width: 90% !important;
    max-width: none !important;
  }
  .how-card h3 {
    font-size: 2.2rem;
  }
  .how-card p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .how-card-num {
    font-size: 4rem;
    margin-bottom: 0;
  }
  .how-card-cta {
    display: none;
  }
  .how-section.section-pad {
    padding-left: 16px;
    padding-right: 16px;
  }
  .how-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .how-header {
    position: static;
    text-align: center;
    margin-bottom: 0;
    padding: 0 8px;
  }
  .how-header p { margin: 16px auto 0; max-width: 100%; }
  .how-header h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .how-header h2 br { display: none; }
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px !important;
  }
  .practice-card {
    padding: 24px 16px;
    border-radius: 16px !important;
    align-items: center;
    text-align: center;
    border: 1.5px solid #c8d9e6 !important;
    box-shadow: 0 3px 15px rgba(12, 35, 55, 0.08) !important;
    background: #e9f2f8 !important;
  }
  .practice-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }
  .practice-card-icon img,
  .practice-card-icon svg {
    width: 28px;
    height: 28px;
  }
  .attorneys-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .attorneys-grid .attorney-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  .attorneys-arrow {
    width: 36px;
    height: 36px;
  }
  .attorneys-arrow-left {
    left: -12px;
  }
  .attorneys-arrow-right {
    right: -12px;
  }
  .verdicts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .verdict-card {
    padding: 32px 24px;
  }
  .why-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }
  .why-right {
    padding: 32px 24px;
  }
  .ca-content {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .ca-map-wrap {
    justify-content: center;
  }
  .ca-outline {
    width: 160px;
  }
  .ca-cities {
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
  }
  .ca-serve-title {
    font-size: 1.6rem !important;
  }
  .why-section {
    margin: 60px 12px 0;
    overflow: hidden;
    border-radius: 16px !important;
  }
  .why-left h2 {
    font-size: 1.8rem !important;
  }
  .why-left > p {
    font-size: 0.85rem !important;
  }
  .results-grid,
  .reviews-grid {
    grid-template-columns: 1fr !important;
  }
  .folder-body-area,
  .stacked-sections {
    overflow: hidden;
  }
  .stacked-section {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .stacked-section:nth-child(2),
  .stacked-section:nth-child(3) {
    margin-top: -80px !important;
  }
  .folder-tab-top {
    margin-left: 16px;
    font-size: 0.75rem;
    width: auto;
    padding: 14px 36px 12px 20px;
  }
  .folder-tab-cta {
    font-size: 0.72rem;
    padding: 8px 16px;
  }
  .faq-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }
  .faq-left {
    position: static;
  }
  .cta-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }
  .cta-left {
    text-align: center;
  }
  .cta-left p {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-form-card {
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 60px;
  }
  .hero-headline {
    font-size: 2rem;
  }
  .hero-sub {
    font-size: 0.92rem;
  }
  .hero-proof {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }
  .hero-form-card {
    padding: 28px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .section-pad {
    padding: 60px 16px;
  }
  .attorneys-grid .attorney-card {
    flex: 0 0 85%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    padding: 24px 16px;
  }
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px !important;
  }
  .practice-card {
    padding: 16px 14px;
    border-radius: 14px !important;
    border: 1.5px solid #c8d9e6 !important;
    box-shadow: 0 3px 15px rgba(12, 35, 55, 0.08) !important;
    background: #e9f2f8 !important;
  }
  .practice-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 10px;
  }
  .practice-card-icon img,
  .practice-card-icon svg {
    width: 24px;
    height: 24px;
  }
  .practice-card h3 {
    font-size: 0.78rem;
  }
  .practice-card .card-arrow,
  .practice-card .card-desc {
    display: none;
  }
  .intro-scroll-text p {
    font-size: 1.15rem !important;
  }
  .how-card {
    height: 380px;
  }
  .how-card-left {
    padding: 14px 16px;
  }
  .how-card-right {
    min-height: 190px;
  }
  .how-card-illustration svg {
    width: 75% !important;
    max-width: none !important;
  }
  .how-card[data-step="4"] .how-card-illustration svg {
    width: 85% !important;
    max-width: none !important;
  }
  .how-card-num {
    font-size: 3.5rem;
  }
  .how-card h3 {
    font-size: 1.8rem;
  }
  .how-card p {
    font-size: 1.15rem;
    line-height: 1.5;
  }
  .stacked-section {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .folder-tab-top {
    margin-left: 8px;
    font-size: 0.68rem;
    padding: 12px 28px 10px 16px;
  }
  .folder-tab-cta {
    font-size: 0.65rem;
    padding: 6px 12px;
  }
  .results-header h2,
  .reviews-header h2,
  .verdicts-header h2 {
    font-size: 1.6rem;
  }
  .cta-left h2 {
    font-size: 1.8rem;
  }
  .cta-form-card {
    padding: 24px 16px;
  }
  .why-section {
    margin: 40px 8px 0;
  }
  .ca-cities {
    grid-template-columns: 1fr 1fr;
    gap: 2px 16px;
  }
  .why-right {
    padding: 24px 16px;
  }
  .why-section .ca-cities a {
    font-size: 0.8rem;
    padding: 2px 8px;
  }
  .faq-q {
    font-size: 0.92rem;
  }
}
.urgency-cta-section {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  margin-bottom: 32px;
}
.urgency-cta-panel {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 20px;
  align-items: start;
}
.urgency-cta-left {
  background: var(--slate, #0c2337);
  border-radius: 24px;
  padding: 40px 48px 40px 52px;
}
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent, #98c1d9);
  margin-bottom: 16px;
}
.urgency-badge svg {
  stroke: var(--accent, #98c1d9);
}
.urgency-cta-left h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  line-height: 1.2;
  margin: 0 0 28px;
  font-weight: 400;
}
.urgency-cta-left p {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin: 0 0 16px;
  max-width: 600px;
}
.urgency-cta-left p:last-of-type:not(.urgency-disclaimer) {
  margin-bottom: 24px;
}
.urgency-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
  margin-bottom: 0;
}
.urgency-cta-divider {
  display: none;
}
.urgency-cta-arrow {
  position: absolute;
  left: calc(70% - 2px);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent, #98C1D9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.urgency-cta-panel {
  position: relative;
}
.urgency-cta-right {
  background: #1a3a54;
  border-radius: 24px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: visible;
}
.calc-promo-title {
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.calc-promo-title:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(152,193,217,0.2);
}
.calc-promo-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #0C2337 0%, #98C1D9 50%, #0C2337 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: calc-glisten 4s ease-in-out infinite;
  margin-bottom: 6px;
}
.calc-promo-name {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.2;
  background: linear-gradient(135deg, #0C2337 0%, #98C1D9 40%, #0C2337 60%, #98C1D9 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: calc-glisten 4s ease-in-out infinite;
}
@keyframes calc-glisten {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Calculator device tile */
.calc-device {
  text-decoration: none;
  cursor: pointer;
}
.calc-device:hover {
  transform: translateY(-3px);
  border-color: rgba(152,193,217,0.35);
}
.calc-display {
  background: var(--slate, #0C2337);
  border-radius: 14px;
  padding: 24px 20px;
  margin-bottom: 20px;
  text-align: right;
}
.calc-display-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent, #98C1D9);
  margin-bottom: 8px;
}
.calc-display-value {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}
.calc-keys {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.calc-key {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: 10px;
  background: rgba(12,35,55,0.3);
  border: 1px solid rgba(152,193,217,0.08);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-align: center;
}
.calc-key svg {
  stroke: var(--accent, #98C1D9);
}
.calc-equals-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--accent, #98C1D9);
  color: var(--slate, #0C2337);
  padding: 16px 24px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.2s;
}
.calc-device:hover .calc-equals-btn {
  background: #b8d6e8;
}
.urgency-calc-illustration {
  position: absolute;
  right: -10px;
  bottom: -15px;
  width: 140px;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
}
.urgency-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent, #98c1d9);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.urgency-cta-right h3 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 400;
}
.urgency-cta-right > p {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 24px;
}
.urgency-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
}
.urgency-stat-item {
  display: flex;
  flex-direction: column;
}
.urgency-stat-num {
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.urgency-stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}
.urgency-bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.urgency-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.urgency-bullet-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(152,193,217,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.urgency-bullet-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.urgency-bullet-text span {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.urgency-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent, #98c1d9);
  color: var(--slate, #0c2337);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  white-space: nowrap;
  align-self: flex-start;
}
.urgency-cta-btn:hover {
  background: #b8d6e8;
  transform: translateY(-2px);
}
.urgency-cta-fine {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
  margin-top: 12px;
  max-width: 300px;
}
@media (max-width: 900px) {
  .urgency-cta-section {
    padding: 0 24px;
  }
  .urgency-cta-panel {
    grid-template-columns: 1fr;
  }
  .urgency-cta-arrow {
    position: relative;
    transform: none;
    margin: -24px auto;
    z-index: 5;
  }
  .urgency-cta-arrow svg {
    transform: rotate(90deg);
  }
  .urgency-cta-left {
    padding: 40px 40px 32px;
  }
  .urgency-cta-right {
    padding: 32px 40px 40px;
  }
}
@media (max-width: 600px) {
  .urgency-cta-section {
    padding: 0 16px;
  }
  .urgency-cta-left {
    padding: 32px 24px 24px;
  }
  .urgency-cta-right {
    padding: 24px 24px 32px;
  }
  .urgency-cta-divider {
    margin: 0 24px;
  }
}
