:root {
  --navy: #071d35;
  --navy-2: #00263f;
  --navy-3: #001a2d;
  --blue: #0567c8;
  --red: #e31d3b;
  --text: #071d35;
  --muted: #5d6876;
  --line: #d7dde4;
  --soft: #f6f8fa;
  --white: #fff;
  --shadow: 0 2px 10px rgba(6, 29, 53, .12);
  --radius: 3px;
}

/* =========================================
   RESET
========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
  width: 100%;
  background: #001b30;
  color: #fff;
  position: relative;
  z-index: 100;
}

.header-top {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

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

.brand img {
  width: 190px;
  height: auto;
}

.header-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.header-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity .2s ease;
}

.header-links a:hover {
  opacity: .75;
}

.header-call-btn{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:7px;

  padding:11px 18px !important;

  background:#e31d3b;
  color:#fff !important;

  border-radius:3px;

  font-size:14px !important;
  font-weight:700 !important;
  line-height:1 !important;

  white-space:nowrap;

  transition:all .2s ease;
}

.header-call-btn:hover{
  background:#c91531;
  opacity:1 !important;
  transform:translateY(-1px);
}

.header-call-icon{
  font-size:17px;
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: var(--red);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 10px;
  background: #fff;
  transition: transform .3s ease, opacity .3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* MOBILE */

@media(max-width:767px){

  .header-call-btn{
    padding:9px 14px !important;
    font-size:13px !important;
  }

  .header-call-icon{
    font-size:15px;
  }

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

.hero {
  min-height: 530px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg,
      rgba(3, 18, 37, .63) 0%,
      rgba(3, 18, 37, .38) 42%,
      rgba(3, 18, 37, .12) 72%,
      rgba(3, 18, 37, .03) 100%),
    url("../images/hero.webp") center center / cover no-repeat;
}

.hero-copy {
  max-width: 760px;
  padding: 80px 0;
}

.hero h1 {
  margin: 0 0 14px;
  max-width: 720px;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.03;
  font-weight: 600;
  letter-spacing: -.03em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 25px;
  border: 0;
  border-radius: 2px;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.btn:hover {
  filter: brightness(.94);
  transform: translateY(-1px);
}
.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px 22px;
  margin:0 0 25px;
}

.hero-points span{
  color:#fff;
  font-size:15px;
  font-weight:600;
  line-height:1.5;
}

@media(max-width:600px){
  .hero-points{
    display:grid;
    grid-template-columns:1fr;
    gap:7px;
    margin-bottom:22px;
  }

  .hero-points span{
    font-size:14px;
  }
}

/* =========================================
   EXPERIENCE SECTION
========================================= */

.experience {
  padding: 55px 0 70px;
}

.eyebrow {
  margin-bottom: 12px;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .30em;
  font-weight: 700;
}

.section-title {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.2;
}


/* =========================================
   SUPPORT CARD
========================================= */

.support-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  min-height: 220px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.support-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.support-icon img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}

.support-content {
  padding: 42px 40px 42px 15px;
}

.support-content h3,
.info-card h3,
.wide-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.25;
}

.support-content p,
.info-card p,
.wide-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.text-link {
  display: inline-block;
  color: #006ec7;
  font-size: 15px;
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}


/* =========================================
   CARD GRID
========================================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

.info-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.info-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.info-card .body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 22px 26px;
}

.info-card p {
  min-height: 105px;
}

.info-card .text-link {
  margin-top: auto;
}


/* =========================================
   WIDE CARDS
========================================= */

.wide-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46%;
  align-items: stretch;
  min-height: 245px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.wide-card.reverse {
  grid-template-columns: 46% minmax(0, 1fr);
}

.wide-card .copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px 38px;
}

.wide-card img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
}


/* =========================================
   LEGAL PAGES
========================================= */

