@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root{
  --container:1180px;
  --card:#ffffff;
  --text:#0b2239;
  --muted:rgba(11,34,57,.72);
  --line:rgba(11,34,57,.10);

  --brand:#2f90d6;
  --brand2:#44a8ee;

  --shadowHeader:0 12px 35px rgba(11,34,57,.14);
  --shadowCard:0 22px 55px rgba(0,0,0,.18);

  --radiusHeader: 8px;
  --radiusCard: 8px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: "Inter", sans-serif,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  font-optical-sizing: auto;
  font-style: normal;
  color:var(--text);
  background:transparent;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
svg{display:block}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0px;
}

/* FULL PAGE BACKGROUND */
.page-bg{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background-image:radial-gradient(1200px 700px at 80% 10%, rgba(255, 255, 255, .22), transparent 55%), radial-gradient(900px 700px at 10% 40%, rgba(0, 0, 0, .18), transparent 55%), linear-gradient(90deg, rgb(52 57 60 / 92%) 0%, rgb(138 158 171 / 15%) 45%, rgba(11, 78, 120, .20) 100%), url("https://mcha.pro/images/bglarge.webp");
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

/* HEADER */
.site-header{
  padding:22px 0 0;
  position:relative;
  z-index:10;
}

.header-card{
  background:var(--card);
  border-radius:var(--radiusHeader);
  box-shadow:var(--shadowHeader);
  overflow:hidden;
}

.header-top{
  display:flex;
  align-items:center;
  gap:18px;
  padding:16px 18px;
}

.brand{
  display:flex;
  align-items:center;
  min-width:240px;
}

.brand img{
  width:60%;
  display:block;
}

.header-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:14px;
  margin-top: 1%;
}

.header-contact{
  display:flex;
  align-items:center;
  gap:18px;
  color: rgb(1 13 24 / 86%);
  font-size: 16px;
  white-space:nowrap;
}

.contact-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.contact-item svg{
  width:18px;
  height:18px;
  color:var(--brand);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:0;
  cursor:pointer;
  font-weight:500;
  font-size:13px;
  white-space:nowrap;
}

.btn svg{width:18px;height:18px}

.btn-pill{
  padding:10px 16px;
  border-radius:8px;
  background:linear-gradient(180deg,var(--brand2),var(--brand));
  color:#fff;
  box-shadow:0 12px 24px rgba(47,144,214,.28);
}

/* NAV */
.header-nav{
  display:flex;
  align-items:center;
  gap:14px;
  padding: 0 25px 14px;
  border-top:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
  padding-top:12px;
  flex:1 1 auto;
  min-width:0;
  overflow:auto;
}

.nav-link{
  font-size:13px;
  color:rgba(11,34,57,.86);
  font-weight:600;
  padding:8px 0;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.nav-link:hover{color:rgba(11,34,57,1)}

.caret{
  width:10px;
  height:10px;
  display:inline-block;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg);
  opacity:.6;
  margin-top:-2px;
}

.social{
  display:flex;
  align-items:center;
  gap:10px;
  padding-top:12px;
}

.soc{
  width:34px;
  height:34px;
  border-radius:8px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,var(--brand2),var(--brand));
  box-shadow:0 10px 20px rgba(47,144,214,.22);
  color:#fff;
}

.soc svg{width:16px;height:16px}

/* HERO */
.hero{
  padding:0px 0 0px;
  position:relative;
  z-index:1;
}

.hero-grid{
  display:grid;
  grid-template-columns: minmax(0, 825px) 1fr;
  align-items:center;
  gap:40px;
  min-height:460px;
}

.hero-copy{
  color:#fff;
  width:110%;
}

.hero-copy h1{
  margin:0;
  font-size:68px;
  line-height:1.02;
  letter-spacing:-1.2px;
  font-weight:600;
  text-shadow:0 12px 28px rgba(0,0,0,.25);
  opacity:0;
  transform:translateX(-80px);
  animation:heroSlideIn 1s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay:.15s;
}

