    :root{
      --bg: #F5EBE1;
      --text: #121212;
      --muted: rgba(18,18,18,.65);
      --line: rgba(18,18,18,.18);

      --orange: #FF840A;
      --orange2:#F7A65D;        /* footer/orange area */
      --orangeSoft:#FCE2CC;     /* pill bg */
      --card:#FFFFFF;
      --shadow: 0 14px 34px rgba(0,0,0,.12);

      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-sm: 12px;

      --max: 1440px;
      --pad: 64px;
    }

    *{box-sizing:border-box;margin:0;padding:0}
    body{
      font-family:"DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x:hidden;
    }

    /* PAGE CONTAINER */
    .wrap{
		max-width: 100%;
		margin: 0 auto;
		background: var(--bg);
		position: relative;
    }

    /* subtle grain/noise like design */
    .wrap:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:999;
      opacity:.06;
      background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
      mix-blend-mode: overlay;
    }

    /* NAV */
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 8px var(--pad);
      border-bottom: 1.5px solid rgba(18,18,18,.2);
      position:sticky;
      top:0;
      background: rgba(245,235,225,.88);
      backdrop-filter: blur(10px);
      z-index:50;
    }
    .logo{
      font-family:"Overlock",sans-serif;
      font-weight:500;
      font-size:28px;
      letter-spacing:-.5px;
	  width: 100px;
		height: 100px;
    }
	.logo img {
		width: 100%;
	}
	footer.footer .logo-footer {
		width: 150px;
		height: 150px;
		margin-bottom: 20px;
	}
	footer.footer .logo-footer img {
		width: 100%;
	}
    .nav-right{display:flex;align-items:center;gap:40px}
    .links{display:flex;align-items:center;gap:28px}
    .links a{
      font-family:'DM Sans',sans-serif;
      font-weight:600;
      font-size:16px;
      color:var(--text);
      text-decoration:none;
    }
    .dropdown {
	  position: relative;
	}

.drop {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

    .contact{
      font-family:'DM Sans',sans-serif;
      font-weight:600;
      font-size:14px;
      color: var(--orange);
      border:1.5px solid var(--orange);
      padding: 8px 14px;
      border-radius: 12px;
      text-decoration:none;
      background:transparent;
      line-height:1;
    }

    /* HERO */
    .hero{
      position:relative;
      padding: 56px 0;
      overflow:hidden;
    }
    .hero-top{
      max-width: 860px;
      margin: 0 auto;
      text-align:center;
      padding-top: 12px;
    }
    .hero-title{
      font-size:64px;
      line-height:1.05;
      letter-spacing:-1px;
      font-weight:800;
    }
    .hero-actions{
      display:flex;
      justify-content:center;
      gap:14px;
      margin-top: 42px;
      flex-wrap:wrap;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 12px 16px;
      border-radius: 16px;
      font-family:"Inter",sans-serif;
      font-weight:700;
      font-size:18px;
      text-decoration:none;
      line-height:1;
      border:1.5px solid transparent;
      transition:.18s ease;
    }
    .btn-primary{
      background: var(--orange);
      color:#121212;
    }
    .btn-primary:hover{transform: translateY(-1px)}
    .btn-secondary{
      background: rgba(255,255,255,.45);
      border-color: rgba(18,18,18,.35);
      color:#121212;
    }
    .btn-secondary:hover{background: rgba(255,255,255,.6)}
    .btn .dot{
      width:22px;height:22px;
      border-radius:999px;
      background:#121212;
      display:grid;
      place-items:center;
	  transform: rotate(45deg);
    }
    .btn .dot svg{display:block}

    .hero-image{
      margin-top: 28px;
      overflow:hidden;
      height: 560px;
      position:relative;
      background:#ddd;
    }
    .hero-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      object-position:center;
      display:block;
    }
    /* top soft gradient like screenshot */
    .hero-image:before{
      content:"";
      position:absolute;inset:0;
      background: linear-gradient(180deg, rgba(245,235,225,.92) 0%, rgba(245,235,225,.35) 35%, rgba(245,235,225,0) 65%);
      pointer-events:none;
    }

    /* ORANGE WAVE BOOKING STRIP (same as screenshot under hero) */
    .wave-section {
    position: relative;
    background: #f4a34f;
    margin-top: -70px;
    padding: 80px 70px 110px;
    overflow: hidden;
}
.wave-section .inner {
    z-index: 2;
    position: relative;
}
   .wave-section.second {
    margin-top: 00px;

}
    .wave-section .inner{
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 560px;  /* left + right calendar */
  align-items: center;
  gap: 70px;
}
    .wave-left{
      max-width: 520px;
    }
    .wave-left h2{
      font-size: 64px;
      line-height:1.05;
      font-weight:800;
      letter-spacing:-.6px;
      margin-bottom: 14px;
    }
    .wave-left p{
      color: #121212;
      font-size:16px;
      line-height:1.6;
      max-width: 420px;
      margin-bottom: 16px;
	  font-weight:500;
    }
    .tiny-slider{
  margin-top: 46px;
  width: 280px;
}

