/* ============

   Base Styles + Extended

   ============ */

:root{

  --primary: #0056A0;

  --primary-600:#0a55c7;

  --secondary:#00a7ff;

  --bg:#f4f7ff;

  --card:#ffffff;

  --ink:#0f1b2d;

  --muted:#5a6881;

  --ring: rgba(12,99,231,.25);

  --radius: 18px;

  --shadow: 0 15px 40px rgba(6, 32, 77, .12);

  --accent: #E42A24;

  --btn-primary-bg: #0056A0;

  --btn-secondary-bg: #000000;



    --w-collapsed: 58px;          /* visible “tab” width */

    --w-expanded: 240px;          /* slideout width */

    --elevation: 0 8px 24px rgba(0,0,0,.18);

    --blue:#0c4a83;

    --blue-2:#0b3f72;

    --green:#6dbb2f;

    --red:#e0362f;

}



*{box-sizing:border-box}

html,body{height:100%}

body{

  margin:0;

  font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";

  color:var(--ink);

  background:linear-gradient(180deg,#ffffff 0,#f7fbff 600px,#ffffff 1200px);

  line-height:1.6;

}

.container{width:min(1200px, 92vw); margin-inline:auto;}

.max-container{width:min(2400px, 100%); margin-inline:auto;}

h1,h2,h3{font-family:"Bricolage Grotesque", Poppins, system-ui, sans-serif; line-height:1.2; margin:0 0 .35em}

h1{font-size:clamp(28px, 3vw + 16px, 44px); font-weight:800}

h2{font-size:clamp(22px, 2vw + 12px, 32px); font-weight:800}

h3{font-size:clamp(18px, 1.2vw + 12px, 22px); font-weight:700}

p{margin:0 0 1rem; color:var(--muted)}
button {color: #000; background-color: transparent; border: 0px;}
a {color: #000; background-color: transparent; border: 0px; text-decoration: none;}

.grad{background:linear-gradient(90deg, var(--primary), #08c4ff); -webkit-background-clip:text; background-clip:text; color:transparent}

.card{background:var(--card); border-radius:var(--radius); box-shadow:var(--shadow)}

.text-center{text-align: center;}

/* Skip link */

.skip-link{position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;}

.skip-link:focus{left:10px; top:10px; width:auto; height:auto; padding:8px 10px; background:#000; color:#fff; border-radius:8px; z-index:90;}



/* Header/Nav */

/* .site-header{position:sticky; top:0; z-index:50; background:rgba(255,255,255,.84); backdrop-filter:saturate(180%) blur(12px); border-bottom:1px solid rgba(10,40,120,.06)} */

.site-header{position:fixed; width: 100vw; top:0; z-index:50; background:rgba(255,255,255,.0); backdrop-filter:blur(2px); border-bottom:1px solid rgba(10,40,120,.0)}

.nav{display:flex; align-items:center; justify-content:space-between; gap:24px; padding:12px 0}

.brand{display:flex; align-items:center; gap:.5rem; font-weight:800; text-decoration:none; color:var(--ink)}

.brand-mark{display:grid; place-items:center; width:28px; height:28px; border-radius:8px; background:linear-gradient(135deg, #ff5f6d, #ffc371); color:#fff; font-size:14px}

.menu{display:flex; align-items:center; gap:8px}

/* .menu a{color:var(--ink); text-decoration:none; font-weight:600; font-size:14px}

.menu a:hover{color:var(--primary)} */

.menu-toggle{display:none; border:0; background:transparent; font-size:24px}

.header-actions{display:flex; align-items:center; gap:10px}

.theme-toggle{border:0; background:#f0f4ff; width:40px; height:40px; border-radius:10px; cursor:pointer; box-shadow:0 1px 0 rgba(0,0,0,.03) inset;}

.theme-toggle:hover{filter:brightness(.96)}



/* Buttons */

.btn{display:inline-flex; align-items:center; justify-content:center; gap:10px; /* padding:8px 18px; */ padding: 4px 4px 4px 18px; border-radius:999px; font-size: 15px; font-weight:600; text-decoration:none; border:2px solid transparent; cursor:pointer; transition:.15s ease-in-out}

.btn-primary{background:var(--primary); color:#fff}

.btn-primary:hover{background:var(--accent)}

/* .btn-secondary{background:rgba(0,167,255,.12); color:#056aa8; border-color:rgba(0,167,255,.35)}

.btn-secondary:hover{background:rgba(0,167,255,.18)} */

.btn-secondary{background: var(--btn-secondary-bg); color:#fff;}

.btn-secondary:hover{background:var(--accent)}

.btn-outline{border-color:rgba(12,99,231,.35); color:var(--primary); background:transparent}

.btn-outline:hover{background:rgba(12,99,231,.08)}

.btn-block{width:100%}



.btn-primary::after {

  content: "➜";

  color: #0056A0;

  font-size: 14px;

  flex-shrink: 0;               /* don’t let the icon shrink */

  /* font-weight: 900; */

  border-radius: 999px;

  background-color: #fff;

  /* padding: 6px; */

  height: 34px;

  width: 34px;

  display: grid;

  place-items: center;

  justify-items: center;

  transition: transform 0.3s ease;

}

.btn-secondary::after {

  content: "➜";

  color: #000;

  font-size: 14px;

  flex-shrink: 0;               /* don’t let the icon shrink */

  /* font-weight: 900; */

  border-radius: 999px;

  background-color: #fff;

  /* padding: 6px; */

  height: 34px;

  width: 34px;

  display: grid;

  place-items: center;

  justify-items: center;

  transition: transform 0.3s ease;

}



.btn-primary:hover::after, .btn-secondary:hover::after {color: var(--accent);transform: translateX(2px);}



.btn-secondary.btn-header-call::before {

  content: "";

  background: url(icons/phone.svg) no-repeat;

  background-size: 50%;

  background-position: center;

  color: #fff;

  font-size: 14px;

  flex-shrink: 0;               /* don’t let the icon shrink */

  /* font-weight: 900; */

  border-radius: 999px;

  /* padding: 6px; */

  height: 34px;

  width: 34px;

  display: grid;

  place-items: center;

  justify-items: center;

}

.btn-secondary.btn-header-call{

  padding:4px 18px;

}

.btn-secondary.btn-header-call::after {

  content: unset;

}



@keyframes wiggle {

  0%   { transform: translateX(0); }

  25%  { transform: translateX(3px); }

  50%  { transform: translateX(-2px); }

  75%  { transform: translateX(3px); }

  100% { transform: translateX(0); }

}





.hero-form-submit-button{

  padding:12px 18px;

}

.hero-form-submit-button::before, .hero-form-submit-button::after{

  content: unset;

}







/* CTA Buttons */

.cta-row .btn, .text-uppercase {

  text-transform: uppercase;

}



/* Edge buttons */

  /* --- container holding all edge items --- */

  .edge-wrap{

    position: fixed;

    top: 50%;

    right: 0;

    transform: translateY(-50%);

    z-index: 9999;

    display: flex;

    flex-direction: column;

    gap: 12px;

    pointer-events: none; /* items will re-enable */

  }



  /* --- single item --- */

  .edge-item{

    position: relative;

    width: var(--w-collapsed);

    pointer-events: auto;

    /* width: 62px; */

    overflow: visible;

  }



  /* clickable pill (collapsed and expanded) */

  .edge-toggle{

    display: grid;

    grid-template-columns: var(--w-collapsed) 1fr;

    align-items: center;

    width: var(--w-collapsed);

    border-radius: var(--radius) 0 0 var(--radius);

    color: #fff;

    text-decoration: none;

    cursor: pointer;

    box-shadow: var(--elevation);

    overflow: hidden;

    border: 0px;

    /* transition: width .28s ease, background-color .2s ease, transform .06s ease; */

    will-change: width;

    width: var(--w-expanded);                /* full width */

  /* transform: translateX(calc(var(--w-expanded) - var(--w-collapsed))); */

  transition: transform .28s ease, box-shadow .2s ease, background-color .2s ease;         /* animate transform, not width */

  }

  .edge-toggle:active{ transform: translateX(-232px); }



  /* 3) Slide in when hovering the item OR when anything inside has focus

      (inputs in the form, the submit button, etc.) */

.edge-item:hover .edge-toggle,

.edge-item:focus-within .edge-toggle{

  transform: translateX(calc(var(--w-collapsed) - var(--w-expanded)));

}



/* 4) Fade in the content when expanded */

/* .edge-content{ opacity: 0; transition: opacity .18s ease; } */

.edge-item:hover .edge-content,

.edge-item:focus-within .edge-content{

  opacity: 1;

}



  /* icon cell */

  .edge-icon{

    width: var(--w-collapsed);

    height: 56px;

    display: grid;

    place-items: center;

  }

  .edge-icon svg{ width: 22px; height: 22px; fill:#fff; }



  /* sliding content area */

  .edge-content{

    display: grid;

    align-items: center;

    padding: 0 16px 0 6px;

    white-space: nowrap;

    opacity: 0;

    transition: opacity .18s ease;

    /* height: 100%;

    align-content: center; */

  }



  /* colors per item */

  .edge-item.whatsapp .edge-toggle{ background: var(--green); }

  .edge-item.call     .edge-toggle{ background: var(--red); }

  .edge-item.edge-form     .edge-toggle{ background: var(--blue); }



  /* expanded state */

  .edge-item.is-open .edge-toggle{

    width: var(--w-expanded);

    transform: translateX(0);

  }

  .edge-item.is-open .edge-content{ opacity: 1; }

  /* (Optional) ensure nothing clips the slide */

    .edge-wrap, .edge-item{ overflow: visible; }



  /* number text */

  .edge-number{

    /* font: 600 15px/1.2 Poppins,system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; */

    letter-spacing:.2px;

    text-decoration: none;

    color: #fff;

    font: 600 16px/1.2 Poppins;

  }



  /* form panel (blue card) */

  .form-panel{

    width: 100%;

    padding: 16px;

    background: linear-gradient(180deg, var(--blue), var(--blue-2));

    border-radius: 18px;

    display: grid;

    gap: 10px;

  }

  .form-panel input{

    height: 42px;

    border-radius: 21px;

    border: 0;

    outline: none;

    padding: 0 14px;

    background: white;

    color: #000;

    font: 500 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  }

  /* .form-panel input::placeholder{ color: rgba(255,255,255,.8); } */

  /* .form-panel button{

    height: 46px;

    border-radius: 23px;

    border: 0;

    cursor: pointer;

    background: #fff;

    color: var(--blue);

    font: 700 15px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  } */



  /* form content layout inside the pill */

  .edge-form .edge-content{

    padding: 12px 0px;

    white-space: normal; /* allow wrapping inside the form */

  }



  /* accessibility – focus ring */

  .edge-toggle:focus-visible{

    outline: 3px solid rgba(255,255,255,.9);

    outline-offset: -3px;

  }

  .edge-form {
    --w-expanded: min(92vw, 360px);
  }

  /* Mobile tweaks: widen when screen is narrow */

  /* @media (max-width: 480px){

    :root{ --w-expanded: min(92vw, 360px); }

  } */



/* Float CTA */

/* .float-cta{position:fixed; right:8px; top:40%; transform:translateX(50%); writing-mode:vertical-rl; text-orientation:mixed; background:linear-gradient(180deg, var(--primary), #08c4ff); color:white; padding:12px 10px; border-radius:12px 12px 0 0; text-decoration:none; font-weight:800; box-shadow:var(--shadow); z-index:60} */



/* Hero */

.hero{position:relative; padding:min(8vw,70px) 0}

.hero-grid{display:grid; grid-template-columns: 1.2fr .9fr; gap:36px; align-items:center}

.hero-copy .hero-title{font-weight: 600;}

.hero-copy .checklist{list-style:none; padding:0; margin:18px 0 22px}

/* .checklist li{padding-left:30px; position:relative; margin:.45rem 0; color:var(--ink); font-weight:600}

.checklist li:before{content:url('icons/doubletick.svg'); position:absolute; left:0; top:0; color:#21b36b; font-weight:900} */

.checklist li {

  display: inline-flex;                /* let icon + text sit inline */

  align-items: center;          /* vertical align */

  gap: 10px;                    /* space between tick and text */

  border: 1px solid var(--card);

  border-radius: 999px; 

  padding: 6px 10px; 

  background-color: white;

  margin: .45rem 0;

  font-weight: 600;

  color: var(--ink);

}



.checklist li:before {

  content: url('icons/doubletick.svg');

  flex-shrink: 0;               /* don’t let the icon shrink */

  font-weight: 900;

}

.cta-row{display:flex; gap:12px; flex-wrap:wrap}

.center{justify-content:center}

.booking{padding:22px}

.booking h3{margin-bottom:10px}

/* .form label{display:block; font-weight:700; font-size:13px; margin:10px 0}

.form input, .form select{width:100%; padding:12px 14px; border-radius:10px; border:1px solid rgba(5,32,92,.15); background:#fff; outline:none; font:inherit}

.form input:focus, .form select:focus{box-shadow:0 0 0 4px var(--ring); border-color: var(--primary)} */

.form label{display:block; font-weight:700; font-size:13px; margin:14px 0;border: 1px solid #D9D2D2;border-radius: 16px;}

.form label span {    display: block;

    width: 100%;

    border-bottom: 1px solid #D9D2D2;

    padding: 3px 25px;

    font-family: "Lato", sans-serif;

    font-weight: 500;

  }

.form input, .form select{width:100%; padding:12px 25px; border-radius:16px; border:0px solid rgba(5,32,92,.15); background:#EAF6FF; outline:none; font:inherit; border-start-start-radius: 0px;border-start-end-radius: 0px;}

.form input:focus, .form select:focus{box-shadow:0 0 0 4px var(--ring); border-color: var(--primary)}

.form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}

.disclaimer{font-size:12px; color:var(--muted); margin:10px 0 0}

/* .hero-visual{position:absolute; inset:auto 0 -100px auto; right:0; top:-10px; width:48vw; min-height:380px; background-image:url('images/backhurt-girl.png'); background-size:840px auto; background-repeat:no-repeat; background-position: right 0 top -40px; pointer-events:none; opacity:0.6; filter: drop-shadow(0 30px 40px rgba(2,24,64,.25)); z-index: -1;} */

.hero-visual {
    position: absolute;
    inset: auto auto 6px 394px;
    top: 37px;
    width: 39vw;
    background-image: url(images/Veneers-Smile-2.png);
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: -8px -40px 23px -13px white inset;
    z-index: 1;
    background-size: 600px;
}

.top-section{
  background-image: url('https://veneers2.montrealintclinic.com/wp-content/uploads/2021/05/mic2-1.jpg'); 
  box-shadow: 0 0 15px 15px white inset;
  padding-top: 110px;
  overflow: clip;
  background-color: rgba(66, 66, 66, .1); background-blend-mode: darken;
  background-position: center; background-size: cover; 
  background-repeat: no-repeat;
}
.hero{z-index: 11;}
.hero-grid{    
  z-index: 2;
  position: relative;
}

.story-main {
  
}





/* Doctor */

.doctor{padding:0px 0; margin-top: -14px;}

.doctor-grid{display:grid; grid-template-columns:.9fr 1.2fr; gap:40px; align-items:center}

.doc-photo{padding:0; overflow:hidden;border-radius: 48px;}

.doc-figure{height:min(380px, 70vw); border-radius:var(--radius); background-image:url('images/doctor.png'); background-repeat:no-repeat; background-size:1200px auto; background-position: left -90px top -480px; position:relative}

.doc-figure{

    height: min(460px, 70vw);

    border-radius: var(--radius);

    background-image: url(images/b8b5c1202913ab50168355409c416c4d41804d61.png);

    background-repeat: no-repeat;

    background-size: 100% auto;

    background-position: center;

    position: relative;

    margin: 0;

    background-color: rgba(0,0,0,0.4);

    background-blend-mode: color;

}

.doc-figure .play{position:absolute; inset: 45%; width:60px; height:60px; display:grid; place-items:center; background:var(--accent); border-radius:50%; box-shadow:var(--shadow); color:var(--primary); font-weight:900}



/* .doc-figure .play{position:absolute; right:16px; bottom:16px; width:48px; height:48px; display:grid; place-items:center; border-radius:50%; background:rgba(255,255,255,.9); box-shadow:var(--shadow); font-weight:800; color:var(--primary)} */

.doc-copy .bullets{margin:.5rem 0 1rem; padding-left:18px}

.text-baby{font-family: "Oooh Baby"; color: var(--primary);}

.text-accent{color: var(--accent);}



/* Benefits */

.benefits{padding:80px 0; background:linear-gradient(180deg,#f4f9ff, #ffffff)}

.benefit-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:22px}

.benefit{padding:18px; text-align:center; border-radius: 18px;}

.benefit .icon{font-size:26px; width:100%; height:300px; display:grid; place-items:center; margin:0 auto 8px; border-radius:14px; background:linear-gradient(135deg, #ebf3ff, #ffffff); border:1px solid rgba(10,60,160,.08)}

.benefit .icon{}

.benefit h3{margin:.4rem 0 .2rem}



/* Hows */

.hows{padding:80px 0;}

.how-grid{display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px; margin-top:22px}

.how{padding:18px; text-align:centr}

.how .icon{font-size:26px; width:90px; height:90px; display:grid; place-items:center; margin:0 auto 8px; border-radius:14px; background:linear-gradient(135deg, #ebf3ff, #ffffff); border:1px solid rgba(10,60,160,.08)}

.how .icon{background: var(--primary); border-radius: 999px;}

.how .icon .lucide-icon {height: 64px; width: 64px; color: white; stroke-width: 1.1px;}

.how h3{margin:.4rem 0 .2rem}



/* Conditions */

.conditions{padding:80px 0; background:linear-gradient(180deg,#ffffff,#f6fbff)}

.condition-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:16px}

.cond{display:grid; place-items:center; padding:18px}

.cond span{font-size:28px; display:block; margin-bottom:6px}



/* Journey */

.journey{padding:80px 0}

.journey-grid{display:grid; grid-template-columns: 1.1fr 0.9fr; gap:0px; align-items:center}

.journey-grid-steps{display:grid; grid-template-columns: 1fr 1fr; gap:22px; align-items:start}

.journey-visual{height:420px; border-radius:var(--radius); background-image:url('https://framerusercontent.com/images/gpvKrITqJ8ESAV2YjaW6CEEQZE.jpg?scale-down-to=1024'); background-size:auto; background-position: center; box-shadow:var(--shadow)}

.steps{counter-reset:step; list-style:none; padding:0;}

.steps li{position:relative; padding-left:0px; margin:0 0; display: grid; grid-template-columns: 0.8fr 1.2fr;}

.steps li::before{counter-increment:step; content:counter(step); position:absolute; left:8px; top:8px; width:52px; height:52px; display:grid; place-items:center; border-radius:50%; font-weight:800; color:#fff; background:linear-gradient(180deg, var(--primary), var(--primary)); box-shadow:var(--shadow)}

.journey-info{padding-inline: 16px;}

.journey-grid-steps img {border-radius: 18px; height: 200px;}



/* Why */

.why{padding:0px 0; background:linear-gradient(180deg,#e8f3ff 0,#ffffff 55%)}

.why-grid{display:grid; grid-template-columns:1fr 1fr; gap:0px; align-items:center}

.why-card{padding:26px; height: 700px; background:url('images/why-bg.png');

  display: flex;

  flex-direction: column;

    align-items: center;

    justify-content: center;}

.why-visual{height: 700px; border-radius:0; background-image:url('images/family.jpg'); background-size:cover; background-position: center; box-shadow:var(--shadow)}

.choose-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:22px}

.choose{padding:18px; display: grid; grid-auto-flow: column; align-items: baseline;gap: 12px;}

.choose .icon{font-size:26px; width:64px; height:64px; display:grid; place-items:center; margin:10px auto auto; border-radius:14px; background:linear-gradient(135deg, #ebf3ff, #ffffff); border:1px solid rgba(10,60,160,.08)}

.choose .icon{background: var(--primary); border-radius: 999px;}

.choose .icon img{width: 40px; height: 40px;}

.choose-grid-text h3{margin:.4rem 0 .2rem}

.choose-grid-text p{margin:0px}



/* .why-visual{height:360px; border-radius:0; background-image:url('images/why-1.png'); background-size:1200px auto; background-position: right -200px top -1480px; box-shadow:var(--shadow)} */



/* Partners */

.partners{padding-top:80px}

.logo-row{display:grid; grid-template-columns:repeat(4,1fr); gap:30px; align-items:stretch; padding-block: 40px;}

.logo img{object-fit: contain;}

/* .logo{padding:14px; text-align:center; font-weight:800; background:linear-gradient(180deg,#ffffff,#f6f9ff)} */

/* .logo::before{content:''; display:block; height:36px; border-radius:10px; margin-bottom:8px; background:repeating-linear-gradient(45deg, #eaf2ff, #eaf2ff 6px, #ffffff 6px, #ffffff 12px); border:1px solid rgba(10,40,120,.06)} */



/* Pricing Section */

.pricing {

  padding: 80px 0;

  background: linear-gradient(180deg, #ffffff, #f6fbff);

}

.pricing-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;

}

.price-card {

  padding: 28px;

  border-radius: 18px;

  text-align: center;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  display: flex;

  flex-direction: column;

}

.price-card:hover {

  transform: translateY(-6px);

  box-shadow: var(--shadow);

}

.price-card h3 {

  margin-bottom: 8px;

}

.price {

  font-size: 22px;

  font-weight: 400;

  color: var(--primary);

  margin: 12px 0 18px;

}

.price-card .features {

  list-style: none;

  padding: 0;

  margin: 0 0 24px;

  text-align: left;

  flex: auto;

}

.price-card .features li {

  margin: 8px 0;

  padding-left: 20px;

  position: relative;

}

.price-card .features li::before {

  /* content: "✔"; */

  content: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNoZXZyb24tcmlnaHQtaWNvbiBsdWNpZGUtY2hldnJvbi1yaWdodCI+PHBhdGggZD0ibTkgMTggNi02LTYtNiIvPjwvc3ZnPg==');

  position: absolute;

  left: 0;

  color: var(--primary);

  font-weight: bold;

}

.price-card.featured {

  border: 2px solid var(--primary);

  /* background: #fff7f7; */

}



/* Pricing – responsive tweaks */

@media (max-width: 1024px){

  .pricing-grid{ grid-template-columns: repeat(2, 1fr); }

}



@media (max-width: 640px){

  .pricing{ padding: 56px 0; }

  .pricing-grid{ grid-template-columns: 1fr; gap: 16px; }

  .price-card{ padding: 22px; text-align: left; }

  .price{ font-size: 20px; margin: 8px 0 14px; }

  .price-card .btn{ width: 100%; }     /* full-width CTA on mobile */

  .price-card .features{ margin-bottom: 18px; }

}





/* Body Areas */

.areas{padding:80px 0;background-color: var(--primary);}

.areas .section-title{color: #fff;}

.area-grid{display:grid; grid-template-columns:repeat(6,1fr); gap:16px; margin-top:22px}

.area{padding:18px; text-align:center}

.area .icon{font-size:26px; width:90px; height:90px; display:grid; place-items:center; margin:0 auto 8px; border-radius:14px; background:linear-gradient(135deg, #ebf3ff, #ffffff); border:1px solid rgba(10,60,160,.08)}

.area .icon{background: #fff; border-radius: 999px;}

.area h3{margin:.4rem 0 .2rem}

.area p {color: #fff;}



/* Stories */

.stories{padding:80px 0}

.lede{margin-top:10px; margin-bottom:18px}

.story-scroller{display:grid; grid-template-columns:repeat(2,1fr); gap:16px}

.story-controls{display:flex; justify-content:flex-end; gap:8px; margin-bottom:8px}

.slider-btn{border:0; background:#f0f4ff; width:42px; height:42px; border-radius:10px; font-size:20px; cursor:pointer}

.story{padding:0}

.story .thumb{height:clamp(180px, 42vh, 380px); width: 100%; border-radius:26px; background-size:auto; background-repeat: no-repeat; position:relative; background-position: center;overflow: clip;}

.thumb {cursor: pointer;}

.img-fluid {object-fit: cover; width: 100%; height: 100%;}

/* .story .thumb.alt1{background-image:url('images/clients/2.png')} */

/* .story .thumb.alt3{background-position:left -140px top -1940px}

.story .thumb.alt4{background-position:right -240px top -1940px} */

/* .story .thumb.alt2{background-image:url('images/clients/3.png')} */

/* .story .thumb.alt3{background-image:url('images/clients/4.png')} */

.play{position:absolute; inset: 45%; width:80px; height:80px; display:grid; place-items:center; background:var(--accent); border-radius:50%; box-shadow:var(--shadow); color:var(--primary); font-weight:900}

.play{left: 50%;

      top: 50%;

      transform: translate(-50%, -50%);}

.story h3{padding:14px 16px; margin:0}

/* .play{background-image: url("/assets/icons/play_icon.svg");} */



.story-alt{

  display: grid;

  grid-template-columns: 1fr 1fr;

  border: 1px solid #FFA3A3;

  border-radius: 50px;

  /* gap: 30px; */

  align-items: center;

  background-color: #F9EFF7;

}

.story-alt .thumb{height:100%; border-radius:50px 0 0px 50px; background-image:url('images/clients/1.png'); background-size:cover; background-repeat: no-repeat; position:relative; background-position: center;}

.story-alt .thumb.alt1{background-image:url('images/clients/2.png')}

.story-alt .thumb.alt2{background-image:url('images/clients/3.png')}

.story-alt .thumb.alt3{background-image:url('images/clients/4.png')}

.story-alt h3{padding:14px 0px; margin:0}

.story-alt p.star{font-size: 26px; color: #F4C700;}

.story-alt .play{position:absolute; right:12px; bottom:12px; width:60px; height:60px; display:grid; place-items:center; background:var(--accent); border-radius:50%; box-shadow:var(--shadow); color:var(--primary); font-weight:900}

.story-info{padding: 20px;}



/* FAQ */

.faq{padding:80px 0; background: var(--primary); color:#fff}

.faq h2{color:#fff}

.accordion{display:grid; gap:12px; margin-top:12px}

.accordion-item{background:#ffffff; border-radius:14px; overflow:hidden; color:var(--ink)}

.accordion-trigger{width:100%; text-align:left; background:transparent; border:0; padding:18px; font-weight:800; font-size:16px; cursor:pointer; display:flex; align-items:center; justify-content:space-between; color: #000;}

.accordion-trigger::after{content:'+'; font-weight:900; color:#fff; background-color: var(--primary); height: 30px; width: 30px; border-radius: 999px; display: grid; place-items: center;}

.accordion-trigger[aria-expanded="true"]::after{content:'−'}

.accordion-panel{display:grid; grid-template-rows:0fr; transition:grid-template-rows .25s ease}

.accordion-panel > *{overflow:hidden; padding:0 18px 0; margin:0; color:var(--muted)}

.accordion-item.open .accordion-panel{grid-template-rows:1fr}

.accordion-item.open .accordion-panel > *{padding:0 18px 18px}



/* Appointment */

.appointment{padding:20px 0; background-position: center; background-size: auto 100%; background-color: rgba(245,245,245,.15); background-blend-mode: darken;}

.glass-card{background-color: rgba(245, 245, 245, 0.80); box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.10);border-radius: 30px;}

.appointment-card{display:grid; grid-template-columns: 1fr; gap:22px; padding:52px;}

.ap-copy h2, .ap-copy p {color: #000;}

.ap-form .form-row{display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top: 16px;}

.ap-form label{display:block; font-weight:700; font-size:13px}

.ap-form input{width:100%; padding:22px 25px; border-radius:99px; border:2px solid rgba(5,32,92,.15); outline:none}

.ap-form input::placeholder{color: #0b1120;}

/* .ap-form input:focus{box-shadow:0 0 0 4px var(--ring); border-color: var(--primary)} */

.ap-form .full{grid-column:1/-1}

/* .ap-form button{margin-top:8px} */

.stats{display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:18px}

.stat{padding:16px; text-align:center}

.stat strong{display:block; font-size:28px; line-height:1; margin-bottom:4px}



/* Location */

.location{padding:0px 0; background:linear-gradient(180deg,#ffffff,#f7fbff); background-image: ''; background-repeat: no-repeat; background-size: auto;

    background-position: center;

    /* height: 550px; */

  }

.location-grid{display:grid; grid-template-columns:1.2fr .8fr; gap:16px; align-items:stretch}

/* .map{min-height:360px; background: radial-gradient(50% 50% at 30% 40%, rgba(12,99,231,.25), transparent 60%), radial-gradient(50% 50% at 70% 60%, rgba(8,196,255,.25), transparent 70%), url('assets/01-Home.png'); background-size: 50% 50%, 50% 50%, 1200px auto; background-position: 0 0, 100% 100%, left -220px top -1480px; background-repeat:no-repeat} */

.contact-card{padding:22px}

.contact-card a{color:var(--primary); text-decoration:none}



/* Footer */

.site-footer{padding:36px 0; border-top:1px solid rgba(10,40,120,.08); background:#fff}

.site-footer .container{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}

.social a{display:inline-grid; place-items:center; width:36px; height:36px; border-radius:10px; background:#f4f7ff; text-decoration:none; color:#fff; font-weight:700}



/* Back to top */

.back-to-top{position:fixed; right:14px; bottom:14px; width:44px; height:44px; border-radius:50%; border:0; background:var(--primary); color:#fff; font-weight:900; cursor:pointer; box-shadow:var(--shadow); display:none; z-index:60}

.back-to-top.show{display:block}



.stats-row {

  display: grid; grid-template-columns:repeat(3,1fr); align-items: center; justify-content: center; gap: 22px; max-width: 800px;flex-wrap: wrap;

}

.stat-col{padding: 22px; border-left: 1px solid #bbb;}

.stat-count{font-size: 64px; color: var(--primary);}



/* Form modal */

/* Modal base */

.modal{position:fixed; inset:0; display:none; align-items:center; justify-content:center; z-index:1000}

.modal.active{display:flex}

.backdrop{position:absolute; inset:0; background:rgba(0,0,0,.6); backdrop-filter:saturate(80%) blur(2px)}

.modal .dialog{position:relative; width:min(900px, 92vw); border-radius:14px; overflow:hidden; box-shadow:0 12px 40px rgba(0,0,0,.35)}

/* Close button */

.form-close{position:absolute; top:8px; right:10px; border:0; width:40px; height:40px; border-radius:50%;

  font-size:28px; line-height:1; cursor:pointer; background:#ffffff; color:#111; box-shadow:0 2px 10px rgba(0,0,0,.25); z-index: 1;}

.form-close:hover{filter:brightness(.95)}



/* Video play modal */

/* Modal base */

.video-modal{position:fixed; inset:0; display:none; align-items:center; justify-content:center; z-index:1000}

.video-modal.active{display:flex}

.video-backdrop{position:absolute; inset:0; background:rgba(0,0,0,.6); backdrop-filter:saturate(80%) blur(2px)}



/* Dialog */

.video-dialog{position:relative; width:min(900px, 92vw); aspect-ratio:16/9; background:#000; border-radius:14px; overflow:hidden; box-shadow:0 12px 40px rgba(0,0,0,.35)}

.video-frame{width:100%; height:100%}



/* Close button */

.video-close{position:absolute; top:8px; right:10px; border:0; width:40px; height:40px; border-radius:50%;

  font-size:28px; line-height:1; cursor:pointer; background:#ffffff; color:#111; box-shadow:0 2px 10px rgba(0,0,0,.25); z-index: 1;}

.video-close:hover{filter:brightness(.95)}



/* Responsive for very small viewports */

@media (max-width:480px){

  .video-dialog{width:96vw; border-radius:10px}

  .video-close{top:6px; right:6px}

}



/* Optional: make .play focusable look clickable */

.play{cursor:pointer}

.play:focus{outline:2px solid var(--primary); outline-offset:2px}







/* ===== Veneers Before & After Gallery ===== */

.gallery {

  padding: clamp(32px, 6vw, 72px) 0;

}

.gallery .lede {

  margin: 8px auto 24px;

  max-width: 720px;

}

.gallery-grid {

  display: grid;

  grid-template-columns: repeat(12, 1fr);

  gap: clamp(12px, 2vw, 20px);

}

.gallery-item {

  grid-column: span 12;

  position: relative;

  overflow: hidden;

  border-radius: 14px;

  box-shadow: 0 10px 25px rgba(0,0,0,.08);

  background: #fff;

  transition: transform .28s ease, box-shadow .28s ease;

}

.gallery-item:hover {

  transform: translateY(-2px);

  box-shadow: 0 14px 40px rgba(0,0,0,.12);

}

.gallery-item img {

  width: 100%;

  height: auto;

  display: block;

  aspect-ratio: 4 / 4;

  object-fit: cover;

  transition: transform .45s ease;

  cursor: zoom-in;

}

.gallery-item:hover img {

  transform: scale(1.03);

}

.gallery-item figcaption {

  padding: 12px 14px 14px;

  font-size: 0.95rem;

  line-height: 1.45;

  color: #333;

  background: linear-gradient(180deg, rgba(255,255,255,.86), #fff);

  border-top: 1px solid rgba(0,0,0,.06);

}



/* Responsive columns */

@media (min-width: 640px) {

  .gallery-item { grid-column: span 6; }

}

@media (min-width: 1024px) {

  .gallery-item { grid-column: span 4; }

}



/* ===== Lightbox ===== */

.lightbox {

  position: fixed;

  inset: 0;

  background: rgba(0,0,0,.72);

  display: none;

  align-items: center;

  justify-content: center;

  z-index: 1000;

  padding: 24px;

}

.lightbox.is-open { display: flex; }

.lightbox__img {

  max-width: 92vw;

  max-height: 86vh;

  border-radius: 10px;

  box-shadow: 0 20px 60px rgba(0,0,0,.5);

  background: #111;

}

.lightbox__close {

  position: absolute;

  top: 14px;

  right: 14px;

  width: 40px;

  height: 40px;

  border-radius: 50%;

  background: rgba(255,255,255,.12);

  backdrop-filter: blur(4px);

  border: 1px solid rgba(255,255,255,.2);

  color: #fff;

  display: grid;

  place-items: center;

  cursor: pointer;

  font-size: 22px;

  line-height: 0;

}

.lightbox__close:hover { background: rgba(255,255,255,.18); }







/* compare slider */

.compare{padding: clamp(32px, 6vw, 72px) 0;}

.compare-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:clamp(12px,2vw,20px)}

.ba-compare{grid-column:span 12;position:relative;border-radius:14px;overflow:hidden;box-shadow:0 10px 25px rgba(0,0,0,.08);background:#000;aspect-ratio:16/10}

@media(min-width:1024px){.ba-compare{grid-column:span 6}}

.ba-compare__img,.ba-compare__img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}

.ba-compare__after{width:50%;border-right:2px solid rgba(255,255,255,.9);box-shadow:1px 0 0 rgba(0,0,0,.2);overflow:hidden}

.ba-compare__handle{position:absolute;top:0;left:50%;transform:translateX(-50%);height:100%;width:0;pointer-events:none}

.ba-compare__knob{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:42px;height:42px;border-radius:50%;background:#fff;border:1px solid rgba(0,0,0,.08);display:grid;place-items:center;box-shadow:0 8px 24px rgba(0,0,0,.25);pointer-events:auto;cursor:ew-resize}

.ba-compare__label{position:absolute;top:10px;z-index:2;font-size:12px;font-weight:600;letter-spacing:.04em;padding:6px 10px;border-radius:999px;background:rgba(0,0,0,.55);color:#fff}

.ba-compare__label--before{left:10px}.ba-compare__label--after{right:10px}





/* Footer */



    .footer-wrap {

      position: relative;

      /* This div will take the SVG shape via mask */

      background: var(--primary);

      /* Use your SVG as a mask: */

      -webkit-mask: url("images/footer1.svg") no-repeat center / cover;

              mask: url("images/footer1.svg") no-repeat center / cover;



      /* Give it a natural aspect ratio similar to the SVG viewBox (1920x558 ≈ 34.5% height of width) */

      width: 100%;

      aspect-ratio: 1920 /241; /* keeps it responsive without guessing heights */

    }



    /* Content sits on top of the shaped area */

    .footer-content {

      position: absolute;

      inset: 0;                /* fill the shaped box */

      display: flex;

      flex-direction: column;

      align-items: center;

      justify-content: center; /* center in the blue area */

      text-align: center;

      color: #fff;

      padding: 0px;

      /* If your cut-out dips down a lot, bump this top padding to avoid overlap */

      padding-top: min(12vw, 220px);

    }



    .footer-logo {

      height: 50px;

      margin-bottom: 10px;

    }



    .clinic-name {

      font-weight: 700;

      margin-bottom: 8px;

    }



    .copyright {

      font-size: 14px;

      opacity: 0.9;

      margin-bottom: 12px;

    }



    .phone {

      display: inline-flex;

      align-items: center;

      gap: 8px;

      font-size: 16px;

    }



    .footer {

      position: relative;

      background: var(--primary);



      /* Use the SVG path as a mask (works in modern browsers) */

      -webkit-mask: url('data:image/svg+xml;utf8,\
<svg xmlns="http://www.w3.org/2000/svg" viewBox=\'0 0 1920 241\'>\
<path fill=\'%23000\' d=\'M1880 0C1902.09 0 1920 17.9086 1920 40V240C1920 240.552 1919.55 241 1919 241H1C0.447715 241 2.84371e-08 240.552 0 240V40C0 17.9086 17.9086 6.4426e-07 40 0H673.5C699.181 0 720 20.8188 720 46.5V46.5C720 72.1812 740.819 93 766.5 93H1183.5C1209.18 93 1230 72.1812 1230 46.5V46.5C1230 20.8188 1250.82 0 1276.5 0H1880Z\'/>\
</svg>') no-repeat center / 100% 100%;

              mask: url('data:image/svg+xml;utf8,\
<svg xmlns="http://www.w3.org/2000/svg" viewBox=\'0 0 1920 241\'>\
<path fill=\'%23000\' d=\'M1880 0C1902.09 0 1920 17.9086 1920 40V240C1920 240.552 1919.55 241 1919 241H1C0.447715 241 2.84371e-08 240.552 0 240V40C0 17.9086 17.9086 6.4426e-07 40 0H673.5C699.181 0 720 20.8188 720 46.5V46.5C720 72.1812 740.819 93 766.5 93H1183.5C1209.18 93 1230 72.1812 1230 46.5V46.5C1230 20.8188 1250.82 0 1276.5 0H1880Z\'/>\
</svg>') no-repeat center / 100% 100%;



      /* Keep the shape perfectly proportioned */

      width: 100%;

      aspect-ratio: 1920 / 241;



      /* If you want rounded bottom corners too, you can still add border-radius here */

      /* border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; */

    }



    /* Content sits on top of the shaped area */

    .footer__content {

      position: absolute;

      inset: 0;

      display: flex;

      flex-direction: column;

      justify-content: center;

      align-items: center;

      text-align: center;

      color: #fff;

      padding: clamp(16px, 3vw, 32px);

      /* Nudge content down so it doesn't collide with the cut-out dip */

      padding-top: clamp(32px, 8vw, 120px);

      gap: 8px;

    }



    .footer__logo { height: clamp(22px, 16vw, 80px); }

    .footer__title { font-weight: 700; }

    .footer__meta  { font-size: 14px; opacity: .9; }

    .footer__phone { display: inline-flex; align-items: center; gap: 8px;color: #fff; }



    .footer__logo.desktop-show {

      display: flex; place-self: center; position: relative; top: 32px;

    }



.mob-show{display: none;}



/* Dark mode */

body.dark{--bg:#0c1222; --card:#0f162a; --ink:#e8eefc; --muted:#a5b2c8; --shadow: 0 12px 32px rgba(0,0,0,.45); background:linear-gradient(180deg,#0b1120 0, #0f182c 1200px)}

body.dark .site-header{background:rgba(10,16,30,.7); border-color:rgba(255,255,255,.06)}

body.dark .menu a{color:var(--ink)}

body.dark .btn-outline{border-color:rgba(12,99,231,.55)}

body.dark .social a{background:#121c34; color:#d6e2ff}

body.dark .faq{background:linear-gradient(180deg,#0a376f .0%, #0c63e7 100%)}

body.dark .accordion-item{background:#0f162a; color:var(--ink)}

body.dark .accordion-panel > *{color:#a9b8d6}

body.dark .logo{background:linear-gradient(180deg,#0f162a,#0b1120)}

body.dark .map{filter:saturate(.9) contrast(1.05)}

body.dark .float-cta{box-shadow:0 12px 30px rgba(0,0,0,.42)}



/* Responsive */

@media (max-width: 1100px){

  .benefit-grid{grid-template-columns:repeat(2,1fr)}

  .area-grid{grid-template-columns:repeat(3,1fr)}

  .story-scroller{grid-template-columns:repeat(2,1fr)}

  .journey-grid, .why-grid, .doctor-grid, .appointment-card, .hero-grid{grid-template-columns:1fr}

  .journey-grid{gap: 36px;}

  .journey-grid .steps{margin: 0px;}

  .why-card{height: 100%;}

  .hero-visual{display:none}

  .condition-grid{grid-template-columns:repeat(3,1fr)}

  .logo-row{grid-template-columns:repeat(3,1fr)}

  .location-grid{grid-template-columns:1fr}

  .journey-grid-steps{grid-template-columns: 1fr;}

  .steps li{grid-template-columns: 1fr;}

  .journey-info{padding: 8px;}

}

@media (max-width: 860px){

  .menu{display:none}

  .menu-toggle{display:block}

  .ap-form .form-row{grid-template-columns:1fr 1fr}

  .stats{grid-template-columns:repeat(2,1fr)}

}

@media (max-width: 900px){

  .story-scroller{display:flex; gap:16px; overflow:auto; scroll-snap-type:x mandatory; padding-bottom:6px}

  .story{min-width:78%; scroll-snap-align:center}

}

@media (max-width: 560px){

  .form-row{grid-template-columns:1fr}

  .benefit-grid{grid-template-columns:repeat(1,1fr)}

  .area-grid{grid-template-columns:repeat(2,1fr)}

  .story-scroller{display:flex}

  .ap-form .form-row{grid-template-columns:1fr}

  .stats{grid-template-columns:1fr}

  .condition-grid{grid-template-columns:repeat(2,1fr)}

  .logo-row{grid-template-columns:repeat(2,1fr)}

  .choose-grid{grid-template-columns:repeat(1,1fr)}

  .appointment-card{padding:22px;}

  .stats-row{grid-template-columns:repeat(1,1fr)}

  .footer{min-height: 300px; mask: unset; -webkit-mask: unset;}

  .mob-show{display: block;}

  .desktop-show, .footer__logo.desktop-show{display: none;}

  .how-grid{grid-template-columns:repeat(1,1fr)}

  /* .edge-item:hover .edge-toggle,

  .edge-item:focus-within .edge-toggle{

    transform: translateX(-280px);

  } */

  

}





    



    



 