.hero-copy p{
  margin:18px 0 0;
  max-width:560px;
  font-size:15px;
  line-height:1.7;
  color: #FFF;
  font-weight:500;
  opacity:0;
  transform:translateX(-80px);
  animation:heroSlideIn 1s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay:.15s;
}

@keyframes heroSlideIn{
  from{
    opacity:0;
    transform:translateX(-80px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

.btn-primary{
  margin-top:22px;
  padding:15px 24px;
  border-radius:12px;
  background:linear-gradient(180deg,var(--brand2),var(--brand));
  color:#fff;
  box-shadow:0 16px 30px rgba(0,0,0,.22);
}

.btn-primary:hover{filter:brightness(1.05)}

/* HERO BOTTOM CARDS */
.hero-bottom{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:24px;
  align-items:stretch;
  margin-top: 10px;
}

.card{
  border-radius:var(--radiusCard);
  box-shadow:var(--shadowCard);
}

.card-appointment{
  background:rgba(255,255,255,.99);
  padding:28px;
}

.card-appointment h3{
  margin:0 0 20px;
  font-size:22px;
  letter-spacing:-.25px;
}

.appt-form{
  display:grid;
  grid-template-columns:1fr 1fr 1fr auto;
  gap:14px;
  align-items:center;
}

.field{
  background:rgba(11,34,57,.06);
  border:1px solid rgba(11,34,57,.08);
  border-radius:12px;
  padding:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.field input{
  width:100%;
  border:0;
  outline:none;
  background:transparent;
  font-size:14px;
  color:rgba(11,34,57,.88);
  font-weight:600;
}

.field input::placeholder{
  color:rgba(11,34,57,.55);
  font-weight:500;
}

.field-date svg{
  width:18px;
  height:18px;
  color:rgba(11,34,57,.55);
}

.btn-book{
  min-width:170px;
  padding:14px 20px;
  border-radius:12px;
  background:linear-gradient(180deg,var(--brand2),var(--brand));
  color:#fff;
  box-shadow:0 14px 26px rgba(47,144,214,.28);
  font-family: 'Inter', sans-serif;
  font-size: 1em;
  font-weight: 400;
}

.btn-book svg{width:16px;height:16px;color:#fff}

.card-consult{
  background:linear-gradient(180deg,var(--brand2),var(--brand));
  color:#fff;
  padding:28px;
  display:flex;
  align-items:center;
  gap:18px;
}

.consult-icon{
  width:64px;
  height:64px;
  border-radius:8px;
  background:rgba(255,255,255,.20);
  display:grid;
  place-items:center;
  flex:0 0 auto;
}

.consult-icon svg{width:28px;height:28px;color:#fff}

.consult-text strong{
  display:block;
  font-size:16px;
  letter-spacing:.2px;
  font-weight:600;
}

.consult-text span{
  display:block;
  margin-top:6px;
  font-size:24px;
  font-weight:600;
  letter-spacing:.4px;
  white-space:nowrap;
}

/* RESPONSIVE */
@media (max-width:1040px){
  .hero-grid{grid-template-columns:1fr}
  .hero{padding:90px 0 80px}
  .hero-bottom{grid-template-columns:1fr}
  .appt-form{grid-template-columns:1fr 1fr}
  .btn-book{grid-column:1/-1}
}

@media (max-width:640px){
  .header-contact{display:none}
  .btn-pill{display:none}
  .hero-copy h1{font-size:44px}
  .appt-form{grid-template-columns:1fr}
  .hero{padding:70px 0 70px}
}

/* PROCESS SECTION */
.process-section{
  padding:35px 0 100px;
}

.section-title{
  font-size:42px;
  font-weight:600;
  color: var(--card);
  letter-spacing:-.5px;
  margin:0 0 30px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.process-card{
  background:#fff;
  padding:40px 32px 38px;
  border-radius:16px;
  box-shadow:0 25px 60px rgba(0,0,0,.08);
  position:relative;
  overflow:hidden; /* this fixes the rounded bottom */
  transition:.25s ease;
}

.process-card::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,var(--brand2),var(--brand));
}

.process-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 70px rgba(0,0,0,.12);
}

.process-icon{
  width:58px;
  height:58px;
  border-radius:14px;
  background:rgba(47,144,214,.08);
  display:grid;
  place-items:center;
  margin-bottom:22px;
}

.process-icon svg{
  width:28px;
  height:28px;
  color:var(--brand);
}

.process-card h3{
  margin:0;
  font-size:20px;
  font-weight:600;
}

.process-sub{
  display:block;
  margin-top:6px;
  font-size:14px;
  color:var(--brand);
  font-weight:600;
}

.process-card p{
  margin:18px 0 0;
  font-size:14px;
  line-height:1.7;
  color:rgba(11,34,57,.75);
}

/* Responsive */
@media (max-width:1100px){
  .process-grid{grid-template-columns:repeat(2,1fr);}
}

@media (max-width:640px){
  .process-grid{grid-template-columns:1fr;}
  .section-title{font-size:32px;}
}

/* SPECIALIZE SECTION */
.specialize-section{
  padding:120px 0;
  background: radial-gradient(1200px 700px at 80% 10%, rgba(255, 255, 255, .22), transparent 55%), radial-gradient(900px 700px at 10% 40%, rgba(0, 0, 0, .18), transparent 55%), linear-gradient(90deg, rgb(255 255 255 / 92%) 0%, rgb(255 255 255 / 98%) 45%, rgb(255 255 255 / 99%) 100%), url(https://mcha.pro/images/bglarge.webp)
}

.specialize-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:start;
}

.specialize-tag{
  display:inline-block;
  color:linear-gradient(180deg,var(--brand2),var(--brand));
  font-weight:700;
  margin-bottom:16px;
}

.specialize-left h2{
  font-size:44px;
  font-weight: 600;
  margin: 30px 0 20px;
  letter-spacing:-.5px;
}

.specialize-left p{
  color: rgb(4 10 16 / 75%);
  line-height:1.7;
  margin:0 0 20px;
  font-size:15px;
}

.specialize-list{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px 30px;
  margin-top:20px;
}

.specialize-list div{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  color:var(--text);
  font-size:14px;
}

.check {
    width: 22px;
    height: 22px;
    border-radius: 16%;
    background: linear-gradient(180deg, var(--brand2), var(--brand));
    position: relative;
}

.check::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
}

/* RIGHT SIDE LAYOUT */
.specialize-right{
  display:grid;
  grid-template-columns: 1fr;
  gap:24px;
}

.image-card{
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 10px 10px rgb(0 0 0 / 7%), 0 0px 30px rgb(0 0 0 / 25%);
}

.image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: grayscale(.2);
}

.image-large{
  grid-column:1 / 3;
  height:320px;
}

.image-tall{
  width: 105%;
}

.info-card{
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.08);
  position:relative;
}

.info-card::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,var(--brand2),var(--brand));
  border-radius:0 0 18px 18px;
}

