/* ========================================
   LANDING PAGE STYLES
   Group Benefits Vancouver
======================================== */

/* ========================================
   SHARED SECTION HEADING SYSTEM
======================================== */

.section-heading {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading.center,
.section-heading.centered {
  text-align: center;
}

.section-label,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: #31579b;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label .line,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: #31579b;
  flex-shrink: 0;
}

.section-heading.center .section-label,
.section-heading.centered .section-kicker,
.section-heading.center .section-kicker,
.section-heading.centered .section-label {
  justify-content: center;
}

.section-heading h2 {
  margin: 0;
  color: #171b2f;
  font-size: clamp(3rem, 3.8vw, 4.25rem);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.section-heading h2 span {
  color: #31579b;
  font-style: italic;
  font-weight: 400;
}

.section-heading h2 span:not(.inline-accent) {
  display: block;
  margin-top: 6px;
}

.section-heading h2 .inline-accent {
  display: inline;
  margin-left: 0.12em;
}

.section-heading p {
  max-width: 840px;
  margin: 20px auto 0;
  color: #748299;
  font-size: 1.12rem;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .section-heading h2 .inline-accent {
    display: inline;
  }
}

/* ========================================
   HERO
======================================== */

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  background: #050b18;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.4s ease,
    transform 7s ease;
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg-one {
  background-image: url("/images/hero1.png");
  background-position: center 18%;
}

.hero-bg-two {
  background-image: url("/images/hero2.png");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 11, 24, 0.96) 0%,
      rgba(5, 11, 24, 0.3) 28%,
      rgba(5, 11, 24, 0.28) 70%,
      rgba(5, 11, 24, 0.96) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 11, 24, 0.45) 0%,
      rgba(5, 11, 24, 0.68) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 90%);
  text-align: center;
  padding: 56px 0;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #2f5597;
  font-weight: 800;
  letter-spacing: 0;
}

.stars {
  color: #d9b44a;
  letter-spacing: 0.12em;
}

.hero-location {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 5.1vw, 5.8rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 span {
  display: block;
  margin: 10px 0;
  color: rgba(224, 232, 245, 0.82);
  font-style: italic;
  font-weight: 400;
}

.hero-copy {
  max-width: 720px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 290px;
  min-height: 56px;
  padding: 0 34px;
  border: 2px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

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

.hero-btn-primary {
  background: #2f5597;
  color: #fff;
}

.hero-btn-primary:hover {
  background: #3a63aa;
}

.hero-btn-secondary {
  background: #fff;
  color: #2f5597;
}

.hero-btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.9);
}

.hero-stat {
  position: absolute;
  right: 4.5%;
  z-index: 2;
  width: 240px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.95);
  color: #2f405f;
  border-radius: 2px;
}

.hero-stat-top {
  top: 13%;
}

.hero-stat-bottom {
  bottom: 18%;
}

.hero-stat p {
  margin: 0 0 14px;
  color: #748299;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-stat strong {
  display: block;
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 700;
}

.hero-stat span {
  display: block;
  margin-top: 4px;
  color: #748299;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    display: block;
    padding: 0;
  }

  .hero-bg {
    top: 160px;
    bottom: auto;
    height: 430px;
    background-size: cover;
    background-position: center top;
  }

  .hero-bg-one {
    background-position: center top;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      #050b18 0%,
      rgba(5, 11, 24, 0.92) 24%,
      rgba(5, 11, 24, 0.45) 48%,
      #050b18 78%,
      #050b18 100%
    );
  }

  .hero-content {
    width: min(100% - 40px, 560px);
    padding: 34px 0 60px;
    margin: 0 auto;
  }

  .hero-rating {
    margin-bottom: 28px;
    font-size: 0.9rem;
    gap: 8px;
  }

  .hero-location {
    max-width: 420px;
    margin: 0 auto 56px;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 11vw, 5rem);
    line-height: 0.98;
  }

  .hero h1 span {
    margin: 4px 0;
  }

  .hero-copy {
    max-width: 500px;
    margin-top: 34px;
    font-size: 1.35rem;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 42px;
  }

  .hero-btn {
    width: min(100%, 360px);
    min-width: 0;
    min-height: 72px;
    font-size: 1rem;
  }

  .hero-stat {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero-bg {
    top: 160px;
    height: 410px;
  }

  .hero-content {
    width: min(100% - 32px, 460px);
    padding-top: 30px;
  }

  .hero-rating {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-location {
    margin-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 4.2rem);
  }

  .hero-copy {
    font-size: 1.18rem;
  }

  .hero-btn {
    width: min(100%, 340px);
    min-height: 66px;
  }
}

