
    :root {
      --orange: #ff7a1a;
      --orange-dark: #ef5e00;
      --orange-soft: #fff1e7;
      --orange-light: #ffd7bd;
      --cream: #fffaf6;
      --text: #2c221c;
      --muted: #7b6a60;
      --white: #ffffff;
      --shadow: 0 18px 55px rgba(255, 122, 26, 0.16);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --max-width: 1300px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(255, 181, 129, 0.35), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 122, 26, 0.10), transparent 30%),
        linear-gradient(180deg, #fff8f3 0%, #ffffff 42%, #fff7f1 100%);
      line-height: 1.6;
    }

    img, video {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: min(calc(100% - 50px), var(--max-width));
      margin: 0 auto;
    }

    .section {
      padding: 50px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 122, 26, 0.10);
      color: var(--orange-dark);
      border: 1px solid rgba(255, 122, 26, 0.14);
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
        margin-bottom: 5px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 0 5px rgba(255, 122, 26, 0.12);
    }

    h1, h2, h3 {
      font-family: 'Montserrat', sans-serif;
      line-height: 0.9;      
    }

    h1 {
      font-size: clamp(1.2rem, 3.6vw, 3.6rem);
      margin: 10px 0 8px;
        letter-spacing: 0.01em;
    }

    h2 {
      font-size: clamp(1.2rem, 3.8vw, 3.2rem);
      margin: 15px 0;
    }

    p.lead {
      font-size: clamp(0.8rem, 1.3vw, 1.rem);
      color: var(--muted);
      max-width: 640px;
    }

    .btn-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 22px;
      border-radius: 999px;
        font-size: 115%;
      font-weight: 700;
      transition: .25s ease;
      border: 1px solid transparent;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
      color: var(--white);
      box-shadow: 0 14px 35px rgba(255, 122, 26, 0.28);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(255, 122, 26, 0.34);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.8);
      border-color: rgba(44,34,28,0.10);
      color: var(--text);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      background: var(--white);
    }

    .navbar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(14px);
      background: rgba(255, 250, 246, 0.78);
      border-bottom: 1px solid rgba(44,34,28,0.06);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 50px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
        width: 250px;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: var(--white);
      font-size: 20px;
      background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
      box-shadow: 0 10px 24px rgba(255, 122, 26, 0.22);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      color: #5a4d45;
      font-weight: 500;
    }

    .hero {
      padding: 20px 0 36px;
    }

    .hero-grid {
        display: grid;
  grid-template-columns: minmax(0, 50%) minmax(320px, 40%);
  gap: 32px;
  align-items: center;

    }

    .hero-content,
.hero-copy{
  width: 100%;
  max-width: 100%;
  min-width: 0;
      padding: 18px 0;
    }

.hero-grid > *{
  min-width: 0;
}

.hero-copy h1,
.hero-copy p,
.hero-copy span{
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

    .hero-copy strong {
      color: var(--orange-dark);
    }

    .hero strong {
    color: var(--orange-dark);
        font-size: 80%;
    }

    .stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 34px;
    }

    .stat-card {
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(44,34,28,0.07);
      border-radius: 22px;
      padding: 18px;
      box-shadow: 0 10px 30px rgba(33, 22, 14, 0.05);
    }

    .stat-card h3 {
      font-size: 1.55rem;
      color: var(--orange-dark);
      margin-bottom: 4px;
    }

    .stat-card p {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.45;
    }

    .hero-media {
      position: relative;
    }

    .video-shell {
      position: relative;
      border-radius: 34px;
      overflow: hidden;
      background: linear-gradient(145deg, #fff2e8, #ffe6d3);
      padding: 14px;
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .video-shell::before,
    .video-shell::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(12px);
      z-index: -1;
    }

    .video-shell::before {
      width: 180px;
      height: 180px;
      background: rgba(255, 122, 26, 0.18);
      top: -36px;
      right: -18px;
    }

    .video-shell::after {
      width: 130px;
      height: 130px;
      background: rgba(255, 188, 142, 0.38);
      bottom: -28px;
      left: -22px;
    }

    .video-frame {
      position: relative;
      aspect-ratio: 1/1;
      width: 100%;
      border-radius: 26px;
      overflow: hidden;
      background: #000;
    }

    .video-frame video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .floating-badge {
      position: absolute;
      left: 22px;
      bottom: 22px;
      background: rgba(255,255,255,0.94);
      border-radius: 18px;
      padding: 14px 16px;
      box-shadow: 0 16px 35px rgba(40, 24, 10, 0.15);
      max-width: 280px;
    }

    .floating-badge strong {
      display: block;
      color: var(--orange-dark);
      font-size: 0.98rem;
      margin-bottom: 3px;
    }

    .floating-badge span {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.45;
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 38px;
    }

    .benefit-card {
      background: var(--white);
      border: 1px solid rgba(44,34,28,0.06);
      border-radius: 24px;
      padding: 26px 20px;
      box-shadow: 0 14px 40px rgba(33, 22, 14, 0.05);
    }

    .benefit-icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      background: linear-gradient(135deg, rgba(255,122,26,0.14), rgba(255,122,26,0.06));
      color: var(--orange-dark);
      font-size: 24px;
      font-weight: 700;
    }

    .benefit-card h3 {
      font-size: 1.1rem;
      margin-bottom: 8px;
    }

    .benefit-card p {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .results-section{
  overflow:hidden;
}

.results-split-card{
  align-items:center;
}

.ba-slider-wrap{
  position:relative;
  margin-top:22px;
}

.ba-slider{
  position:relative;
  width:100%;
  border-radius:28px;
  overflow:hidden;
  background:#fff5ea;
  box-shadow:0 22px 50px rgba(128,72,22,.14);
}

.ba-slide{
  display:none;
}

.ba-slide.active{
  display:block;
  animation:baFade .45s ease;
}

.ba-slide img{
  width:100%;
  display:block;
  aspect-ratio:4/3;
  object-fit:cover;
}

.ba-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:24px;
  height:24px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#d97824;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 28px rgba(0,0,0,.16);
}