.info-card h4{
  margin:0;
  font-size:20px;
  font-weight:900;
}

.info-card span{
  display:block;
  margin-top:6px;
  color:var(--brand);
  font-weight:700;
  font-size:14px;
}

.info-card p{
  margin-top:14px;
  font-size:14px;
  color:rgba(11,34,57,.75);
  line-height:1.6;
}

/* Responsive */
@media (max-width:1000px){
  .specialize-grid{
    grid-template-columns:1fr;
  }
  .specialize-right{
    margin-top:40px;
  }
}

@media (max-width:640px){
  .specialize-left h2{
    font-size:32px;
  }
  .specialize-list{
    grid-template-columns:1fr;
  }
}

.hero-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:center;
  gap:60px;
  min-height:480px;
}

.hero-image{
  display:flex;
  justify-content:flex-end;
}

.hero-image img {
    max-width: 86%;
    height: 400px;
    display: block;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 10px 10px rgb(0 0 0 / 40%), 0 0px 30px rgb(0 0 0 / 40%);
    padding: 5px;
    border-radius: 8px;
    filter: grayscale(.3) brightness(1);
}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{
    grid-template-columns:1fr;
    text-align:left;
  }

  .hero-image{
    justify-content:flex-start;
    margin-top:40px;
  }
}