/* ========================================
   ADVISOR SECTION
======================================== */

.advisor-section {
  padding: 82px 0;
  background: #f8f8f7;
}

.advisor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 84px;
  align-items: center;
}

.advisor-content {
  max-width: 720px;
}

.advisor-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 20px;
  background: #c8a748;
  color: #111827;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.advisor-subtitle {
  margin: 26px 0 0;
  color: #66758f;
  font-size: 1.2rem;
  font-weight: 500;
}

.advisor-content h2 {
  margin: 34px 0 0;
  color: #171b2f;
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.advisor-content h2 span {
  display: block;
  margin-top: 10px;
  color: #3f5fa7;
  font-style: italic;
  font-weight: 400;
}

.advisor-copy {
  max-width: 700px;
  margin: 24px 0 0;
  color: #748299;
  font-size: 1.16rem;
  line-height: 1.7;
}

.advisor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.advisor-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #c9d4e4;
  color: #45609a;
  background: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advisor-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 56px;
  margin-top: 36px;
  padding: 0 34px;
  background: #31579b;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.advisor-cta:hover {
  transform: translateY(-2px);
  background: #3d67b3;
}

.advisor-image-wrap {
  position: relative;
}

.advisor-image-card {
  position: relative;
  background: #fff;
  padding: 24px;
  box-shadow: 0 30px 60px rgba(16, 34, 64, 0.08);
}

.advisor-image-card img {
  width: 100%;
  display: block;
}

.advisor-bottom-card {
  width: 100%;
  padding: 22px 28px;
  background: #1f3f7c;
  color: #fff;
  box-shadow: 0 18px 38px rgba(16, 34, 64, 0.14);
}

.advisor-bottom-card strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
}

.advisor-bottom-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .advisor-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .advisor-image-wrap {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .advisor-section {
    padding: 90px 0;
  }

  .advisor-content h2 {
    font-size: clamp(3rem, 11vw, 4.4rem);
  }

  .advisor-copy {
    font-size: 1.18rem;
    line-height: 1.7;
  }

  .advisor-tags {
    gap: 10px;
  }

  .advisor-tags span {
    font-size: 0.82rem;
  }

  .advisor-cta {
    width: 100%;
    min-width: 0;
  }
}

/* ========================================
   STATS BANNER
======================================== */

.stats-banner {
  background: #1f3f7c;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item strong {
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
}

.stat-item span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item {
    min-height: 140px;
  }
}

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-item strong {
    font-size: 2.5rem;
  }
}

/* ========================================
   QUOTE SECTION
======================================== */

.quote-section {
  padding: 76px 0;
  background: #f3f6fa;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 72px;
  align-items: start;
}

.quote-left h2 {
  margin: 0;
  color: #171b2f;
  font-size: clamp(3rem, 4vw, 4.4rem);
  line-height: 0.98;
  font-weight: 500;
}

.quote-left h2 span {
  display: block;
  margin-top: 8px;
  color: #31579b;
  font-style: italic;
  font-weight: 400;
}

.quote-intro {
  max-width: 650px;
  margin: 24px 0 34px;
  color: #748299;
  font-size: 1.15rem;
  line-height: 1.7;
}

.quote-form,
.why-card {
  background: #fff;
  box-shadow: 0 24px 60px rgba(16, 34, 64, 0.06);
}

.quote-form {
  padding: 36px;
}

.quote-form h3,
.why-card h3 {
  margin: 0 0 26px;
  color: #171b2f;
  font-size: 1.45rem;
  font-weight: 500;
}

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