.legal-hero {
  padding: 75px 0;
  background: linear-gradient(180deg, #0a2b4a, #041c34);
  color: #fff;
}

.legal-hero h1 {
  margin: 0 0 13px;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.15;
}

.legal-hero p {
  max-width: 780px;
  margin: 0;
  color: #d6e4ef;
  font-size: 17px;
  line-height: 1.6;
}

.legal {
  padding: 60px 0 80px;
}

.legal article {
  margin-inline: auto;
}

.legal .updated {
  margin: 0 0 35px;
  color: #111;
  font-size: 15px;
  font-weight: 700;
}

.legal h2 {
  margin: 38px 0 13px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.3;
}

.legal p,
.legal li {
  color: #3f4a56;
  font-size: 16px;
  line-height: 1.75;
}

.legal p {
  margin: 0 0 16px;
}

.legal ul,
.legal ol {
  margin: 12px 0 20px;
  padding-left: 25px;
}

.legal li {
  margin-bottom: 8px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
  margin-top: 0;
  padding: 65px 0 35px;
  background: linear-gradient(180deg, #00243e, #00172a);
  color: #fff;
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.footer-topline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 38px;
  font-size: 14px;
  font-weight: 700;
}

.footer-topline a:hover {
  text-decoration: underline;
}

.footer-divider {
  height: 1px;
  margin-bottom: 35px;
  background: rgba(255, 255, 255, .12);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
}

.footer-col h4 {
  margin: 0 0 16px;
  color: #b6c6d6;
  font-size: 20px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-note {
  max-width: 850px;
  margin: 42px auto 0;
  color: #c7d3de;
  text-align: center;
  font-size: 13px;
  line-height: 1.75;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
  color: #d6e0e8;
  font-size: 13px;
}


/* =========================================
   FIXED CALL BUTTON
========================================= */

.fixed-call-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-height: 48px;
  padding: 12px 21px;

  border-radius: 50px;
  background: var(--red);
  color: #fff;

  font-size: 15px;
  font-weight: 700;

  box-shadow: 0 8px 25px rgba(0, 0, 0, .22);

  transition:
    transform .2s ease,
    background .2s ease;
}

.fixed-call-btn:hover {
  background: #c91531;
  transform: translateY(-2px);
}

.call-icon {
  font-size: 19px;
  line-height: 1;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1024px) {

  .container,
  .footer-inner {
    width: min(100% - 36px, 1000px);
  }

  .header-top {
    gap: 22px;
  }

  .brand img {
    width: 165px;
  }

  .header-links {
    gap: 17px;
  }

  .header-links a {
    font-size: 13px;
  }

  .hero {
    min-height: 480px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .support-card {
    grid-template-columns: 230px 1fr;
  }

  .card-grid {
    gap: 18px;
  }

  .info-card img {
    height: 190px;
  }

  .wide-card {
    grid-template-columns: minmax(0, 1fr) 42%;
  }

  .wide-card.reverse {
    grid-template-columns: 42% minmax(0, 1fr);
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

  .header-top {
    position: relative;
    min-height: 72px;
    padding: 0;
    align-items: center;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    margin: 0;
    padding: 8px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 3px solid var(--red);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .header-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-links a {
    width: 100%;
    min-height: 49px;
    display: flex;
    align-items: center;
    padding: 10px 4px;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .header-links a:hover {
    opacity: 1;
    color: var(--red);
  }

  .header-links .header-call-btn {
    width: 100%;
    min-height: 48px;
    margin-top: 10px;
    border-bottom: 0;
    color: #fff !important;
  }

  .hero {
    min-height: 440px;
  }

  .hero h1 {
    font-size: 41px;
  }

  .support-card {
    grid-template-columns: 200px 1fr;
  }

  .support-content {
    padding: 34px 28px 34px 5px;
  }

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

  .info-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .info-card img {
    width: 100%;
    height: 100%;
    min-height: 220px;
  }

  .info-card p {
    min-height: 0;
  }

  .wide-card,
  .wide-card.reverse {
    grid-template-columns: 1fr 330px;
  }

  .wide-card.reverse img {
    order: 2;
  }

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

}


/* =========================================
   MOBILE HEADER + PAGE
========================================= */

@media (max-width: 767px) {

  .container,
  .footer-inner {
    width: calc(100% - 28px);
  }


  /* HEADER */

  .site-header .container {
    width: calc(100% - 28px);
  }

  .header-top {
    min-height: 68px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .brand {
    margin-bottom: 0;
  }

  .brand img {
    width: 150px;
  }

  .mobile-menu-btn {
    display: flex;
    width: 43px;
    height: 43px;
  }

  .mobile-menu-btn span {
    width: 20px;
  }

  .header-links {
    left: 0;
    right: 0;
    width: 100%;
    padding: 7px 16px 17px;
    overflow: visible;
  }

  .header-links a {
    flex: none;
    min-height: 48px;
    padding: 10px 4px;
    font-size: 14px;
    line-height: 1.3;
  }


  /* HERO */

  .hero {
    min-height: 500px;
    align-items: flex-end;
    background-position: 60% center;
  }

  .hero-copy {
    max-width: 100%;
    padding: 65px 0 55px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: 39px;
    line-height: 1.06;
  }

  .hero p {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.55;
  }


  /* EXPERIENCE */

  .experience {
    padding: 42px 0 55px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: .23em;
  }

  .section-title {
    margin-bottom: 30px;
    font-size: 27px;
  }


  /* SUPPORT CARD */

  .support-card {
    grid-template-columns: 1fr;
  }

  .support-icon {
    padding: 32px 25px 5px;
  }

  .support-content {
    padding: 25px 24px 30px;
  }


  /* INFO CARDS */

  .info-card {
    display: block;
  }

  .info-card img {
    height: 240px;
    min-height: 0;
  }

  .info-card .body {
    padding: 22px;
  }

  .support-content h3,
  .info-card h3,
  .wide-card h3 {
    font-size: 21px;
  }

  .support-content p,
  .info-card p,
  .wide-card p {
    font-size: 15px;
  }


  /* WIDE CARDS */

  .wide-card,
  .wide-card.reverse {
    display: flex;
    flex-direction: column;
  }

  .wide-card.reverse img {
    order: 0;
  }

  .wide-card .copy {
    order: 2;
    padding: 30px 24px;
  }

  .wide-card img {
    order: 1;
    height: 250px;
    min-height: 250px;
  }


  /* LEGAL */

  .legal-hero {
    padding: 55px 0;
  }

  .legal-hero h1 {
    font-size: 35px;
  }

  .legal-hero p {
    font-size: 15px;
  }

  .legal {
    padding: 42px 0 60px;
  }

  .legal h2 {
    margin-top: 32px;
    font-size: 22px;
  }

  .legal p,
  .legal li {
    font-size: 15px;
    line-height: 1.7;
  }


  /* FOOTER */

  .footer {
    padding: 50px 0 30px;
  }

  .footer-topline {
    justify-content: flex-start;
    margin-bottom: 30px;
  }

  .footer-divider {
    margin-bottom: 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }

  .footer-col h4 {
    font-size: 18px;
  }

  .footer-col a {
    font-size: 14px;
  }

  .footer-note {
    margin-top: 35px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 520px) {

  .container,
  .footer-inner {
    width: calc(100% - 24px);
  }

  .header-top {
    min-height: 64px;
  }

  .brand img {
    width: 138px;
  }

  .mobile-menu-btn {
    width: 41px;
    height: 41px;
  }

  .header-links {
    padding: 6px 14px 15px;
  }

  .header-links a {
    min-height: 46px;
    font-size: 13.5px;
  }

  .hero {
    min-height: 480px;
    background-position: 62% center;
  }

  .hero-copy {
    padding: 70px 0 48px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    min-height: 46px;
    padding: 12px 21px;
    font-size: 15px;
  }

  .section-title {
    font-size: 25px;
  }

  .info-card img {
    height: 220px;
  }

  .wide-card img {
    height: 220px;
    min-height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-topline {
    display: block;
  }

  .footer-topline span,
  .footer-topline a {
    display: block;
    margin-bottom: 10px;
  }

  .footer-bottom {
    display: block;
    text-align: center;
  }

  .footer-bottom span {
    display: block;
    margin-bottom: 7px;
  }

  .fixed-call-btn {
    right: 13px;
    bottom: 13px;
    min-height: 46px;
    padding: 11px 17px;
    font-size: 14px;
  }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

  .brand img {
    width: 128px;
  }

  .mobile-menu-btn {
    width: 40px;
    height: 40px;
  }

  .header-links a {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero p {
    font-size: 15px;
  }

  .section-title {
    font-size: 23px;
  }

  .support-content,
  .info-card .body,
  .wide-card .copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .legal h2 {
    font-size: 20px;
  }

  .fixed-call-btn {
    right: 10px;
    bottom: 10px;
  }

}

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

.faq-section {
  padding: 65px 0 75px;
  background: #f6f8fa;
}

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

.faq-heading span {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
}

.faq-heading h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.2;
}

.faq-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.faq-list {
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 2px 8px rgba(6, 29, 53, .06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 24px;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  transition: transform .25s ease;
}

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

.faq-answer p {
  margin: 0;
  padding: 0 24px 23px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}


/* FAQ RESPONSIVE */

@media (max-width: 767px) {

  .faq-section {
    padding: 48px 0 55px;
  }

  .faq-heading {
    margin-bottom: 28px;
  }

  .faq-heading h2 {
    font-size: 27px;
  }

  .faq-heading p {
    font-size: 15px;
  }

  .faq-question {
    padding: 18px 18px;
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 18px 20px;
    font-size: 14px;
  }

}

@media (max-width: 480px) {

  .faq-heading h2 {
    font-size: 24px;
  }

  .faq-question {
    gap: 12px;
    font-size: 15px;
  }

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

}
/* =========================================
   BOOKING SUPPORT POPUP
========================================= */
.booking-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 18, 35, .72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.booking-popup-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-popup {
  position: relative;
  width: min(100%, 470px);
  padding: 34px 30px 30px;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .28);
  transform: translateY(16px) scale(.98);
  transition: transform .25s ease;
}

.booking-popup-overlay.show .booking-popup {
  transform: translateY(0) scale(1);
}

.booking-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #f2f5f8;
  color: var(--navy);
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.booking-popup-close:hover {
  background: #e6ebef;
  transform: rotate(5deg);
}

.booking-popup-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  margin: 0 auto 20px;
}

.booking-popup-logo img {
  width: 175px;
  max-height: 62px;
  object-fit: contain;
}

.booking-popup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
  padding: 7px 11px;
  border-radius: 50px;
  background: #edf4fb;
  color: #005da9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-popup h2 {
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 29px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.booking-popup p {
  max-width: 390px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.booking-popup-call {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(227, 29, 59, .24);
  transition: background .2s ease, transform .2s ease;
}

.booking-popup-call:hover {
  background: #c91531;
  transform: translateY(-1px);
}

.booking-popup-call .popup-phone-icon {
  font-size: 20px;
}

.booking-popup-number {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.booking-popup-small {
  margin-top: 13px !important;
  margin-bottom: 0 !important;
  color: #7b8793 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

@media (max-width: 520px) {
  .booking-popup-overlay {
    padding: 14px;
  }

  .booking-popup {
    padding: 30px 20px 24px;
    border-radius: 8px;
  }

  .booking-popup-logo img {
    width: 150px;
  }

  .booking-popup h2 {
    font-size: 25px;
  }

  .booking-popup p {
    font-size: 14px;
  }

  .booking-popup-call {
    min-height: 54px;
    font-size: 15px;
  }
}
/* =====================================================
   2026 HOME PAGE PREMIUM REDESIGN
   Scoped to .home-page so legal pages stay unchanged.
===================================================== */
.home-page {
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  background: #fff;
}
.home-page .container { width:min(1220px, calc(100% - 48px)); }
.home-page .site-header {
  position: sticky; top:0;
  background:rgba(3,24,45,.97);
  backdrop-filter:blur(14px);
  box-shadow:0 1px 0 rgba(255,255,255,.08);
}
.home-page .header-top { min-height:78px; }
.home-page .brand img { width:176px; }
.home-page .header-links { gap:22px; }
.home-page .header-links a:not(.header-call-btn){font-size:14px;font-weight:600;color:#e7eef5;position:relative;padding:29px 0;}
.home-page .header-links a:not(.header-call-btn)::after{content:"";position:absolute;left:0;right:100%;bottom:20px;height:2px;background:#e31d3b;transition:.25s ease;}
.home-page .header-links a:not(.header-call-btn):hover::after{right:0;}
.home-page .header-call-btn{border-radius:999px!important;padding:12px 20px!important;box-shadow:0 8px 22px rgba(227,29,59,.24);}

.home-page .hero{
  min-height:650px;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(1,19,39,.91) 0%,rgba(2,26,52,.76) 40%,rgba(2,23,45,.28) 70%,rgba(2,23,45,.08) 100%),
    url("../images/hero.webp") center 44%/cover no-repeat;
}
.home-page .hero::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 58%,rgba(0,18,34,.36));pointer-events:none;}
.home-page .hero::after{content:"";position:absolute;width:480px;height:480px;border:1px solid rgba(255,255,255,.10);border-radius:50%;right:-180px;top:-220px;box-shadow:0 0 0 80px rgba(255,255,255,.018),0 0 0 160px rgba(255,255,255,.012);}
.home-page .hero .container{position:relative;z-index:2;}
.home-page .hero-copy{max-width:720px;padding:108px 0 112px;}
.home-page .hero-kicker{display:inline-flex;align-items:center;gap:9px;margin-bottom:20px;color:#f3f7fb;font-size:13px;font-weight:700;letter-spacing:.10em;text-transform:uppercase;}
.home-page .hero-kicker span{width:28px;height:2px;background:#e31d3b;display:block;}
.home-page .hero h1{font-size:clamp(44px,5.1vw,68px);line-height:1.01;letter-spacing:-.045em;font-weight:700;max-width:690px;text-wrap:balance;margin-bottom:20px;}
.home-page .hero p{font-size:18px;line-height:1.65;font-weight:400;color:#eef4f8;max-width:650px;margin-bottom:26px;}
.home-page .hero-points{gap:10px 12px;margin-bottom:30px;}
.home-page .hero-points span{display:inline-flex;align-items:center;padding:8px 12px;border:1px solid rgba(255,255,255,.18);border-radius:999px;background:rgba(255,255,255,.09);backdrop-filter:blur(7px);font-size:13px;font-weight:650;}
.home-page .hero-actions{display:flex;align-items:center;gap:24px;flex-wrap:wrap;}
.home-page .btn{min-height:54px;border-radius:6px;padding:14px 24px;font-size:16px;font-weight:700;box-shadow:0 14px 30px rgba(227,29,59,.27);}
.home-page .btn-phone{margin-right:7px;font-size:18px;}
.home-page .hero-text-link{color:#fff;font-size:15px;font-weight:700;border-bottom:1px solid rgba(255,255,255,.45);padding-bottom:3px;}
.home-page .hero-text-link span{display:inline-block;margin-left:6px;transition:transform .2s ease;}.home-page .hero-text-link:hover span{transform:translateX(4px)}
.home-page .hero-note{font-size:12px;color:#c7d4df;margin-top:17px;letter-spacing:.01em;}

.home-page .service-strip{position:relative;z-index:5;margin-top:-38px;}
.home-page .service-strip-grid{display:grid;grid-template-columns:repeat(4,1fr);background:#fff;border-radius:12px;box-shadow:0 18px 55px rgba(3,28,52,.15);overflow:hidden;border:1px solid #e8edf2;}
.home-page .service-strip-item{display:flex;align-items:center;gap:14px;padding:22px 20px;min-height:98px;border-right:1px solid #e8edf2;}
.home-page .service-strip-item:last-child{border-right:0;}
.home-page .strip-icon{width:42px;height:42px;display:grid;place-items:center;flex:0 0 42px;border-radius:10px;background:#eef4fa;color:#07345d;font-size:19px;font-weight:700;}
.home-page .service-strip-item strong{display:block;color:#082844;font-size:14px;line-height:1.25;margin-bottom:5px;}.home-page .service-strip-item small{display:block;color:#6d7b88;font-size:12px;line-height:1.35;}

.home-page .experience{padding:100px 0 88px;background:linear-gradient(180deg,#fff 0%,#fbfcfd 100%);}
.home-page .eyebrow,.home-page .faq-heading span{color:#d7193f;letter-spacing:.22em;font-size:11px;}
.home-page .section-title{font-size:clamp(30px,3.2vw,42px);letter-spacing:-.025em;max-width:720px;margin-bottom:46px;color:#082844;}
.home-page .support-card{grid-template-columns:40% 1fr;min-height:300px;border:0;border-radius:14px;box-shadow:0 14px 45px rgba(9,40,67,.10);margin-bottom:28px;position:relative;}
.home-page .support-icon{padding:0;background:linear-gradient(135deg,#edf4fa,#f8fbfd);min-height:300px;position:relative;overflow:hidden;}
.home-page .support-icon::before{content:"Travel Support";position:absolute;left:28px;top:28px;padding:7px 11px;background:#082844;color:#fff;border-radius:999px;font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;}
.home-page .support-icon img{max-width:180px;max-height:180px;border-radius:50%;box-shadow:0 12px 35px rgba(5,37,67,.13);}
.home-page .support-content{padding:48px 52px;}
.home-page .support-content h3,.home-page .info-card h3,.home-page .wide-card h3{font-size:24px;letter-spacing:-.02em;color:#082844;}
.home-page .support-content p,.home-page .info-card p,.home-page .wide-card p{color:#647382;}
.home-page .text-link{color:#075fae;font-weight:700;display:inline-flex;align-items:center;gap:7px;}.home-page .text-link::after{content:"→";transition:transform .2s ease}.home-page .text-link:hover{text-decoration:none}.home-page .text-link:hover::after{transform:translateX(4px)}

.home-page .card-grid{gap:24px;margin-bottom:28px;}
.home-page .info-card{border:0;border-radius:14px;box-shadow:0 12px 36px rgba(9,40,67,.09);transition:transform .25s ease,box-shadow .25s ease;}
.home-page .info-card:hover{transform:translateY(-6px);box-shadow:0 20px 46px rgba(9,40,67,.14);}
.home-page .info-card-image{overflow:hidden;}
.home-page .info-card img{height:236px;transition:transform .5s ease;}.home-page .info-card:hover img{transform:scale(1.035)}
.home-page .info-card .body{padding:28px 27px 30px;}.home-page .info-card h3{font-size:21px;}.home-page .info-card p{font-size:15px;min-height:52px;}
.home-page .wide-card{grid-template-columns:52% 48%;border:0;border-radius:14px;box-shadow:0 14px 42px rgba(9,40,67,.10);min-height:330px;margin-bottom:0;background:#082844;color:#fff;}
.home-page .wide-card .copy{padding:52px;}.home-page .wide-card h3{color:#fff;font-size:30px;}.home-page .wide-card p{color:#cbd8e3;max-width:520px;}.home-page .wide-card .text-link{color:#fff;}.home-page .wide-card img{min-height:330px;}

.home-page .faq-section{padding:88px 0;background:#f4f7fa;}
.home-page .faq-heading{margin-bottom:40px;}.home-page .faq-heading h2{font-size:clamp(30px,3vw,40px);letter-spacing:-.025em;}.home-page .faq-list{max-width:920px;}
.home-page .faq-item{border:1px solid #e1e7ed;border-radius:10px;box-shadow:none;overflow:hidden;margin-bottom:12px;transition:border-color .2s ease,box-shadow .2s ease;}.home-page .faq-item.active{border-color:#cfd9e2;box-shadow:0 8px 24px rgba(9,40,67,.07);}
.home-page .faq-question{padding:22px 24px;font-size:16px;}.home-page .faq-icon{background:#eaf0f5;color:#082844;font-size:18px;}.home-page .faq-item.active .faq-icon{background:#082844;color:#fff;}
.home-page .footer{padding-top:70px;background:linear-gradient(145deg,#041b30,#082d4c);}.home-page .footer-divider{display:none;}.home-page .footer-grid{padding-top:0;}.home-page .footer-col h4{color:#fff;font-size:17px;}.home-page .footer-col a{color:#cbd8e3;}
.home-page .fixed-call-btn{border:2px solid rgba(255,255,255,.85);box-shadow:0 10px 30px rgba(0,0,0,.25);}

@media(max-width:1024px){.home-page .service-strip-grid{grid-template-columns:repeat(2,1fr)}.home-page .service-strip-item:nth-child(2){border-right:0}.home-page .service-strip-item:nth-child(-n+2){border-bottom:1px solid #e8edf2}.home-page .hero-copy{padding:90px 0 105px}.home-page .support-card{grid-template-columns:36% 1fr}}
@media(max-width:850px){.home-page .header-links a:not(.header-call-btn){padding:10px 4px;color:#082844}.home-page .header-links a:not(.header-call-btn)::after{display:none}.home-page .hero{min-height:620px;background-position:62% center}.home-page .hero-copy{max-width:650px}.home-page .support-card{grid-template-columns:1fr}.home-page .support-icon{min-height:230px}.home-page .support-content{padding:34px}.home-page .wide-card{grid-template-columns:1fr}.home-page .wide-card-image{min-height:280px}}
@media(max-width:767px){.home-page .container{width:calc(100% - 28px)}.home-page .site-header{position:relative}.home-page .hero{min-height:630px;align-items:center;background-position:64% center}.home-page .hero::after{display:none}.home-page .hero-copy{padding:78px 0 90px}.home-page .hero h1{font-size:clamp(38px,11vw,50px)}.home-page .hero p{font-size:16px}.home-page .hero-points span{font-size:12px}.home-page .hero-actions{align-items:flex-start;flex-direction:column;gap:18px}.home-page .service-strip{margin-top:-28px}.home-page .service-strip-grid{grid-template-columns:1fr}.home-page .service-strip-item{border-right:0!important;border-bottom:1px solid #e8edf2!important;min-height:82px;padding:17px}.home-page .service-strip-item:last-child{border-bottom:0!important}.home-page .experience{padding:74px 0 64px}.home-page .section-title{font-size:30px;margin-bottom:32px}.home-page .support-icon{min-height:210px}.home-page .support-icon img{max-width:140px}.home-page .support-content{padding:28px 24px 32px}.home-page .card-grid{gap:18px}.home-page .info-card img{height:225px}.home-page .info-card p{min-height:0}.home-page .wide-card .copy{padding:34px 25px}.home-page .wide-card h3{font-size:26px}.home-page .faq-section{padding:64px 0}.home-page .faq-question{padding:18px;font-size:15px}}
@media(max-width:480px){.home-page .hero{min-height:650px}.home-page .hero-kicker{font-size:11px}.home-page .hero h1{font-size:37px}.home-page .btn{width:100%;font-size:14px;padding:13px 16px}.home-page .service-strip-grid{border-radius:10px}.home-page .support-icon::before{left:18px;top:18px}.home-page .faq-heading h2{font-size:28px}}

/* =========================================
   HOME REDESIGN V2 — COMPACT HERO + CALL SUPPORT
========================================= */
.home-page .hero {
  min-height: 410px;
  align-items: center;
  background-position: center 46%;
  position: relative;
  isolation: isolate;
}

.home-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 19, 37, .05), rgba(0, 19, 37, .22));
}

.home-page .hero-copy {
  max-width: 690px;
  padding: 54px 0 52px;
}

.home-page .hero-kicker {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.home-page .hero-kicker span {
  display: inline-block;
  width: 28px;
  height: 3px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--red);
}

.home-page .hero h1 {
  max-width: 650px;
  margin-bottom: 13px;
  font-size: clamp(38px, 4.3vw, 54px);
  line-height: 1.02;
  font-weight: 700;
}

.home-page .hero p {
  max-width: 650px;
  margin-bottom: 19px;
  font-size: 17px;
  line-height: 1.55;
}

.home-page .hero-points {
  gap: 8px;
  margin-bottom: 20px;
}

.home-page .hero-points span {
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(9,37,68,.42);
  font-size: 13px;
  backdrop-filter: blur(4px);
}

.home-page .hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.home-page .hero-actions .btn {
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(227,29,59,.25);
}

.home-page .hero-text-link {
  padding-bottom: 4px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.5);
  font-size: 14px;
  font-weight: 700;
}

.home-page .hero-note {
  margin-top: 14px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
}

.home-page .service-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  background: #fff;
  border-bottom: 1px solid #e7edf3;
  box-shadow: 0 10px 30px rgba(7,29,53,.06);
}

.home-page .service-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
}

.home-page .service-strip-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 86px;
  padding: 16px 18px;
  border-right: 1px solid #e7edf3;
}

.home-page .service-strip-item:last-child { border-right: 0; }
.home-page .strip-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  background: #eef5fb;
  color: #0b4d87;
  font-size: 18px;
  font-weight: 800;
}
.home-page .service-strip-item strong { display:block; font-size:14px; line-height:1.25; }
.home-page .service-strip-item small { display:block; margin-top:4px; color:#72808e; font-size:11px; line-height:1.35; }

.home-page .experience {
  padding: 62px 0 72px;
  background:
    radial-gradient(circle at 10% 5%, rgba(0, 95, 170, .05), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.home-page .experience .eyebrow {
  color: var(--red);
  letter-spacing: .25em;
}

.home-page .experience .section-title {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: clamp(30px, 3.1vw, 42px);
  letter-spacing: -.025em;
}

.home-page .support-card-premium {
  grid-template-columns: 37% minmax(0, 1fr);
  min-height: 365px;
  margin-bottom: 30px;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(6,29,53,.13);
}

.home-page .support-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 42px 38px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(39,126,192,.28), transparent 34%),
    linear-gradient(145deg, #0a3158 0%, #041e39 58%, #03172b 100%);
}

.home-page .support-visual::before,
.home-page .support-visual::after {
  content:"";
  position:absolute;
  border:1px solid rgba(255,255,255,.08);
  border-radius:50%;
}
.home-page .support-visual::before { width:310px; height:310px; right:-145px; top:-135px; }
.home-page .support-visual::after { width:220px; height:220px; left:-105px; bottom:-100px; }

.home-page .support-live {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: 11px;
  font-weight: 700;
}
.home-page .support-live i { width:7px; height:7px; border-radius:50%; background:#4edb8b; box-shadow:0 0 0 4px rgba(78,219,139,.12); }

.home-page .support-icon-ring {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  margin: 12px 0 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.22), 0 0 0 12px rgba(255,255,255,.07);
}
.home-page .support-icon-ring img {
  width: 102px;
  height: 102px;
  object-fit: cover;
  border-radius: 50%;
}

.home-page .support-visual-copy { position:relative; z-index:1; max-width:290px; }
.home-page .support-mini-label { color:#9ed5ff; font-size:10px; font-weight:800; letter-spacing:.18em; }
.home-page .support-visual-copy h3 { margin:8px 0 7px; color:#fff; font-size:24px; }
.home-page .support-visual-copy p { margin:0; color:#c8d7e5; font-size:13px; line-height:1.55; }

.home-page .support-content-premium {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 48px;
  background: #fff;
}
.home-page .support-kicker { color:var(--red); font-size:11px; font-weight:800; letter-spacing:.16em; }
.home-page .support-content-premium > h3 {
  max-width: 620px;
  margin: 8px 0 10px;
  color: #082a4c;
  font-size: clamp(27px, 2.35vw, 34px);
  letter-spacing: -.025em;
}
.home-page .support-lead { max-width:670px; margin-bottom:22px !important; font-size:15px !important; }

.home-page .support-help-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:11px;
  margin-bottom:24px;
}
.home-page .support-help-item {
  display:flex;
  align-items:center;
  gap:11px;
  min-height:62px;
  padding:11px 12px;
  border:1px solid #e5ebf1;
  border-radius:12px;
  background:#f9fbfd;
}
.home-page .support-help-icon {
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  flex:0 0 34px;
  border-radius:10px;
  background:#eaf3fb;
  color:#075998;
  font-size:16px;
  font-weight:800;
}
.home-page .support-help-item strong { display:block; color:#0a2c4e; font-size:13px; line-height:1.2; }
.home-page .support-help-item small { display:block; margin-top:3px; color:#7a8793; font-size:10px; line-height:1.25; }

.home-page .support-call-row { display:flex; align-items:center; flex-wrap:wrap; gap:16px; }
.home-page .support-call-btn {
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-height:58px;
  padding:9px 20px 9px 10px;
  border-radius:13px;
  background:linear-gradient(135deg,#e51e3e,#c91030);
  color:#fff;
  box-shadow:0 12px 26px rgba(227,29,59,.22);
  transition:transform .2s ease, box-shadow .2s ease;
}
.home-page .support-call-btn:hover { transform:translateY(-2px); box-shadow:0 16px 32px rgba(227,29,59,.28); }
.home-page .support-phone-bubble { display:grid; place-items:center; width:40px; height:40px; border-radius:10px; background:rgba(255,255,255,.16); font-size:20px; }
.home-page .support-call-btn small { display:block; margin-bottom:1px; color:#ffdbe2; font-size:9px; font-weight:800; letter-spacing:.11em; }
.home-page .support-call-btn strong { display:block; font-size:18px; letter-spacing:.01em; }
.home-page .support-call-note { display:flex; align-items:center; gap:7px; color:#657381; font-size:12px; font-weight:700; }
.home-page .support-call-note span { display:grid; place-items:center; width:20px; height:20px; border-radius:50%; background:#e8f8ef; color:#159451; font-size:11px; }

@media (max-width: 1024px) {
  .home-page .hero { min-height: 390px; }
  .home-page .support-card-premium { grid-template-columns: 34% 1fr; }
  .home-page .support-content-premium { padding: 38px 34px; }
  .home-page .service-strip-grid { grid-template-columns: repeat(2,1fr); }
  .home-page .service-strip-item:nth-child(2) { border-right:0; }
  .home-page .service-strip-item:nth-child(-n+2) { border-bottom:1px solid #e7edf3; }
}

@media (max-width: 767px) {
  .home-page .hero {
    min-height: 455px;
    align-items: center;
    background-position: 62% center;
  }
  .home-page .hero-copy { padding: 44px 0 42px; }
  .home-page .hero h1 { font-size: 36px; }
  .home-page .hero p { font-size: 15px; }
  .home-page .hero-points { display:flex; gap:7px; }
  .home-page .hero-points span { font-size:11px; padding:6px 9px; }
  .home-page .service-strip-grid { grid-template-columns: 1fr 1fr; }
  .home-page .service-strip-item { min-height:78px; padding:13px 10px; gap:9px; }
  .home-page .strip-icon { width:34px; height:34px; flex-basis:34px; border-radius:9px; font-size:15px; }
  .home-page .service-strip-item strong { font-size:12px; }
  .home-page .service-strip-item small { font-size:9px; }
  .home-page .experience { padding:45px 0 55px; }
  .home-page .experience .section-title { margin-bottom:26px; font-size:29px; }
  .home-page .support-card-premium { display:block; border-radius:16px; }
  .home-page .support-visual { min-height:310px; padding:52px 24px 32px; }
  .home-page .support-live { top:18px; left:18px; }
  .home-page .support-icon-ring { width:118px; height:118px; }
  .home-page .support-icon-ring img { width:88px; height:88px; }
  .home-page .support-content-premium { padding:30px 22px; }
  .home-page .support-content-premium > h3 { font-size:26px; }
  .home-page .support-help-grid { grid-template-columns:1fr; }
  .home-page .support-call-btn { width:100%; justify-content:center; }
  .home-page .support-call-note { width:100%; justify-content:center; }
}

@media (max-width: 430px) {
  .home-page .hero { min-height: 470px; }
  .home-page .hero h1 { font-size: 33px; }
  .home-page .hero-actions .btn { width:100%; }
  .home-page .hero-text-link { margin-inline:auto; }
  .home-page .service-strip-grid { grid-template-columns: 1fr; }
  .home-page .service-strip-item { border-right:0 !important; border-bottom:1px solid #e7edf3; }
  .home-page .service-strip-item:last-child { border-bottom:0; }
}

/* =========================================
   HOME REDESIGN V3 — AIRY SUPPORT LAYOUT
   Content left / visual right
========================================= */
.home-page .experience {
  padding: 76px 0 84px;
}

.home-page .experience .eyebrow {
  margin-bottom: 10px;
  text-align: left;
  font-size: 11px;
  letter-spacing: .22em;
}

.home-page .experience .section-title {
  max-width: 690px;
  margin: 0 0 42px;
  text-align: left;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.12;
}

.home-page .support-card-premium {
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, .78fr);
  min-height: 430px;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(6,29,53,.10);
}

.home-page .support-content-premium {
  order: 1;
  justify-content: center;
  padding: 54px 58px 54px 54px;
}

.home-page .support-visual {
  order: 2;
  min-height: 430px;
  padding: 58px 36px 42px;
}

.home-page .support-content-premium > h3 {
  max-width: 570px;
  margin: 10px 0 14px;
  font-size: clamp(27px, 2.15vw, 33px);
  line-height: 1.14;
}

.home-page .support-lead {
  max-width: 620px;
  margin-bottom: 28px !important;
  color: #627181;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.home-page .support-help-grid {
  gap: 14px;
  margin-bottom: 30px;
}

.home-page .support-help-item {
  min-height: 70px;
  padding: 14px 15px;
  border-radius: 14px;
  background: #fbfcfe;
}

.home-page .support-help-icon {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
}

.home-page .support-help-item strong {
  font-size: 13px;
}

.home-page .support-help-item small {
  margin-top: 4px;
  font-size: 10px;
}

.home-page .support-call-row {
  gap: 20px;
}

.home-page .support-call-btn {
  min-height: 62px;
  padding: 10px 24px 10px 11px;
}

.home-page .support-phone-bubble {
  width: 42px;
  height: 42px;
}

.home-page .support-icon-ring {
  width: 150px;
  height: 150px;
  margin: 20px 0 27px;
}

.home-page .support-icon-ring img {
  width: 112px;
  height: 112px;
}

.home-page .support-visual-copy {
  max-width: 310px;
}

.home-page .support-visual-copy h3 {
  margin: 10px 0 9px;
  font-size: 25px;
  line-height: 1.2;
}

.home-page .support-visual-copy p {
  max-width: 280px;
  margin-inline: auto;
  font-size: 13px;
  line-height: 1.65;
}

.home-page .support-live {
  top: 26px;
  left: 26px;
}

@media (max-width: 1100px) {
  .home-page .support-card-premium {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  }
  .home-page .support-content-premium {
    padding: 44px 38px;
  }
}

@media (max-width: 850px) {
  .home-page .experience {
    padding: 58px 0 64px;
  }
  .home-page .experience .section-title {
    margin-bottom: 30px;
  }
  .home-page .support-card-premium {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .home-page .support-content-premium {
    order: 1;
    padding: 34px 28px 36px;
  }
  .home-page .support-visual {
    order: 2;
    min-height: 300px;
    padding: 52px 24px 32px;
  }
  .home-page .support-help-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 600px) {
  .home-page .experience .eyebrow,
  .home-page .experience .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .home-page .support-content-premium {
    padding: 30px 22px 32px;
  }
  .home-page .support-help-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .home-page .support-help-item {
    min-height: 64px;
  }
  .home-page .support-call-row {
    gap: 12px;
  }
  .home-page .support-call-btn,
  .home-page .support-call-note {
    width: 100%;
    justify-content: center;
  }
}
\n\n/* =========================================\n   V4 CLEAN SUPPORT SHOWCASE\n========================================= */\n.home-page .experience {\n  padding-top: 82px;\n}\n\n.home-page .experience .eyebrow {\n  margin-bottom: 10px;\n}\n\n.home-page .experience .section-title {\n  max-width: 760px;\n  margin-bottom: 54px;\n  line-height: 1.12;\n}\n\n.home-page .support-showcase {\n  display: grid;\n  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);\n  min-height: 440px;\n  margin-bottom: 42px;\n  overflow: hidden;\n  border: 1px solid #e3e9ef;\n  border-radius: 18px;\n  background: #fff;\n  box-shadow: 0 22px 65px rgba(7, 29, 53, .10);\n}\n\n.home-page .support-showcase-copy {\n  display: flex;\n  flex-direction: column;\n  justify-content: center;\n  padding: 54px 56px;\n}\n\n.home-page .support-showcase .support-kicker {\n  display: block;\n  margin-bottom: 14px;\n  color: #e31d3b;\n  font-size: 12px;\n  font-weight: 800;\n  letter-spacing: .18em;\n}\n\n.home-page .support-showcase h3 {\n  max-width: 520px;\n  margin: 0 0 16px;\n  color: #082844;\n  font-size: clamp(31px, 3vw, 43px);\n  line-height: 1.08;\n  letter-spacing: -.035em;\n}\n\n.home-page .support-showcase-lead {\n  max-width: 560px;\n  margin: 0 0 28px;\n  color: #657484;\n  font-size: 16px;\n  line-height: 1.7;\n}\n\n.home-page .support-primary-call {\n  display: inline-flex;\n  align-items: center;\n  align-self: flex-start;\n  gap: 13px;\n  min-width: 310px;\n  padding: 14px 20px;\n  border-radius: 12px;\n  background: linear-gradient(135deg, #e31d3b, #c91432);\n  color: #fff;\n  box-shadow: 0 14px 30px rgba(227, 29, 59, .24);\n  transition: transform .2s ease, box-shadow .2s ease;\n}\n\n.home-page .support-primary-call:hover {\n  transform: translateY(-2px);\n  box-shadow: 0 18px 38px rgba(227, 29, 59, .30);\n}\n\n.home-page .support-primary-icon {\n  display: grid;\n  place-items: center;\n  width: 44px;\n  height: 44px;\n  flex: 0 0 44px;\n  border-radius: 10px;\n  background: rgba(255,255,255,.16);\n  font-size: 22px;\n}\n\n.home-page .support-primary-call small {\n  display: block;\n  margin-bottom: 2px;\n  font-size: 9px;\n  font-weight: 800;\n  letter-spacing: .13em;\n}\n\n.home-page .support-primary-call strong {\n  display: block;\n  font-size: 21px;\n  line-height: 1.15;\n}\n\n.home-page .support-quick-points {\n  display: flex;\n  flex-wrap: wrap;\n  gap: 10px 18px;\n  margin-top: 26px;\n}\n\n.home-page .support-quick-points span {\n  display: inline-flex;\n  align-items: center;\n  gap: 7px;\n  color: #27445f;\n  font-size: 13px;\n  font-weight: 700;\n}\n\n.home-page .support-quick-points i {\n  display: grid;\n  place-items: center;\n  width: 20px;\n  height: 20px;\n  border-radius: 50%;\n  background: #eaf8ef;\n  color: #129144;\n  font-size: 11px;\n  font-style: normal;\n}\n\n.home-page .support-disclaimer {\n  margin: 14px 0 0;\n  color: #8a96a2;\n  font-size: 11px;\n}\n\n.home-page .support-showcase-media {\n  position: relative;\n  min-height: 440px;\n  overflow: hidden;\n  background: #dce8f2;\n}\n\n.home-page .support-showcase-media::after {\n  content: \"\";\n  position: absolute;\n  inset: 0;\n  background: linear-gradient(90deg, rgba(4,28,50,.08), rgba(4,28,50,0) 35%);\n  pointer-events: none;\n}\n\n.home-page .support-showcase-media img {\n  width: 100%;\n  height: 100%;\n  min-height: 440px;\n  object-fit: cover;\n  object-position: center;\n}\n\n.home-page .support-media-badge {\n  position: absolute;\n  z-index: 2;\n  right: 24px;\n  bottom: 24px;\n  display: flex;\n  align-items: center;\n  gap: 11px;\n  padding: 12px 15px;\n  border: 1px solid rgba(255,255,255,.35);\n  border-radius: 12px;\n  background: rgba(4, 30, 53, .91);\n  color: #fff;\n  box-shadow: 0 12px 28px rgba(0,0,0,.20);\n  backdrop-filter: blur(8px);\n}\n\n.home-page .support-media-phone {\n  display: grid;\n  place-items: center;\n  width: 36px;\n  height: 36px;\n  border-radius: 9px;\n  background: #e31d3b;\n  font-size: 18px;\n}\n\n.home-page .support-media-badge small,\n.home-page .support-media-badge strong {\n  display: block;\n}\n\n.home-page .support-media-badge small {\n  color: #c9d8e5;\n  font-size: 8px;\n  font-weight: 800;\n  letter-spacing: .14em;\n}\n\n.home-page .support-media-badge strong {\n  margin-top: 2px;\n  font-size: 14px;\n}\n\n@media (max-width: 900px) {\n  .home-page .support-showcase {\n    grid-template-columns: 1fr;\n  }\n  .home-page .support-showcase-copy {\n    padding: 44px 38px;\n  }\n  .home-page .support-showcase-media,\n  .home-page .support-showcase-media img {\n    min-height: 330px;\n  }\n}\n\n@media (max-width: 600px) {\n  .home-page .experience {\n    padding-top: 62px;\n  }\n  .home-page .experience .section-title {\n    margin-bottom: 34px;\n  }\n  .home-page .support-showcase {\n    border-radius: 14px;\n    margin-bottom: 28px;\n  }\n  .home-page .support-showcase-copy {\n    padding: 34px 24px 36px;\n  }\n  .home-page .support-showcase h3 {\n    font-size: 31px;\n  }\n  .home-page .support-showcase-lead {\n    font-size: 15px;\n  }\n  .home-page .support-primary-call {\n    width: 100%;\n    min-width: 0;\n  }\n  .home-page .support-primary-call strong {\n    font-size: 19px;\n  }\n  .home-page .support-quick-points {\n    display: grid;\n    gap: 9px;\n  }\n  .home-page .support-showcase-media,\n  .home-page .support-showcase-media img {\n    min-height: 270px;\n  }\n  .home-page .support-media-badge {\n    right: 14px;\n    bottom: 14px;\n  }\n}\n