/* FOOTER */
.site-footer{
  background:linear-gradient(180deg, rgba(47,144,214,.95), rgba(22,110,170,.98));
  color:#fff;
  padding:70px 0 36px;
}

.footer-top{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap:70px;
  align-items:start;
}

.footer-brand p{
  margin:18px 0 0;
  max-width:420px;
  color:rgba(255,255,255,.88);
  line-height:1.7;
  font-size:14px;
  font-weight:400;
}

.footer-logo{
  width:70%;
  display:block;
  margin-top: -15px;
  filter:brightness(1) invert(1);
}

.footer-col h4{
  margin:0 0 18px;
  font-size:18px;
  font-weight:500;
  letter-spacing:-.2px;
}

.footer-col a{
  display:block;
  padding:6px 0;
  color:rgba(255,255,255,.88);
  font-size:14px;
  font-weight:400;
}

.footer-col a:hover{
  color:#fff;
}

.footer-divider{
  height:1px;
  background:rgba(255,255,255,.18);
  margin:46px 0 22px;
}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.footer-copy{
  color:rgba(255,255,255,.9);
  font-size:13px;
  font-weight:400;
}

.footer-social{
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-soc{
  width:38px;
  height:38px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.14);
  color:#fff;
}

.footer-soc svg{width:16px;height:16px}

.footer-soc:hover{
  background:rgba(255,255,255,.22);
}

/* Responsive */
@media (max-width: 900px){
  .footer-top{
    grid-template-columns:1fr;
    gap:34px;
  }
}

/* APPOINTMENT PAGE */
.page-light{
  background:#f4f7fb;
}

.appt-page{
  padding:34px 0 90px;
}

.appt-head{
  padding:26px 0 18px;
}

.appt-head h1{
  margin:0;
  font-size:44px;
  font-weight:600;
  letter-spacing:-.6px;
}

.appt-head p{
  margin:10px 0 0;
  color:rgba(11,34,57,.75);
  font-weight:500;
}

.appt-wrap{
  display:grid;
  grid-template-columns: 520px 1fr;
  gap:60px;
  align-items:start;
  padding-top:26px;
}

.appt-card{
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadowCard);
  background:linear-gradient(180deg,var(--brand2),var(--brand));
  color:#fff;
}

.appt-card-top{
  padding:34px 34px 10px;
}

.appt-kicker{
  display:inline-block;
  font-size:12px;
  letter-spacing:.8px;
  font-weight:700;
  opacity:.9;
}

.appt-card h2{
  margin:16px 0 12px;
  font-size:34px;
  line-height:1.12;
  letter-spacing:-.4px;
  font-weight:600;
}

.appt-card p{
  margin:0 0 10px;
  color:rgba(255,255,255,.88);
  font-weight:500;
  line-height:1.7;
  font-size:14px;
}

.appt2-form{
  padding:18px 34px 34px;
}

.appt2-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 14px;
}

.appt2-field{
  display:block;
}

.appt2-field span{
  display:block;
  font-size:12px;
  font-weight:600;
  margin:0 0 8px;
  color:rgba(255,255,255,.9);
}

.appt2-field input,
.appt2-field textarea {
  width:100%;
  border: 1px solid rgb(22 7 7 / 46%);
  background: #FFF;
  color: #000;
  border-radius: 6px;
  padding:12px 12px;
  outline:none;
  font-family:inherit;
  font-weight:500;
}