.quote-form label {
  display: block;
  margin-bottom: 14px;
  color: #66758f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select {
  width: 100%;
  height: 48px;
  margin-top: 7px;
  padding: 0 16px;
  border: 1px solid #d8e0eb;
  background: #f6f8fb;
  color: #17202a;
  font: inherit;
  font-size: 1rem;
}

.quote-form input:focus,
.quote-form select:focus {
  outline: none;
  border-color: #31579b;
  background: #fff;
}

.quote-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 10px;
  border: 0;
  background: #31579b;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.quote-submit:hover {
  transform: translateY(-2px);
  background: #3d67b3;
}

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #050b18;
  box-shadow: 0 24px 60px rgba(16, 34, 64, 0.09);
  overflow: hidden;
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.why-card {
  margin-top: 28px;
  padding: 36px;
}

.why-card p {
  margin: 0 0 22px;
  color: #748299;
  font-size: 1.08rem;
  line-height: 1.65;
}

.why-card ul {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.why-card li {
  position: relative;
  margin-top: 16px;
  padding-left: 28px;
  color: #2f405f;
  font-size: 1rem;
  line-height: 1.5;
}

.why-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #31579b;
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-alert {
  margin: 0 0 22px;
  padding: 14px 16px;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 700;
}

.form-alert-success {
  background: #edf7ef;
  color: #1f6b35;
  border: 1px solid #b8dfc0;
}

.form-alert-error {
  background: #fff1f1;
  color: #9f1d1d;
  border: 1px solid #efb3b3;
}

@media (max-width: 1100px) {
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .quote-right {
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .quote-section {
    padding: 70px 0;
  }

  .quote-left h2 {
    font-size: clamp(2.9rem, 11vw, 4rem);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-form,
  .why-card {
    padding: 28px 22px;
  }

  .quote-submit {
    min-height: 62px;
  }
}

/* ========================================
   WHO SECTION
======================================== */

.who-section {
  padding: 78px 0;
  background: #fff;
}

.who-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 86px;
  align-items: center;
}

.who-content {
  max-width: 650px;
}

.who-content h2 {
  margin: 0;
  color: #171b2f;
  font-size: clamp(3rem, 3.8vw, 4.25rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.who-content h2 span {
  display: block;
  margin-top: 6px;
  color: #31579b;
  font-style: italic;
  font-weight: 400;
}

.who-content p {
  margin: 28px 0 0;
  color: #748299;
  font-size: 1.12rem;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 34px;
  padding-bottom: 4px;
  border-bottom: 1px solid #31579b;
  color: #31579b;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.text-link:hover {
  color: #1f3f7c;
  border-color: #1f3f7c;
}

.who-image-wrap {
  position: relative;
  box-shadow: 0 24px 70px rgba(16, 34, 64, 0.08);
}

.who-image-wrap img {
  width: 100%;
  display: block;
}

.who-stat-card {
  position: absolute;
  left: -32px;
  bottom: -32px;
  width: 150px;
  padding: 28px 24px;
  background: #1f3f7c;
  color: #fff;
  box-shadow: 0 18px 38px rgba(16, 34, 64, 0.12);
}

.who-stat-card strong {
  display: block;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 700;
}

.who-stat-card span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .who-content {
    max-width: 760px;
  }

  .who-image-wrap {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .who-section {
    padding: 70px 0;
  }

  .who-content h2 {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  .who-content p {
    font-size: 1.08rem;
  }

  .who-stat-card {
    left: 18px;
    bottom: 18px;
    width: 138px;
    padding: 22px 20px;
  }

  .who-stat-card strong {
    font-size: 2rem;
  }
}

/* ========================================
   COVERAGE SECTION
======================================== */

.coverage-section {
  padding: 82px 0;
  background: #f3f6fa;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 34, 64, 0.05);
}

.coverage-card {
  position: relative;
  min-height: 320px;
  padding: 48px 34px;
  background: #fff;
  border-right: 1px solid #e7edf5;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    z-index 0.22s ease;
}

.coverage-card:last-child {
  border-right: none;
}

.coverage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #31579b;
  transition: width 0.28s ease;
}

.coverage-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(16, 34, 64, 0.12);
}

.coverage-card:hover::before {
  width: 100%;
}

.coverage-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #31579b;
  border-radius: 50%;
  color: #31579b;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 700;
}

.coverage-card h3 {
  margin: 0 0 18px;
  color: #171b2f;
  font-size: 1.45rem;
  font-weight: 500;
}

.coverage-card p {
  margin: 0;
  color: #748299;
  font-size: 1.05rem;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage-card:nth-child(2) {
    border-right: none;
  }

  .coverage-card:nth-child(1),
  .coverage-card:nth-child(2) {
    border-bottom: 1px solid #e7edf5;
  }
}

@media (max-width: 640px) {
  .coverage-section {
    padding: 70px 0;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .coverage-card {
    min-height: auto;
    padding: 38px 28px;
    border-right: none;
    border-bottom: 1px solid #e7edf5;
  }

  .coverage-card:last-child {
    border-bottom: none;
  }
}

/* ========================================
   CTA BAND
======================================== */

.cta-band {
  padding: 58px 0;
  background: #31579b;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-band-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
}

.cta-band-content p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.cta-band-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-band-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 255px;
  min-height: 62px;
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.cta-band-btn:hover {
  transform: translateY(-2px);
}

.cta-band-btn-primary {
  background: #fff;
  color: #31579b;
  border-color: #fff;
}

.cta-band-btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.cta-band-btn-secondary {
  background: transparent;
  color: #fff;
}

.cta-band-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 980px) {
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cta-band {
    padding: 52px 0;
  }

  .cta-band-content h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .cta-band-content p {
    font-size: 1rem;
  }
}

/* ========================================
   WHY ASCENT SECTION
======================================== */

.why-ascent-section {
  padding: 82px 0;
  background: #fff;
}

.why-ascent-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 86px;
  align-items: center;
}

.testimonial-card {
  position: relative;
  padding: 64px 56px;
  background: linear-gradient(145deg, #1f3f7c 0%, #355da1 100%);
  color: #fff;
  box-shadow: 0 32px 80px rgba(16, 34, 64, 0.14);
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  right: 34px;
  top: 8px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 12rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-logo img {
  width: 120px;
  opacity: 0.34;
}

.testimonial-card blockquote {
  position: relative;
  margin: 48px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.5rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
}

.person-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.testimonial-person strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.testimonial-person span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.why-ascent-content h2 {
  margin: 0;
  color: #171b2f;
  font-size: clamp(3rem, 3.8vw, 4.25rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.why-ascent-content h2 span {
  display: block;
  margin-top: 6px;
  color: #31579b;
  font-style: italic;
  font-weight: 400;
}

.why-list {
  margin-top: 38px;
}

.why-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 18px 0;
}

.why-item span {
  width: 42px;
  height: 42px;
  border: 2px solid #31579b;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #31579b;
  font-size: 0.82rem;
  font-weight: 800;
}

.why-item h3 {
  margin: 0 0 6px;
  color: #171b2f;
  font-size: 1.08rem;
  font-weight: 800;
}

.why-item p {
  margin: 0;
  color: #748299;
  font-size: 1.03rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .why-ascent-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .testimonial-card {
    max-width: 720px;
  }
}

@media (max-width: 700px) {
  .why-ascent-section {
    padding: 70px 0;
  }

  .testimonial-card {
    padding: 44px 30px;
  }

  .testimonial-card blockquote {
    font-size: 1.22rem;
  }

  .why-ascent-content h2 {
    font-size: clamp(2.7rem, 10vw, 3.8rem);
  }

  .why-item {
    grid-template-columns: 38px 1fr;
    gap: 16px;
  }

  .why-item span {
    width: 38px;
    height: 38px;
  }
}

/* ========================================
   REVIEWS SECTION
======================================== */

.reviews-section {
  padding: 76px 0;
  background:
    radial-gradient(circle at top, rgba(49, 87, 155, 0.14), transparent 40%),
    #03132f;
}

.reviews-heading {
  margin-bottom: 48px;
}

.reviews-heading .section-kicker,
.reviews-heading h2 {
  color: #fff;
}

.reviews-heading .section-kicker::before {
  background: rgba(255, 255, 255, 0.55);
}

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

.review-card {
  position: relative;
  padding: 34px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.review-stars {
  color: #d8b34b;
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.review-card blockquote {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  line-height: 1.9;
  font-style: italic;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #31579b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.review-avatar-green {
  background: #537c2f;
}

.review-person strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.review-person span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
}

@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .review-card {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .reviews-section {
    padding: 68px 0;
  }

  .reviews-heading {
    margin-bottom: 38px;
  }

  .review-card {
    padding: 28px 24px;
  }

  .review-card blockquote {
    font-size: 1.08rem;
    line-height: 1.75;
  }
}

/* ========================================
   FEEDBACK MARQUEE SECTION
======================================== */

.feedback-marquee-section {
  padding: 52px 0 58px;
  background: #f3f6fa;
  overflow: hidden;
}

.feedback-kicker {
  margin: 0 0 32px;
  text-align: center;
  color: #748299;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.feedback-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.feedback-marquee::before,
.feedback-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.feedback-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f3f6fa 0%, rgba(243, 246, 250, 0) 100%);
}

.feedback-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f3f6fa 0%, rgba(243, 246, 250, 0) 100%);
}

.feedback-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: feedback-scroll 58s linear infinite;
}

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

.feedback-card {
  flex: 0 0 360px;
  min-height: 255px;
  padding: 28px 30px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 34, 64, 0.05);
  border: 1px solid rgba(215, 224, 236, 0.75);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(16, 34, 64, 0.11);
}