.tiny-track{
  position: relative;
  height: 140px;
}

.tiny-slide{
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 16px;
  padding: 16px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  opacity: 0;
  transform: translateY(6px);
  transition: .35s ease;
  pointer-events:none;
}

.tiny-slide.is-active{
  opacity: 1;
  transform: translateY(0);
  pointer-events:auto;
}

.tiny-quote{
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  color: #121212;
}

.tiny-user{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top: 12px;
}

.tiny-avatar{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(18,18,18,.2);
  border: 1px solid rgba(255,255,255,.6);
}

.tiny-name{
  font-family:'DM Sans',sans-serif;
  font-weight:500;
  font-size: 12px;
  color: rgba(18,18,18,.75);
}

/* dots under tiny-card (left) */
.tiny-dots{
  display:flex;
  gap: 8px;
  margin-top: 15px;
  padding-left: 6px;
  justify-content: center;
}

.tiny-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.55);
  cursor:pointer;
}

.tiny-dot.is-active{ background:#fff; }

/* responsive */
@media (max-width: 1100px){
  .wave-section .inner{
    grid-template-columns: 1fr;
  }
  .wave-right{
    justify-self: start;
    width: 100%;
    max-width: 560px;
  }
}

    .wave-right{
  justify-self: end; /* push calendar to right */
  width: 560px;
}

    .calendar-card{
      background:#fff;
      border-radius: 18px;
      padding: 18px 18px 12px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(18,18,18,.08);
    }
    .calendar-head{
      display:flex;justify-content:space-between;align-items:flex-start;
      gap: 12px;
      margin-bottom: 10px;
    }
    .calendar-head h4{
      font-size:12px;
      font-family:'DM Sans',sans-serif;
      font-weight:800;
      line-height:1.2;
    }
    .calendar-head span{
      font-family:'DM Sans',sans-serif;
      font-size:11px;
      color: rgba(18,18,18,.6);
      display:block;
      margin-top:4px;
    }
    .cal-controls{
      display:flex;gap:8px;
      color: rgba(18,18,18,.6);
      user-select:none;
    }
    .cal-controls .cbtn{
      width:22px;height:22px;border-radius:999px;
      display:grid;place-items:center;
      border:1px solid rgba(18,18,18,.14);
      font-weight:900;
      font-size:12px;
      background:#fff;
    }
    .dow{
      display:grid;
      grid-template-columns: repeat(7,1fr);
      gap: 6px;
      margin: 10px 0 8px;
      font-family:'DM Sans',sans-serif;
      font-size:10px;
      color: rgba(18,18,18,.55);
      text-align:center;
      font-weight:700;
    }
    .days{
      display:grid;
      grid-template-columns: repeat(7,1fr);
      gap: 6px;
    }
    .day{
      height: 28px;
      border-radius: 999px;
      display:grid;
      place-items:center;
      font-family:'DM Sans',sans-serif;
      font-size:11px;
      font-weight:800;
      color: rgba(18,18,18,.65);
      background: #F2F2F2;
    }
    .day.green{background:#98EB91;color:#0C2A0A}
    .day.muted{background:transparent;color: rgba(18,18,18,.28)}
    .cal-foot{
      margin-top: 10px;
      display:flex;
      gap:10px;
      align-items:center;
      font-family:'DM Sans',sans-serif;
      font-size:10px;
      color: rgba(18,18,18,.55);
    }
    .dotbar{
      margin-top: 18px;
      display:flex;
      justify-content:center;
      gap: 8px;
    }
    .dotbar span{
      width:7px;height:7px;border-radius:99px;background: rgba(255,255,255,.55);
    }
    .dotbar span.active{background:#fff}

    /* big decorative wave at bottom */
    .wave-section:after{
      content:"";
      position:absolute;
      left:0;right:0;bottom:-1px;
      height:60px;
      background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140'%3E%3Cpath fill='%23ffffff' d='M0,80 C220,130 420,20 720,70 C980,112 1140,60 1440,90 L1440,140 L0,140 Z'/%3E%3C/svg%3E") center/cover no-repeat;
    }
    /* subtle swirl pattern in orange block */
	.swirl_ {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
}
    .swirl{
      position:absolute;
      left: 80px;
      top: 40px;
      width: 520px;
      height: 520px;
      opacity:.20;
      pointer-events:none;
      filter: blur(.2px);
      background:
        radial-gradient(circle at 35% 35%, rgba(255,255,255,.35) 0 22%, transparent 23% 100%),
        radial-gradient(circle at 52% 55%, rgba(255,255,255,.22) 0 22%, transparent 23% 100%);
      border-radius: 999px;
      transform: rotate(-12deg);
    }

    /* SECTION: Reality + Cards row */
    .section{
      padding: 70px var(--pad);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap: 32px;
      margin-bottom: 28px;
    }
    .section-head h2 {
    font-size: 48px;
    line-height: 120%;
    font-weight: 700;
}
    .section-head p{
      max-width: 460px;
      color: #000000;
      font-size:16px;
      line-height:1.6;
	  font-weight:500;
      font-family:'Inter',sans-serif;
    }

   
    /* ===== Issues slider (no arrows/dots) ===== */
.cards-slider{
  margin-top: 34px;
  overflow: hidden;
}

.cards-slider:active{ cursor: grabbing; }

.cards-track{
  display: flex;
  gap: 26px;

  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* ✅ same as section padding left */
  padding-right: 0px;   /* ✅ no right space */
}
.cards-track::-webkit-scrollbar{ display:none; }


.stat-card{
  flex: 0 0 360px;      /* was 420px (too big) */
  height: 360px;
  border-radius: 46px;
  padding: 36px 34px;
  position: relative;
  overflow: hidden;

  background: radial-gradient(120% 120% at 0% 0%, #FFD5A8 0%, #FDD3AA 50%, #FDD3AA 100%);
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
}

/* (optional) little cut on right like screenshot */
.cards-slider{
  /* makes last card partially visible */
  mask-image: linear-gradient(to right, #000 92%, transparent 100%);
}
#services.section {
    padding-right: 0;
    background: #fff;
}
#services.section{ padding-right: 0; }
.cards-track{ padding-right: 0; }
.stat-card{ flex: 0 0 320px; }




/* body text */
.stat-card p{
  margin-top: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
  color:#000000;
  max-width: 300px;
  z-index: 1;
    position: relative;
}

/* art bottom-right */
.stat-card .art {
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 230px;
    height: auto;
    pointer-events: none;
    opacity: .95;
}
/* section heading layout like screenshot */
.section-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 40px;
}


/* responsive */
@media (max-width: 900px){
  .stat-card{ flex-basis: 320px; height: 240px; border-radius: 34px; }
  .section-head{flex-direction:column;}
  .section-head h2{font-size: 40px;}
}

    .pill{
      width:max-content;
      padding: 8px 10px;
      border-radius: 999px;
      background: #FFEDDC;
      font-family:'DM Sans',sans-serif;
      font-weight:800;
      font-size:11px;
    }
   
    /* BIG IMAGE + STAT */
    /* ===== FULL WIDTH IMAGE STAT SECTION ===== */
.image-stat{
  width: 100vw;
  margin-left: calc(50% - 50vw); /* escape container */
  background: #F5EFE7;
  position: relative;
  overflow: hidden;
}

/* grain texture */
.image-stat::before{
  content:"";
  position:absolute;
  inset:0;
  opacity: .18;
  pointer-events:none;
  z-index:1;
}

/* white wave bottom */
.image-stat::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-1px;
  width:100%;
  height:120px;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0,70 C240,110 480,40 720,60 C960,80 1200,40 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E")
    bottom center / cover no-repeat;
  z-index:111;
}

/* content wrapper */
.image-stat-wrap{
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* split layout */
.image-stat-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 520px;
}

/* LEFT IMAGE – full bleed */
.image-stat .img{
  height: 700px;
}

.image-stat .img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* RIGHT CONTENT */
.image-stat .copy{
  padding: 80px 80px 80px 60px;
}

.image-stat .eyebrow{
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #777777;
  margin-bottom: 14px;
}

.image-stat h3{
  font-family: "DM Sans", sans-serif;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 40px;
}

.image-stat .btn{
  margin-top: 10px;
}

/* responsive */
@media (max-width: 1024px){
  .image-stat-inner{
    grid-template-columns: 1fr;
  }
  .image-stat .copy{
    padding: 50px 24px;
  }
  .image-stat .img{
    height: 380px;
  }
}
    /* DISCOVER SUPPORT (4 images) */
	.support {
    text-align: center;
    background: #fff;
}
    .support h2{
      font-size: 48px;
      font-weight: 700;
      letter-spacing:-.3px;
      margin-bottom: 65px;
    }
    .support-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }
    .support-card{
      text-align:left;
    }
    .support-card .ph{
      height: 340px;
      overflow:hidden;
      background:#ddd;
      margin-bottom: 10px;
      border:1px solid rgba(18,18,18,.08);
    }
    .support-card .ph img{width:100%;height:100%;object-fit:cover;display:block}
    .support-card .lbl {
    font-family: 'Inter',sans-serif;
    font-weight: 700;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
    .support-card .lbl i {
    font-style: normal;
    width: 35px;
    height: 35px;
    border-radius: 99px;
    border: 1px solid rgba(18,18,18,.2);
    display: grid;
    place-items: center;
    font-size: 20px;
    color: rgba(18,18,18,.6);
    align-items: baseline;
    vertical-align: middle;
}

    /* BENEFITS PILLS */
    .benefits{
      text-align:center;
      padding-top: 40px;
	  background:#fff;
    }
    .benefits h2{
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 50px;
    }
    .benefit-pills{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap: 25px;
      margin: 0 auto;
	  border-radius: 25px;
    }
    .b-pill {
		background: #FFEDE0;
		border: 1px solid rgba(18,18,18,.08);
		padding: 12px 14px;
		border-radius: 40px;
		font-family: 'DM Sans';
		font-size: 24px;
		font-weight: 500;
		color: #000000;
		display: flex;
		align-items: center;
		gap: 15px;
		max-width: 350px;
		text-align: left;
	}
	span.emoji img {
    width: 100%;
}
   .b-pill .emoji {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    <!-- background: rgba(255,255,255,.7); -->
    display: grid;
    place-items: center;
    font-size: 38px;
}
    .benefits .cta{
      margin-top: 40px;
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 16px;
      border: 1.5px solid var(--orange);
      color: var(--orange);
      font-family:'Inter',sans-serif;
      font-weight:600;
      font-size:18px;
      text-decoration:none;
      background: transparent;
    }

    /* ABOUT DOCTOR (split) */
   /* ===== ABOUT BANNER (match design) ===== */
.about-banner{
  width: 100vw;
  margin-left: calc(50% - 50vw); /* full width even if inside container */
  background: #F5EFE7;
  position: relative;
  overflow: hidden;
}

/* grain/noise overlay */
.about-banner::before{
  content:"";
  position:absolute;
  inset:0;
  opacity: .22;
  pointer-events:none;
  z-index: 1;
}

/* wrap */
.about-wrap {
    /* max-width: 1440px; */
    /* margin: 0 auto; */
    position: relative;
    z-index: 2;
    background-position: center;
    background-size: cover;
}

/* layout */
.about-inner{
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 90px 64px;
  position: relative;
}

/* soft fade behind left text for readability */
.about-inner::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width: 62%;
  background: linear-gradient(
    to right,
    rgba(245,239,231,0.95) 0%,
    rgba(245,239,231,0.85) 45%,
    rgba(245,239,231,0.0) 100%
  );
  z-index: 0;
  pointer-events:none;
}

.about-copy{
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.about-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(18,18,18,.55);
    margin-bottom: 14px;
}

.about-title{
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  color:#121212;
  margin-bottom: 28px;
}

.about-quote{
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  color:#121212;
  max-width: 520px;
  margin-bottom: 34px;
}

/* button like outline orange */
.about-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,132,10,.65);
  color: #FF840A;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  width: max-content;
  background: rgba(255,255,255,0.35);
}