.appt2-field select{
  width:100%;
  border: 1px solid rgb(22 7 7 / 46%);
  background: #FFF;
  color: #000;
  border-radius: 6px;
  padding:12px 12px;
  outline:none;
  font-family:inherit;
  font-weight:500;
  
  color-scheme: light;
}

.appt2-field select{
  border: 1px solid rgba(255,255,255,.25);
}

.appt2-field select:focus{
  box-shadow: 0 0 0 3px rgba(255,255,255,.15);
}

.appt2-field select option{
  color:var(--text);
}

.appt2-field textarea{
  resize:vertical;
  min-height:120px;
}

.btn-book1 {
    min-width: 100%;
    margin-top: 3%;
    padding: 14px 20px;
    border-radius: 12px;
    background: linear-gradient(180deg, #1f577e, #124162);
    color: #fff;
    box-shadow: 0 14px 26px rgba(47, 144, 214, .28);
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    font-weight: 400;
}

button.btn.btn-book1:hover {
    background: linear-gradient(180deg, #3876a1, #1b4e72);
}

.appt2-field-full{
  margin-top:14px;
}

.appt2-submit{
  width:100%;
  margin-top:14px;
  background:rgba(0,0,0,.08);
  box-shadow:none;
  border:1px solid rgba(255,255,255,.22);
}

.appt2-submit:hover{
  filter:brightness(1.03);
}

/* Right side info */
.appt-info{
  padding-top:6px;
}

.appt-info h2{
  margin:0 0 18px;
  font-size:44px;
  font-weight:600;
  letter-spacing:-.6px;
  line-height:1.08;
}

.appt-callout{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin:18px 0 18px;
}

.appt-callout-bar{
  width:4px;
  height:22px;
  border-radius:3px;
  background:linear-gradient(180deg,var(--brand2),var(--brand));
  flex:0 0 auto;
  margin-top:4px;
}

.appt-callout-text{
  font-size:22px;
  font-weight:600;
  line-height:1.3;
}

.appt-info-p{
  margin:0 0 18px;
  color:rgba(11,34,57,.70);
  font-weight:500;
  line-height:1.7;
  max-width:720px;
}

.appt-bullets{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px 18px;
  margin-top:14px;
}

.appt-bullet{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(11,34,57,.78);
  font-weight:600;
  font-size:13px;
}

.appt-bdot{
  width:18px;
  height:18px;
  border-radius:999px;
  background:#fff;
  box-shadow:0 10px 20px rgba(0,0,0,.10);
  border:2px solid rgba(47,144,214,.25);
  position:relative;
  flex:0 0 auto;
}

.appt-bdot::after{
  content:"";
  position:absolute;
  left:5px;
  top:3px;
  width:6px;
  height:10px;
  border:2px solid var(--brand);
  border-top:0;
  border-left:0;
  transform:rotate(45deg);
}

.appt-actions{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:26px;
}

.appt-more{
  padding:14px 22px;
}

.appt-play{
  width:56px;
  height:56px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  background:rgba(47,144,214,.20);
  display:grid;
  place-items:center;
  position:relative;
}

.appt-play::after{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:999px;
  background:rgba(47,144,214,.10);
}

.appt-play-inner{
  width:40px;
  height:40px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--brand2),var(--brand));
  display:grid;
  place-items:center;
  color:#fff;
  font-size:14px;
  position:relative;
  z-index:1;
  padding-left:2px;
}

@media (max-width:1100px){
  .appt-wrap{
    grid-template-columns:1fr;
    gap:34px;
  }
  .appt-card{
    max-width:640px;
  }
}

@media (max-width:640px){
  .appt-head h1{font-size:34px;}
  .appt-info h2{font-size:32px;}
  .appt2-grid{grid-template-columns:1fr;}
  .appt-bullets{grid-template-columns:1fr;}
  .appt-card-top{padding:26px 22px 10px;}
  .appt2-form{padding:16px 22px 24px;}
}