.feedback-stars {
  color: #d4ad3f;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
}

.feedback-card p {
  margin: 22px 0 0;
  color: #536276;
  font-size: 1.02rem;
  line-height: 1.65;
  font-style: italic;
}

.feedback-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.feedback-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.avatar-blue {
  background: #31579b;
}

.avatar-green {
  background: #207a43;
}

.avatar-purple {
  background: #66409b;
}

.avatar-rust {
  background: #a85035;
}

.avatar-teal {
  background: #2e6683;
}

.feedback-person strong {
  display: block;
  color: #171b2f;
  font-size: 0.98rem;
  font-weight: 800;
}

.feedback-person small {
  display: block;
  margin-top: 2px;
  color: #748299;
  font-size: 0.84rem;
}

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

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

@media (max-width: 700px) {
  .feedback-marquee-section {
    padding: 46px 0 52px;
  }

  .feedback-marquee::before,
  .feedback-marquee::after {
    width: 48px;
  }

  .feedback-track {
    gap: 18px;
    animation-duration: 70s;
  }

  .feedback-card {
    flex-basis: 310px;
    padding: 24px;
  }
}

/* ========================================
   CARRIER PARTNERS SECTION
======================================== */

.carrier-section {
  position: relative;
  padding: 78px 0 82px;
  background:
    radial-gradient(circle at center, rgba(49, 87, 155, 0.08), transparent 46%),
    #f3f6fa;
  overflow: hidden;
}