.about-btn-icon{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #FF840A;
  color: #121212;
  font-size: 18px;
  line-height: 1;
  color:#fff;
  font-weight: 400;
}

/* right side image */
.about-media{
  position: relative;
  z-index: 2;
  justify-self: end;
  height: 560px;
  width: min(720px, 50vw);
  display:flex;
  align-items:flex-end;
}

.about-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;      /* important for cutout image */
  object-position: right bottom;
  transform: translateX(24px); /* push closer to right edge */
  pointer-events:none;
  user-select:none;
}

/* responsive */
@media (max-width: 1024px){
  .about-inner{
    grid-template-columns: 1fr;
    padding: 60px 24px;
    min-height: auto;
  }
  .about-inner::after{
    width: 100%;
    background: linear-gradient(
      to bottom,
      rgba(245,239,231,.95) 0%,
      rgba(245,239,231,.75) 55%,
      rgba(245,239,231,0) 100%
    );
  }
  .about-title{ font-size: 42px; }
  .about-quote{ font-size: 20px; }
  .about-media {
    width: 100%;
    height: auto;
    justify-self: start;
}
  .about-media img{ transform: none; object-position: center bottom; }
}

    /* STEPS split */
   /* ===== STEPS FULL WIDTH SECTION ===== */
.steps-banner{
  width: 100vw;
  margin-left: calc(50% - 50vw);  /* escape container */
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* bottom orange wave */
.steps-banner::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-1px;
  width:100%;
  height:80px;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23F4A34F' d='M0,70 C240,110 480,40 720,60 C960,80 1200,40 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E")
    bottom center/cover no-repeat;
  z-index: 11;
}