.ba-prev{
  left:14px;
}

.ba-next{
  right:14px;
}

.ba-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:16px;
}

.ba-dots button{
  width:9px;
  height:9px;
  border:0;
  border-radius:999px;
  background:#e0b083;
  opacity:.45;
  cursor:pointer;
}

.ba-dots button.active{
  width:26px;
  background:#d97824;
  opacity:1;
}

.visual-note{
  margin-top:18px;
}

@keyframes baFade{
  from{
    opacity:0;
    transform:scale(.98);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

    .split-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-radius: 34px;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 20px 60px rgba(33, 22, 14, 0.07);
      border: 1px solid rgba(44,34,28,0.06);
    }

    .split-visual {
      padding: 44px;
      background: linear-gradient(180deg, #fff4ec 0%, #fffaf7 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .split-visual-box {
      border-radius: 28px;
      min-height: 430px;
      background:
        linear-gradient(160deg, rgba(255,122,26,0.10), rgba(255,122,26,0.03)),
        radial-gradient(circle at 30% 20%, rgba(255,179,123,0.35), transparent 24%),
        #fff;
      border: 1px solid rgba(255,122,26,0.10);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 24px;
      position: relative;
      overflow: hidden;
    }


    .ba-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      height: 100%;
      align-items: stretch;
    }

    .ba-photo {
      border-radius: 22px;
      min-height: 310px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .ba-photo.before {
      background:
        linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.22)),
        url(../img/slider-before-after/test-slide-HuiXian-before.jpg);
      background-size: cover;
      background-position: center;
    }

    .ba-photo.after {
      background:
        linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.12)),
        url(../img/slider-before-after/test-slide-HuiXian-after.jpg);
      background-size: cover;
      background-position: center;
    }

    .ba-label {
      position: absolute;
      left: 14px;
      bottom: 14px;
      background: rgba(255,255,255,0.94);
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 12px;
      font-weight: 700;
      color: var(--text);
    }

    .visual-note {
      margin-top: 14px;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .split-content {
      padding: 48px 46px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

.results-section h3{
    font-size: 1.4rem;
    margin: 0 auto
}

    .check-list {
      display: grid;
      gap: 14px;
      margin: 28px 0 30px;
    }

    .check-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 15px 16px;
      border-radius: 18px;
      background: #fff8f2;
      border: 1px solid rgba(255,122,26,0.09);
    }

    .check-icon {
      width: 28px;
      height: 28px;
      flex: 0 0 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      margin-top: 2px;
    }

    .check-item strong {
      display: block;
      font-size: 1rem;
      margin-bottom: 2px;
    }

    .check-item span {
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.45;
    }

    .testimonial-wrap {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 34px;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: 26px;
      padding: 28px 24px;
      border: 1px solid rgba(44,34,28,0.06);
      box-shadow: 0 14px 45px rgba(33, 22, 14, 0.05);
    }

    .stars {
      color: var(--orange-dark);
      letter-spacing: 2px;
      font-size: 18px;
      margin-bottom: 16px;
    }

    .testimonial-card p {
      color: var(--muted);
      font-size: 0.97rem;
      margin-bottom: 18px;
    }

    .person {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(255,122,26,0.22), rgba(255,122,26,0.08));
      display: grid;
      place-items: center;
      font-weight: 700;
      color: var(--orange-dark);
    }

    .person strong {
      display: block;
      font-size: 0.98rem;
    }

    .person span {
      color: var(--muted);
      font-size: 0.88rem;
    }

    .cta-band {
      padding: 42px;
      border-radius: 32px;
      background: linear-gradient(135deg, #ff7a1a 0%, #ff8d39 52%, #ef5e00 100%);
      color: var(--white);
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 28px;
      align-items: center;
      box-shadow: 0 18px 55px rgba(255, 122, 26, 0.24);
    }

    .cta-band p {
      color: rgba(255,255,255,0.88);
      margin-top: 12px;
      max-width: 620px;
    }

    .cta-points {
      display: grid;
      gap: 10px;
      justify-self: end;
      text-align: left;
      width: min(100%, 360px);
    }

    .cta-point {
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 18px;
      padding: 14px 16px;
      backdrop-filter: blur(8px);
    }

    .form-wrap {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 0;
      border-radius: 34px;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 18px 58px rgba(33, 22, 14, 0.06);
      border: 1px solid rgba(44,34,28,0.06);
    }

    .form-side {
      background: linear-gradient(180deg, #fff4eb 0%, #fff9f4 100%);
      padding: 42px;
    }

    .form-side p {
      color: var(--muted);
      margin: 14px 0 24px;
    }

    .mini-points {
      display: grid;
      gap: 12px;
    }

    .mini-point {
      display: flex;
      gap: 12px;
      align-items: center;
      background: rgba(255,255,255,0.7);
      border-radius: 18px;
      padding: 13px 14px;
      border: 1px solid rgba(44,34,28,0.06);
    }

    .mini-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      box-shadow: 0 0 0 6px rgba(255,122,26,0.10);
      flex: 0 0 12px;
    }

.hero-copy h1.title{ 
    font-size: 20px; 
    font-weight: bold;
}
.new-text{ 
    color:#fff; 
    font-size: 80%;
    background-color: var(--orange-dark); 
    border-radius:10px; 
    padding: 0 20px;
    display: inline-block;
}
h2.title{ 
    margin: 5px 0;
    line-height: normal;
    font-size: 28px; 
    font-weight: bold;
}
h2.title span{
    display: block;
}

h2.title .price{
    color: var(--orange-dark); 
    font-style: italic;
}

    .fill-in-form-text{ font-size: 14px;}

    .sub-text{ font-style: italic; font-size: 70%;}

    .text-terms{ font-size:12px;}

.text-terms a{ color: red;}

    .text-terms input{ 
        width: auto;
        height: auto;
        margin-right: 5px;
        vertical-align: middle;
    }

    .text-terms span{ font-style: italic;}

    .form-card {
      padding: 42px;
    }

    form {
      display: grid;   
      gap: 5px;
      margin-top: 10px;
    }

    .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .field-row-text {
      display: grid;
      gap: 16px;
    }

    input, select, textarea {
      width: 100%;
      border: 1px solid rgba(44,34,28,0.10);
      border-radius: 10px;
      background: #fff;
      padding: 10px 16px;
      font: inherit;
      color: var(--text);
      outline: none;
      transition: .2s ease;
    }

    input:focus, select:focus, textarea:focus {
      border-color: rgba(255,122,26,0.45);
      box-shadow: 0 0 0 4px rgba(255,122,26,0.10);
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    input#nationality {
    display: inline-block;
    width: auto;
    height: auto;
    }

    .field-nationality{
        display: inline-block; 
        width: auto;
        text-align: left; 
        float: left;}

.field-nationality label {
    font-weight: 500;
    font-size: 12pt;
    text-transform: none;
    color: #4e4a4b;
    margin: 0 0 10px;
}

    .clear{ clear: both;}

    .submit-note {
      color: var(--muted);
      font-size: 0.88rem;
      margin-top: 6px;
    }

.concern-section{
  padding:30px 20px;
  background:
    radial-gradient(circle at top left, rgba(255,145,70,.16), transparent 36%),
    linear-gradient(180deg,#fffaf6 0%,#ffffff 100%);
}

.concern-section .container{
  max-width:1180px;
  margin:0 auto;
}

.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 48px;
}

.section-head .eyebrow{
  display:inline-flex;
  padding:8px 16px;
  border-radius:999px;
  background:rgba(231,111,45,.1);
  color:#d96524;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.section-head h2{
  margin:16px 0 14px;
  font-size:clamp(1.2rem,4vw,52px);
  line-height:1.08;
  color:#2b1d17;
}

.section-head p{
  margin:0;
  font-size:17px;
  line-height:1.7;
  color:#6f5a4d;
}

.concern-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.concern-card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  box-shadow:0 18px 50px rgba(80,45,20,.09);
  border:1px solid rgba(219,128,60,.18);
  transition:.35s ease;
}