.carrier-bg-dot {
  position: absolute;
  width: 210px;
  height: 180px;
  opacity: 0.28;
  background-image: radial-gradient(#31579b 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
}

.carrier-dot-left {
  left: -40px;
  top: 88px;
}

.carrier-dot-right {
  right: -30px;
  top: 190px;
}

.carrier-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.carrier-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(49, 87, 155, 0.08);
  border: 1px solid rgba(49, 87, 155, 0.1);
  color: #31579b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.carrier-heading .section-kicker {
  justify-content: center;
  margin-bottom: 22px;
}

.carrier-heading h2 {
  margin: 0;
  color: #171b2f;
  font-size: clamp(2.7rem, 3.4vw, 3.9rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.carrier-heading h2 span {
  color: #31579b;
  font-style: italic;
  font-weight: 400;
}

.carrier-heading > p {
  max-width: 620px;
  margin: 20px auto 0;
  color: #748299;
  font-size: 1.08rem;
  line-height: 1.6;
}

.carrier-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}

.carrier-grid-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}

.carrier-logo-card {
  min-height: 102px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 224, 236, 0.7);
  box-shadow: 0 18px 46px rgba(16, 34, 64, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.carrier-logo-card img {
  max-width: 170px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(0.92);
  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    opacity 0.22s ease;
}

.carrier-logo-card:hover {
  transform: translateY(-6px);
  background: #fff;
  border-color: rgba(49, 87, 155, 0.2);
  box-shadow: 0 26px 64px rgba(16, 34, 64, 0.12);
}

.carrier-logo-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.carrier-note {
  width: fit-content;
  margin: 34px auto 0;
  padding: 9px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: #66758f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .carrier-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .carrier-grid-small {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .carrier-section {
    padding: 66px 0 70px;
  }

  .carrier-heading {
    margin-bottom: 38px;
  }

  .carrier-heading h2 {
    font-size: clamp(2.45rem, 9vw, 3.3rem);
  }

  .carrier-grid,
  .carrier-grid-small {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .carrier-logo-card {
    min-height: 86px;
    padding: 18px 14px;
  }

  .carrier-logo-card img {
    max-width: 130px;
    max-height: 44px;
  }
}

/* ========================================
   PROCESS SECTION
======================================== */

.process-section {
  padding: 76px 0 82px;
  background: #fff;
}

.process-heading {
  margin-bottom: 58px;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(49, 87, 155, 0),
    rgba(49, 87, 155, 0.4),
    rgba(49, 87, 155, 0)
  );
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 14px;
  text-align: center;
}