/* wrapper */
.steps-wrap{
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* split layout */
.steps-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  align-items: center;
}

/* left image full height */

.steps-img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* right content area */
.steps-copy{
  padding: 90px 80px;
  background: #ffffff;
}

.steps-copy h3 {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 42px;
    color: #121212;
}

/* rows */
.step-row{
  display:flex;
  align-items:center;
  gap: 0px;
  margin-bottom: 30px;
}

.step-n {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1;
    color: rgba(244,163,79,.75);
    width: 60px;
    flex-shrink: 0;
}

.step-row p{
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color:#121212;
  margin:0;
}

/* responsive */
@media(max-width: 1024px){
  .steps-inner{ grid-template-columns: 1fr; }
  .steps-copy{ padding: 50px 24px; }
  .steps-img{ height: 380px; }
  .steps-copy h3{ font-size: 40px; }
  .step-n{ font-size: 56px; }
}


    /* SECOND BOOK APPOINTMENT (orange wave) */
	.wave-section.second:after {
		display:none;
	   }
	   .wave-section.second {

    padding:80px 70px 80px;
}
    .book-left h2{margin-bottom: 10px}
    .contact-lines {
		margin-top: 40px;
		display: flex;
		flex-direction: column;
		gap: 16px;
		font-family: 'Inter';
		font-size: 18px;
		font-weight: 500;
		color: #121212;
		max-width: 250px;
	}
    .contact-lines span{
      display:flex;gap:10px;align-items:center;
    }

    /* FOOTER */
    .footer{
      background: #f4a34f;
      padding: 70px var(--pad) 36px;
      position:relative;
      overflow:hidden;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 80px;
      position:relative;
      z-index:2;
    }
    .footer h4{
      font-family:'DM Sans';
      font-weight:800;
      font-size:20px;
      margin-bottom: 14px;
    }
    .footer p, .footer a{
      font-family:'Inter';
      font-weight:500;
      font-size:14px;
      line-height:1.7;
      color: #121212;
      text-decoration:none;
      display:block;
	  padding-bottom: 8px;
    }
	.footer a{
      font-size:16px;
    }
	.footer-bottom p {
		display: inline-flex;
		align-items: center;
		/* vertical-align: middle; */
		gap: 5px;
	}
	.footer-bottom a {
		padding-bottom: 0;
		font-size: 14px;
		text-decoration: underline;
	}
	.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-info-footer p i {
    width: 15px;
    height: 12px;
}
    .footer .logo2{
      font-family:"Overlock",sans-serif;
      font-weight:700;
      font-size:40px;
      margin-bottom: 10px;
      color:#121212;
    }
	
    .footer-bottom{
      text-align:center;
      margin-top: 80px;
      font-family:'DM Sans';
      font-weight:500;
      font-size:12px;
      color:#121212;
      position:relative;
      z-index:2;
    }
    .footer-wave{
      position:absolute;
      left:-80px;
      bottom:-210px;
      width: 1600px;
      height: 560px;
      opacity:.10;
      transform: rotate(-6deg);
      pointer-events:none;
      z-index:1;
    }