.concern-card:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 70px rgba(80,45,20,.14);
}

.concern-img{
  position:relative;
  aspect-ratio:1 / 1;
  overflow:hidden;
  background:#f7eee8;
}

.concern-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .55s ease;
}

.concern-card:hover .concern-img img{
  transform:scale(1.08);
}

.concern-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 48%,rgba(35,20,12,.5) 100%);
  opacity:.65;
  pointer-events:none;
}

.concern-content{
  padding:24px 24px 28px;
  background:#fff;
}

.concern-content h3{
  margin:0 0 10px;
  font-size:23px;
  color:#2b1d17;
}

.concern-content p{
  margin:0;
  font-size:15.5px;
  line-height:1.65;
  color:#6f5a4d;
}

.concern-cta{
  margin:42px auto 0;
  padding:24px 28px;
  max-width:760px;
  border-radius:24px;
  background:linear-gradient(135deg,#3a2419,#6b3a1f);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  box-shadow:0 20px 50px rgba(70,35,18,.18);
}

.concern-cta p{
  margin:0;
  color:#fff;
  font-size:18px;
  font-weight:700;
}

.concern-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  background:linear-gradient(135deg,#ff974d,#e96724);
  color:#fff;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
  box-shadow:0 12px 26px rgba(233,103,36,.32);
}

    footer {
      padding: 28px 0 42px;
      color: var(--muted);
      font-size: 0.8rem;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      border-top: 1px solid rgba(44,34,28,0.08);
      padding-top: 22px;
      flex-wrap: wrap;
    }

/* Modal
-------------------------------------------------------------- */                 
.reveal-modal-bg { position: fixed; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 100; display: none; top: 0; }

.reveal-modal { 
    color: #333; 
    visibility: hidden; 
    height: auto!important; 
    top: 5%!important; 
    left: 0; 
    right: 0; 
    margin: auto; 
    max-width: 500px;
    margin: 2rem auto;
    padding: 1em;
    background: #FFF; 
    position: fixed; 
    z-index: 101; 
    padding: 10px 15px; 
    overflow-y:auto!important;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
		    border-radius: 5px;
	
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
	   -moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
		   -box-shadow: 0 0 10px rgba(0,0,0,.4); }
		   
.reveal-modal .terms { font-size: 14px; font-weight: bold; line-height: 12px; padding:1em 0 10px 0;}	   
		   
.reveal-modal li { list-style: decimal; font-size: 12px; margin:0 1.5em;}
.reveal-modal .close-reveal-modal { font-size: 22px; color: black; line-height: .5; position: absolute; top: 8px; right: 11px; text-shadow: 0 -1px 1px rbga(0, 0, 0, .6); font-weight: bold; cursor: pointer; } 

/*---whatsapp---*/
.float-whatsapp{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:9999;

    display:flex;
    align-items:center;
    gap:10px;

    background:linear-gradient(135deg,#25D366,#1ebe5d);
    color:#fff;

    padding:14px 18px;
    border-radius:999px;

    text-decoration:none;
    font-weight:700;
    font-size:15px;

    box-shadow:0 10px 30px rgba(37,211,102,.35);

    transition:.3s ease;
    overflow:hidden;
}

.float-whatsapp:hover{
    transform:translateY(-3px) scale(1.02);
    box-shadow:0 14px 35px rgba(37,211,102,.45);
    color: #fff;
}

.float-whatsapp svg{
    width:24px;
    height:24px;
    flex-shrink:0;
}

.wa-text{
    white-space:nowrap;
}

.wa-pulse{
    position:absolute;
    inset:0;
    border-radius:999px;
    background:rgba(255,255,255,.18);
    animation:waPulse 2s infinite;
}

@keyframes waPulse{
    0%{
        transform:scale(1);
        opacity:.8;
    }
    70%{
        transform:scale(1.15);
        opacity:0;
    }
    100%{
        opacity:0;
    }
}

@media(max-width:768px){

    .float-whatsapp{
        right:14px;
        bottom:14px;

        padding:13px 16px;
        font-size:14px;
    }

    .float-whatsapp svg{
        width:22px;
        height:22px;
    }
}

    @media (max-width: 1100px) {
      .hero-grid,
      .split-card,
      .form-wrap,
      .cta-band {
        grid-template-columns: 1fr;
      }

      .cta-points {
        justify-self: start;
        width: 100%;
      }

      .benefit-grid,
      .testimonial-wrap {
        grid-template-columns: repeat(2, 1fr);
      }
        h1, .hero-copy h1.title, h2{
            text-align: center;
        }
        .yn-68{margin: 0 auto; text-align: center; }
        
    h2.title span {
        display: inline-block;
        }
        
    }

@media(max-width:900px){
  .concern-grid{
    grid-template-columns:repeat(2,1fr);
  }
    
    .hero-grid{
        gap:0;
    }
    .field-row{
        gap:0;
        display:flex;
    }
    .field-nationality{ margin-right: 2em;}
    .field-nationality label{ margin: 0;}
    .results-section h3{font-size: 1.2rem;}
}

@media(max-width:600px){
  .concern-section{
    padding:68px 16px;
  }

  .concern-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:18px;
  }

  .concern-card{
    border-radius:24px;
  }

  .concern-content{
    padding:10px;
  }

  .concern-cta{
    flex-direction:column;
    text-align:center;
    padding:24px 20px;
  }

  .concern-cta a{
    width:100%;
  }
}

    @media (max-width: 768px) {
      .section {
        padding: 20px 0;
      }

      .nav-links {
        display: none;
      }

      .stat-row,
      .benefit-grid,
      .testimonial-wrap,
      .field-row,
      .ba-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 20px;
      }

      .floating-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
      }
        
    .ba-slide img{
    aspect-ratio:4/3;
  }

  .ba-nav{
    width:15px;
    height:15px;
    font-size:10px;
  }

  .ba-prev{
    left:10px;
  }

  .ba-next{
    right:10px;
  }

      .split-visual,
      .split-content,
      .form-side,
      .form-card,
      .cta-band {
        padding: 28px 22px;
      }

      .split-visual-box {
        min-height: auto;
      }

      .ba-photo {
        min-height: 260px;
      }

      .btn,
      .navbar .btn-primary {
        width: 100%;
      }

      .btn-row {
        flex-direction: column;
      }
    }

 @media (max-width: 520px) {
     .brand{ width: 150px; margin: 0 auto;}
     .nav-inner{ min-height: 25px;}
     .hero{ padding-bottom: 0;}
     
     h1, h2 {
         text-align: center;
         margin: 0 0 5px 0;
     }
     
     .section-head{
        margin:0 auto 20px;
     }
     .hero-copy h1.title {
    font-size: 16px;
     }
     h2.title {
        font-size: 20px;
    }
     
     .split-visual, .split-content, .form-side, .form-card, .cta-band {
        padding: 0 10px;
    }
     
     .ba-slider-wrap{
         margin-top: 10px;
     }
     
     .visual-note {
         font-size: 0.8rem;
     }
     
     .btn{
         font-size: 80%;
         min-height: 30px;
     }
     
     .results-section h3{
         padding-top: 1em;
         text-align: center;
         line-height: normal;
         font-size: 1rem;
     }
     
     .check-list {
    margin: 10px 0 30px;
     }
     
     .concern-section {
        padding: 5px 10px;
    }
     
     .concern-content h3 {
    font-size: 12px;
         line-height: normal;
         margin: 0;
     }
     
     .concern-content p{
          font-size: 11px;
     }
     
     .check-icon{
    width: 18px;
    height: 18px;
         flex: 0 0 18px;
         font-size: 10px;
     }
     
     .check-item strong{
         font-size: 0.8rem;
         line-height: 1.2;
     }
     
     .check-item span {
    font-size: 0.7rem;
         line-height:0.5px;
     }
     
     footer {
    padding: 10px 0;
         text-align: center;
    font-size: 0.5rem;
     }
     
}