.process-number {
  width: 62px;
  height: 62px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: #31579b;
  color: #fff;
  box-shadow: 0 16px 34px rgba(49, 87, 155, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08rem;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.process-step:hover .process-number {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(49, 87, 155, 0.34);
}

.process-step h3 {
  margin: 0;
  color: #171b2f;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-step p {
  max-width: 300px;
  margin: 16px auto 0;
  color: #748299;
  font-size: 1.03rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 24px;
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .process-section {
    padding: 68px 0;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-step {
    padding: 0;
  }
}

/* ========================================
   FAQ SECTION
======================================== */

.faq-section {
  position: relative;
  padding: 78px 0;
  background: linear-gradient(180deg, #f7f9fc 0%, #fbfcfe 100%);
  overflow: hidden;
}

.faq-section::before,
.faq-section::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  opacity: 0.12;
  background-image: radial-gradient(#2d57a1 1px, transparent 1px);
  background-size: 14px 14px;
}

.faq-section::before {
  left: -40px;
  bottom: 40px;
}

.faq-section::after {
  right: -40px;
  bottom: 30px;
}

.faq-section .section-heading h2 {
  white-space: nowrap;
}

.faq-section .section-heading h2 span {
  display: inline;
  margin-left: 0.12em;
}

.faq-list {
  max-width: 1040px;
  margin: 46px auto 0;
}

.faq-item {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  box-shadow: 0 10px 30px rgba(25, 52, 94, 0.06);
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(25, 52, 94, 0.12);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.faq-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eef4ff;
  color: #2d57a1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.faq-item:hover .faq-icon {
  transform: rotate(-8deg) scale(1.05);
}

.faq-left span {
  font-size: 1.28rem;
  font-weight: 700;
  color: #1b2340;
}

.faq-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #2d57a1;
  color: #2d57a1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  background: #2d57a1;
  color: #fff;
  transform: rotate(180deg);
}

.faq-item.active .faq-icon {
  background: #2d57a1;
  color: #fff;
}

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

.faq-answer-inner {
  margin: 0 24px 24px 78px;
  padding: 22px 26px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff, #f1f6fd);
  color: #667792;
  line-height: 1.9;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 75px 0;
  }

  .faq-section .section-heading h2 {
    white-space: normal;
  }

  .faq-section .section-heading h2 span {
    display: inline;
  }

  .faq-question {
    padding: 18px;
  }

  .faq-left {
    align-items: flex-start;
  }

  .faq-left span {
    font-size: 1.05rem;
  }

  .faq-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .faq-answer-inner {
    margin: 0 18px 18px;
  }
}

/* FINAL CONTACT SECTION */

.final-contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  background: #f3f6fa;
}

.final-contact-left {
  background:
    radial-gradient(
      circle at 20% 35%,
      rgba(255, 255, 255, 0.12),
      transparent 36%
    ),
    linear-gradient(145deg, #31579b 0%, #1f3f7c 100%);
  color: #fff;
  padding: 82px 8vw;
}

.final-contact-left-inner {
  max-width: 620px;
  margin-left: auto;
}

.final-contact-left .section-kicker {
  color: rgba(255, 255, 255, 0.62);
}

.final-contact-left .section-kicker::before {
  background: rgba(255, 255, 255, 0.42);
}

.final-contact-left h2 {
  margin: 0;
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.final-contact-left h2 span {
  display: inline;
  font-size: 0.72em;
  margin-top: 8px;
  color: rgba(224, 232, 245, 0.82);
  font-style: italic;
  font-weight: 400;
}

.final-contact-left p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
  line-height: 1.7;
}

.contact-info-list {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.contact-info-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-info-item i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #d4ad3f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.contact-info-item span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.96rem;
  line-height: 1.45;
}

.final-contact-right {
  display: flex;
  align-items: center;
  padding: 60px;
  background:
    radial-gradient(
      circle at top right,
      rgba(49, 87, 155, 0.09),
      transparent 38%
    ),
    #f8fafc;
}

.final-contact-form {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 42px;
  background: #fff;
  border: 1px solid rgba(215, 224, 236, 0.85);
  box-shadow: 0 30px 80px rgba(16, 34, 64, 0.1);
}

.final-contact-form h3 {
  margin: 0 0 28px;
  color: #171b2f;
  font-size: 1.65rem;
  font-weight: 500;
}

.final-contact-form label {
  display: block;
  margin-bottom: 14px;
  color: #66758f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-contact-form label span {
  color: #9aa8bb;
}

.final-contact-form input,
.final-contact-form select,
.final-contact-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #d8e0eb;
  background: #f6f8fb;
  color: #17202a;
  font: inherit;
  font-size: 1rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.final-contact-form input,
.final-contact-form select {
  height: 48px;
  padding: 0 16px;
}

.final-contact-form textarea {
  min-height: 108px;
  resize: vertical;
  padding: 14px 16px;
}

.final-contact-form input:focus,
.final-contact-form select:focus,
.final-contact-form textarea:focus {
  outline: none;
  border-color: #31579b;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(49, 87, 155, 0.09);
}

.final-contact-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 12px;
  border: 0;
  background: #31579b;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.final-contact-submit:hover {
  transform: translateY(-2px);
  background: #3d67b3;
  box-shadow: 0 18px 38px rgba(49, 87, 155, 0.22);
}

@media (max-width: 1100px) {
  .final-contact-section {
    grid-template-columns: 1fr;
  }

  .final-contact-left,
  .final-contact-right {
    padding: 70px 32px;
  }

  .final-contact-left-inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .final-contact-form {
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .final-contact-left,
  .final-contact-right {
    padding: 58px 22px;
  }

  .final-contact-left h2 {
    font-size: clamp(2.55rem, 10vw, 3.8rem);
  }

  .final-contact-form {
    padding: 30px 22px;
  }

  .contact-info-item {
    grid-template-columns: 40px 1fr;
  }

  .contact-info-item i {
    width: 40px;
    height: 40px;
  }
}

/* FOOTER */

.site-footer {
  background:
    radial-gradient(
      circle at top center,
      rgba(49, 87, 155, 0.16),
      transparent 34%
    ),
    linear-gradient(180deg, #0d1728 0%, #07101d 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta {
  max-width: 760px;
  margin: 0 auto;
  padding: 74px 24px 60px;
  text-align: center;
}

.footer-cta h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.footer-cta p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.12rem;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 30px;
  padding: 0 34px;
  background: #31579b;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  background: #3d67b3;
  box-shadow: 0 18px 42px rgba(49, 87, 155, 0.28);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 1.1fr 1.1fr;
  gap: 64px;
  padding: 62px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  width: 150px;
  margin-bottom: 26px;
}

.footer-tagline {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.02rem;
  line-height: 1.7;
}

.footer-column h3 {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-column a,
.footer-contact p {
  display: block;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  line-height: 1.45;
}

.footer-column a {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact i {
  margin-top: 4px;
  color: #d4ad3f;
  min-width: 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 700px) {
  .footer-cta {
    padding: 62px 22px 50px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