footer .swirl_ {
    bottom: 0;
}
    /* RESPONSIVE */
    @media (max-width: 1200px){
      :root{ --pad: 28px; }
      .hero-title{font-size:52px}
      .hero-image{height: 480px}
      .wave-right{flex:1}
      .wave-section .inner{flex-direction:column;align-items:flex-start}
      .wave-right{width:100%;max-width: 520px}
      .image-stat-inner{grid-template-columns: 1fr}
      .support-grid{grid-template-columns: repeat(2,1fr)}
      .about-inner,.steps-inner{grid-template-columns: 1fr}
    }
    @media (max-width: 640px){
      .hero-title{font-size:34px}
      .support-grid{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns:1fr;gap:26px}
      .nav-right{gap:16px}
      .links{display:none}
	  .btn { padding: 8px 12px; border-radius: 10px; font-size: 14px;}
	  .hero-actions { margin-top: 20px; }
	      .hero-image { height: 200px;  }
		.wave-left h2 { font-size: 34px; }
		.wave-section { padding: 50px 30px 50px; }
		.wave-section .inner {
			gap: 40px;
			display: flex;
		}
		.calendar-card_ img {
			width: 100%;
		}
		.wave-section:after {
			height: 30px;
		}
		section#services {
			padding: 40px 20px;
		}
		.stat-card .art {
			width: 130px;

		}
		.section-head h2 {
			font-size: 34px;
		}
		.section-head {
			gap: 10px;
		}
		.image-stat h3 {
    font-size: 30px;
    margin-bottom: 10px;
}
.image-stat::after {
    height: 60px;
}
.support h2 {
    font-size: 34px;
    margin-bottom: 30px;
}
section#right {
    padding: 40px 20px;
}
.benefits h2 {
    font-size: 34px;
    margin-bottom: 30px;
}
.b-pill {
    border-radius: 20px;
    font-size: 16px;
}
    .steps-copy h3 {
        font-size: 34px;
		margin-bottom: 30px;
}
.wave-section.second {
    padding: 40px 20px 40px;
}
.footer-bottom {
    margin-top: 40px;
}
.footer {
    padding: 40px var(--pad) 36px;
}
    }