:root{
  --black:#050505;
  --black2:#0b0b0b;
  --yellow:#fff000;
  --blue:#007ea5;
  --blue2:#00a9d2;
  --white:#fff;
  --gray:#a5a5a5;
  --gray2:#696969;
  --line:rgba(255,255,255,.12);
  --light:#f4f4f1;
  --max:1120px;
  --ease:cubic-bezier(.22,1,.36,1);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:80px;
}

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

body.menu-open{
  overflow:hidden;
}

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

button,
input,
textarea{
  font:inherit;
}

button{
  cursor:pointer;
}

.container{
  width:min(calc(100% - 34px),var(--max));
  margin:auto;
}

.yellow{
  color:var(--yellow);
}

.blue{
  color:var(--blue2);
}

.eyebrow{
  color:var(--yellow);
  font-size:10px;
  font-weight:900;
  letter-spacing:2.4px;
  text-transform:uppercase;
  margin-bottom:14px;
}

h1,h2,h3{
  text-wrap:balance;
}

h2{
  font-size:clamp(34px,5vw,58px);
  line-height:.91;
  letter-spacing:-3px;
  text-transform:uppercase;
  font-weight:1000;
}

/* AMBIENT BACKGROUND */

.ocean-glow{
  position:fixed;
  width:500px;
  height:500px;
  right:-300px;
  top:180px;
  border-radius:50%;
  background:var(--blue);
  opacity:.09;
  filter:blur(90px);
  pointer-events:none;
  z-index:-1;
  animation:floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow{
  from{transform:translateY(-20px) scale(.9)}
  to{transform:translateY(70px) scale(1.1)}
}

/* HEADER */

header{
  position:sticky;
  top:0;
  z-index:9999;
  height:72px;
  background:rgba(5,5,5,.9);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(18px);
}

.nav{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}

.brand{
  display:flex;
  align-items:center;
  gap:11px;
  font-size:12px;
  font-weight:1000;
  letter-spacing:.25px;
  white-space:nowrap;
}

.brand-mark{
  width:34px;
  height:34px;
  position:relative;
  display:grid;
  place-items:center;
  background:var(--yellow);
  color:#000;
  font-size:11px;
  font-weight:1000;
  overflow:hidden;
}

.brand-mark:after{
  content:"";
  position:absolute;
  width:48px;
  height:4px;
  background:var(--blue);
  transform:rotate(-45deg);
  opacity:.9;
}

.brand-mark span{
  position:relative;
  z-index:2;
}

.brand-name{
  line-height:1;
}

.brand-name small{
  display:block;
  color:#777;
  font-size:7px;
  letter-spacing:1.7px;
  margin-top:4px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:25px;
  font-size:11px;
  font-weight:900;
}

.nav-links>a,
.services-trigger{
  color:#aaa;
  transition:.2s ease;
}

.nav-links>a:hover,
.services-trigger:hover{
  color:var(--yellow);
}

.services{
  position:relative;
}

.services-trigger{
  background:none;
  border:0;
  padding:27px 0;
  display:flex;
  align-items:center;
  gap:6px;
  font-size:11px;
  font-weight:900;
}

.service-chevron{
  color:var(--yellow);
  transition:.2s ease;
}

.services.open .service-chevron{
  transform:rotate(180deg);
}

.mega-menu{
  position:absolute;
  top:67px;
  right:-130px;
  width:760px;
  padding:25px;
  background:#080808;
  border:1px solid var(--line);
  box-shadow:0 30px 80px rgba(0,0,0,.7);
  display:none;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.services.open .mega-menu{
  display:grid;
  animation:menuIn .2s var(--ease);
}

@keyframes menuIn{
  from{opacity:0;transform:translateY(-8px)}
  to{opacity:1;transform:translateY(0)}
}

.mega-title{
  color:var(--yellow);
  font-size:9px;
  letter-spacing:1.8px;
  font-weight:1000;
  margin-bottom:9px;
}

.mega-menu a{
  display:block;
  color:#aaa;
  font-size:11px;
  padding:4px 0;
  transition:.18s;
}

.mega-menu a:hover{
  color:#fff;
  transform:translateX(4px);
}

.nav-cta{
  color:#000!important;
  background:var(--yellow);
  padding:10px 14px;
  font-size:9px!important;
  font-weight:1000;
}

.mobile-menu{
  display:none;
  background:none;
  border:0;
  color:#fff;
  font-size:25px;
}

/* HERO */

.hero{
  min-height:650px;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}

.hero:before{
  content:"";
  position:absolute;
  width:620px;
  height:620px;
  right:-250px;
  top:-140px;
  border-radius:50%;
  background:radial-gradient(
    circle,
    rgba(0,169,210,.38) 0%,
    rgba(0,126,165,.18) 35%,
    transparent 70%
  );
  filter:blur(25px);
  animation:heroOcean 9s ease-in-out infinite alternate;
}

.hero:after{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  right:15%;
  bottom:-250px;
  border-radius:50%;
  background:var(--yellow);
  opacity:.07;
  filter:blur(70px);
}

@keyframes heroOcean{
  from{transform:translate(0,0) scale(.92)}
  to{transform:translate(-45px,55px) scale(1.08)}
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  align-items:center;
  gap:60px;
  padding:75px 0;
}

.hero h1{
  max-width:750px;
  font-size:clamp(50px,7.5vw,86px);
  line-height:.87;
  letter-spacing:-5px;
  text-transform:uppercase;
  font-weight:1000;
}

.hero h1 .signature{
  color:var(--yellow);
  position:relative;
  display:inline-block;
}

.hero h1 .signature:after{
  content:"";
  position:absolute;
  left:2px;
  right:0;
  bottom:-5px;
  height:4px;
  background:var(--blue2);
  transform:skewX(-20deg);
}

.hero-copy{
  max-width:610px;
  color:#aaa;
  font-size:15px;
  margin:25px 0;
}

.hero-actions{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
}

.button{
  min-height:45px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:9px;
  letter-spacing:.5px;
  font-weight:1000;
  border:1px solid var(--yellow);
  transition:.25s var(--ease);
}

.button.primary{
  color:#000;
  background:var(--yellow);
}

.button.secondary{
  color:#fff;
  border-color:#333;
}

.button.secondary:hover{
  color:#000;
  background:var(--yellow);
  border-color:var(--yellow);
}

.button:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.hero-note{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:30px;
  color:#666;
  font-size:10px;
}

.hero-note strong{
  color:#fff;
}

.hero-note-line{
  width:35px;
  height:1px;
  background:var(--yellow);
}

/* HERO VISUAL */

.hero-card{
  position:relative;
  border:1px solid rgba(255,255,255,.15);
  background:linear-gradient(
    145deg,
    rgba(255,255,255,.06),
    rgba(0,126,165,.05)
  );
  padding:18px;
  box-shadow:0 35px 90px rgba(0,0,0,.45);
  animation:cardFloat 5s ease-in-out infinite alternate;
}

@keyframes cardFloat{
  from{transform:translateY(5px)}
  to{transform:translateY(-10px)}
}

.hero-browser{
  background:#111;
  border:1px solid #252525;
}

.browser-bar{
  height:32px;
  display:flex;
  align-items:center;
  gap:6px;
  padding:0 11px;
  border-bottom:1px solid #252525;
}

.browser-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#333;
}

.browser-dot:first-child{
  background:var(--yellow);
}

.browser-url{
  margin-left:auto;
  margin-right:auto;
  color:#555;
  font-size:8px;
}

.browser-content{
  min-height:330px;
  padding:30px 25px;
  position:relative;
  overflow:hidden;
}

.browser-content:after{
  content:"";
  position:absolute;
  width:200px;
  height:200px;
  right:-100px;
  top:70px;
  border-radius:50%;
  background:var(--blue);
  opacity:.35;
  filter:blur(30px);
}

.browser-mini-label{
  color:var(--yellow);
  font-size:8px;
  font-weight:1000;
  letter-spacing:1.5px;
}

.browser-content h3{
  margin-top:13px;
  max-width:300px;
  font-size:33px;
  line-height:.9;
  letter-spacing:-2px;
}

.browser-lines{
  margin-top:18px;
  width:70%;
}

.browser-line{
  height:5px;
  background:#242424;
  margin-bottom:7px;
}

.browser-line:nth-child(2){
  width:70%;
}

.browser-line:nth-child(3){
  width:82%;
}

.browser-button{
  margin-top:22px;
  width:90px;
  height:25px;
  background:var(--yellow);
}

.floating-badge{
  position:absolute;
  right:-18px;
  bottom:30px;
  padding:14px 16px;
  background:var(--yellow);
  color:#000;
  font-size:9px;
  font-weight:1000;
  box-shadow:0 15px 35px rgba(0,0,0,.4);
}

.floating-badge span{
  display:block;
  color:#333;
  font-size:7px;
  margin-top:3px;
}

/* TRUST */

.trust-strip{
  background:#090909;
  border-bottom:1px solid var(--line);
}

.trust-inner{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.trust-item{
  padding:19px 15px;
  border-right:1px solid var(--line);
  text-align:center;
}

.trust-item:last-child{
  border:0;
}

.trust-item strong{
  display:block;
  color:#fff;
  font-size:11px;
}

.trust-item span{
  display:block;
  color:#666;
  font-size:8px;
  margin-top:2px;
}

/* SELECTOR */

.selector{
  background:var(--light);
  color:#000;
  padding:78px 0;
}

.selector-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:30px;
}

.dark-label{
  color:#666;
  font-size:9px;
  font-weight:1000;
  letter-spacing:2px;
  margin-bottom:9px;
}

.selector-heading p{
  max-width:400px;
  color:#666;
  font-size:12px;
}

.selector-tabs{
  display:flex;
  flex-wrap:wrap;
  border-bottom:1px solid #d5d5d5;
}

.selector-tab{
  border:0;
  background:none;
  color:#666;
  padding:12px 14px;
  font-size:9px;
  font-weight:1000;
  border-bottom:3px solid transparent;
}

.selector-tab:hover,
.selector-tab.active{
  color:#000;
  border-color:var(--yellow);
}

.selector-panel{
  display:none;
  grid-template-columns:1fr .7fr;
  gap:50px;
  padding-top:30px;
}

.selector-panel.active{
  display:grid;
  animation:fadeUp .4s var(--ease);
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(12px)}
  to{opacity:1;transform:translateY(0)}
}

.selector-panel h3{
  font-size:28px;
  line-height:.95;
  letter-spacing:-1.5px;
  margin-bottom:12px;
}

.selector-panel p{
  color:#666;
  max-width:570px;
  font-size:13px;
}

.check-list{
  list-style:none;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px 18px;
  margin-top:20px;
}

.check-list li{
  border-top:1px solid #ddd;
  padding-top:8px;
  font-size:10px;
  font-weight:900;
}

.check-list li:before{
  content:"✓";
  color:#007ea5;
  margin-right:6px;
}

.selector-aside{
  padding:22px;
  background:#fff;
  border-left:4px solid var(--yellow);
}

.selector-aside strong{
  display:block;
  font-size:9px;
  letter-spacing:1.5px;
  margin-bottom:7px;
}

.selector-aside p{
  font-size:11px;
}

/* SERVICES */

.services-section{
  padding:80px 0;
  background:var(--black);
  border-bottom:1px solid var(--line);
}

.services-header{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:30px;
}

.services-header p{
  color:#777;
  max-width:400px;
  font-size:12px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:9px;
}

.service-card{
  position:relative;
  min-height:205px;
  padding:23px;
  background:#090909;
  border:1px solid var(--line);
  overflow:hidden;
  transition:.3s var(--ease);
}

.service-card:before{
  content:"";
  position:absolute;
  width:170px;
  height:170px;
  right:-100px;
  bottom:-110px;
  border-radius:50%;
  background:var(--blue);
  opacity:.05;
  filter:blur(25px);
  transition:.35s;
}

.service-card:hover{
  transform:translateY(-5px);
  border-color:rgba(255,240,0,.65);
}

.service-card:hover:before{
  opacity:.45;
}

.service-number{
  color:var(--yellow);
  font-size:9px;
  font-weight:1000;
  letter-spacing:1px;
}

.service-card h3{
  margin-top:22px;
  font-size:17px;
  letter-spacing:-.4px;
}

.service-card p{
  color:#777;
  font-size:11px;
  margin-top:8px;
  max-width:290px;
}

.service-card a{
  display:inline-block;
  color:var(--blue2);
  font-size:9px;
  font-weight:1000;
  margin-top:15px;
}

/* PRICING */

.pricing{
  background:#fff;
  color:#000;
  padding:80px 0;
}

.pricing-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:30px;
}

.pricing-heading p{
  color:#666;
  max-width:410px;
  font-size:12px;
}

.price-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border:1px solid #ddd;
}

.price-card{
  min-height:390px;
  padding:27px;
  border-right:1px solid #ddd;
  display:flex;
  flex-direction:column;
  transition:.3s var(--ease);
}

.price-card:last-child{
  border-right:0;
}

.price-card:hover{
  background:#fafafa;
}

.price-card.featured{
  background:var(--yellow);
  border-color:var(--yellow);
}

.price-label{
  font-size:9px;
  letter-spacing:1.6px;
  font-weight:1000;
}

.price{
  font-size:50px;
  font-weight:1000;
  letter-spacing:-3px;
  line-height:.95;
  margin-top:16px;
}

.price small{
  font-size:9px;
  letter-spacing:0;
}

.price-card h3{
  font-size:19px;
  margin-top:12px;
}

.price-card>p{
  color:#666;
  font-size:11px;
  margin-top:7px;
}

.price-card.featured>p{
  color:#222;
}

.price-features{
  list-style:none;
  margin-top:auto;
  padding-top:18px;
  border-top:1px solid rgba(0,0,0,.13);
  margin-bottom:18px;
}

.price-features li{
  font-size:10px;
  padding:3px 0;
}

.price-features li:before{
  content:"—";
  margin-right:6px;
}

.price-button{
  width:max-content;
  background:#000;
  color:#fff;
  padding:11px 14px;
  font-size:9px;
  font-weight:1000;
}

/* LOCAL */

.local{
  position:relative;
  overflow:hidden;
  padding:80px 0;
  background:
    linear-gradient(
      120deg,
      #050505 0%,
      #07151a 45%,
      #050505 100%
    );
}

.local:before{
  content:"";
  position:absolute;
  width:450px;
  height:450px;
  left:-250px;
  top:0;
  border-radius:50%;
  background:var(--blue);
  opacity:.16;
  filter:blur(90px);
}

.local-grid{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.local-copy p{
  color:#888;
  font-size:13px;
  max-width:530px;
  margin-top:16px;
}

.local-areas{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}

.area{
  border:1px solid var(--line);
  padding:15px;
  background:rgba(255,255,255,.025);
  transition:.2s;
}

.area:hover{
  border-color:var(--yellow);
  background:rgba(255,240,0,.04);
  transform:translateX(4px);
}

.area strong{
  display:block;
  font-size:11px;
}

.area span{
  color:#666;
  font-size:8px;
}

/* ABOUT */

.about{
  background:#f4f4f1;
  color:#000;
  padding:80px 0;
}

.about-grid{
  display:grid;
  grid-template-columns:.65fr 1.35fr;
  gap:60px;
  align-items:center;
}

.greg-card{
  min-height:330px;
  background:#080808;
  color:#fff;
  padding:28px;
  position:relative;
  overflow:hidden;
}

.greg-card:after{
  content:"";
  position:absolute;
  width:200px;
  height:200px;
  right:-100px;
  bottom:-80px;
  border-radius:50%;
  background:var(--blue);
  opacity:.35;
  filter:blur(35px);
}

.greg-initial{
  width:65px;
  height:65px;
  display:grid;
  place-items:center;
  background:var(--yellow);
  color:#000;
  font-size:23px;
  font-weight:1000;
  margin-bottom:90px;
}

.greg-card strong{
  font-size:18px;
}

.greg-card span{
  display:block;
  color:#777;
  font-size:9px;
  margin-top:4px;
}

.about-copy .dark-label{
  margin-bottom:9px;
}

.about-copy p{
  color:#666;
  font-size:13px;
  margin-top:15px;
  max-width:650px;
}

.about-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
  margin-top:22px;
}

.about-point{
  border-top:1px solid #ddd;
  padding-top:10px;
}

.about-point strong{
  display:block;
  font-size:10px;
}

.about-point span{
  color:#777;
  font-size:9px;
}

/* DIAGNOSIS */

.diagnosis{
  padding:80px 0;
  background:var(--black);
}

.diagnosis-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:55px;
  align-items:start;
}

.diagnosis-copy p{
  color:#777;
  font-size:12px;
  max-width:420px;
  margin-top:15px;
}

.diagnosis-box{
  border:1px solid var(--line);
  background:#090909;
  padding:25px;
}

.diagnosis-question{
  font-size:15px;
  font-weight:1000;
  margin-bottom:14px;
}

.diagnosis-options{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px;
}

.diagnosis-option{
  text-align:left;
  padding:13px;
  background:#0d0d0d;
  color:#aaa;
  border:1px solid #222;
  font-size:10px;
  font-weight:900;
  transition:.2s;
}

.diagnosis-option:hover,
.diagnosis-option.selected{
  color:#000;
  background:var(--yellow);
  border-color:var(--yellow);
}

.diagnosis-result{
  display:none;
  margin-top:14px;
  padding:18px;
  background:#000;
  border-left:3px solid var(--blue2);
}

.diagnosis-result.show{
  display:block;
  animation:fadeUp .3s var(--ease);
}

.diagnosis-result strong{
  color:var(--yellow);
  font-size:10px;
}

.diagnosis-result p{
  color:#888;
  font-size:10px;
  margin-top:5px;
}

/* FAQ */

.faq{
  background:#fff;
  color:#000;
  padding:80px 0;
}

.faq-grid{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:60px;
}

.faq-intro p{
  color:#666;
  font-size:12px;
  margin-top:15px;
}

.faq-item{
  border-top:1px solid #ddd;
}

.faq-item:last-child{
  border-bottom:1px solid #ddd;
}

.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:17px 0;
  border:0;
  background:none;
  text-align:left;
  font-size:11px;
  font-weight:1000;
}

.faq-plus{
  color:var(--blue);
  font-size:17px;
  transition:.2s;
}

.faq-item.open .faq-plus{
  transform:rotate(45deg);
}

.faq-answer{
  display:grid;
  grid-template-rows:0fr;
  transition:.3s;
}

.faq-answer-inner{
  overflow:hidden;
}

.faq-answer p{
  color:#666;
  font-size:11px;
  padding-bottom:0;
}

.faq-item.open .faq-answer{
  grid-template-rows:1fr;
}

.faq-item.open .faq-answer p{
  padding-bottom:17px;
}

/* CONTACT */

/* =========================================================
   CONTACT
========================================================= */

.contact{
  width:100%;
  padding:90px 0;
  background:
    radial-gradient(
      circle at 85% 40%,
      rgba(0,126,165,.28),
      transparent 38%
    ),
    var(--black);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.contact-grid{
  display:block;
  width:100%;
}

.contact-copy{
  width:100%;
  max-width:1000px;
  margin:0 auto;
  text-align:center;
}

.contact-copy .eyebrow{
  margin-bottom:16px;
}

.contact-copy h2{
  margin:0 auto;
}

.contact-copy > p{
  width:100%;
  max-width:650px;
  margin:20px auto 0;
  color:#888;
  font-size:13px;
  line-height:1.7;
}

/* CONTACT DETAILS */

.contact-details{
  width:100%;
  max-width:1000px;
  margin:45px auto 0;

  display:grid;
  grid-template-columns:repeat(3,1fr);

  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.contact-detail{
  min-height:100px;
  padding:22px 18px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  text-align:center;
  gap:7px;
}

.contact-detail + .contact-detail{
  border-left:1px solid var(--line);
}

.contact-detail strong{
  display:block;
  color:var(--yellow);
  font-size:9px;
  font-weight:1000;
  letter-spacing:1.7px;
}

.contact-detail a,
.contact-detail span{
  display:block;
  color:#aaa;
  font-size:12px;
  line-height:1.4;
}

.contact-detail a{
  transition:.2s ease;
}

.contact-detail a:hover{
  color:var(--yellow);
}

/* CONTACT MOBILE */

@media(max-width:700px){

  .contact{
    padding:65px 0;
  }

  .contact-copy{
    padding:0 8px;
  }

  .contact-copy > p{
    font-size:12px;
  }

  .contact-details{
    grid-template-columns:1fr;
    margin-top:35px;
  }

  .contact-detail{
    min-height:85px;
    padding:20px 12px;
  }

  .contact-detail + .contact-detail{
    border-left:0;
    border-top:1px solid var(--line);
  }

}


.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}

.field{
  margin-bottom:8px;
}

.field label{
  display:block;
  color:#777;
  font-size:8px;
  font-weight:900;
  letter-spacing:1px;
  margin-bottom:5px;
}

.field input,
.field textarea{
  width:100%;
  color:#fff;
  background:#050505;
  border:1px solid #242424;
  outline:none;
  padding:12px;
  font-size:11px;
  transition:.2s;
}

.field textarea{
  min-height:120px;
  resize:vertical;
}

.field input:focus,
.field textarea:focus{
  border-color:var(--yellow);
  box-shadow:0 0 0 1px var(--yellow);
}

.form-submit{
  width:100%;
  border:0;
  background:var(--yellow);
  color:#000;
  padding:14px;
  font-size:9px;
  font-weight:1000;
}

.form-note{
  color:#555;
  text-align:center;
  font-size:8px;
  margin-top:9px;
}

/* FINAL CTA */

.final{
  padding:70px 0;
  background:var(--yellow);
  color:#000;
}

.final-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:35px;
}

.final h2{
  max-width:700px;
}

.final p{
  font-size:12px;
  margin-top:9px;
  max-width:500px;
}

.final-button{
  white-space:nowrap;
  background:#000;
  color:#fff;
  padding:15px 19px;
  font-size:9px;
  font-weight:1000;
}

/* FOOTER */

footer{
  background:#050505;
  padding:40px 0 23px;
}

.footer-top{
  display:flex;
  align-items:start;
  justify-content:space-between;
  gap:30px;
  padding-bottom:25px;
  border-bottom:1px solid var(--line);
}

.footer-copy{
  color:#666;
  font-size:9px;
  margin-top:10px;
}

.footer-links{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#777;
  font-size:9px;
}

.footer-links a:hover{
  color:var(--yellow);
}

.copyright{
  color:#444;
  font-size:8px;
  padding-top:17px;
}

/* REVEAL ANIMATION */

.reveal{
  opacity:0;
  transform:translateY(25px);
  transition:opacity .8s var(--ease),transform .8s var(--ease);
}

.reveal.visible{
  opacity:1;
  transform:none;
}

/* RESPONSIVE */

@media(max-width:900px){

  .mobile-menu{
    display:block;
  }

  .nav-links{
    display:none;
    position:fixed;
    top:72px;
    left:15px;
    right:15px;
    max-height:calc(100vh - 87px);
    overflow:auto;
    background:#080808;
    border:1px solid var(--line);
    padding:8px 14px 15px;
    flex-direction:column;
    align-items:stretch;
    gap:0;
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links>a,
  .services-trigger{
    padding:14px 2px;
    border-bottom:1px solid var(--line);
  }

  .nav-cta{
    margin-top:9px;
    text-align:center;
  }

  .mega-menu{
    position:static;
    width:100%;
    grid-template-columns:1fr 1fr;
    box-shadow:none;
    margin:4px 0;
    padding:16px;
  }

  .hero-grid,
  .local-grid,
  .about-grid,
  .diagnosis-grid,
  .contact-grid,
  .faq-grid{
    grid-template-columns:1fr;
  }

  .hero-grid{
    gap:40px;
  }

  .hero-card{
    max-width:600px;
  }

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

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

  .price-card{
    border-right:0;
    border-bottom:1px solid #ddd;
    min-height:330px;
  }

  .price-card:last-child{
    border-bottom:0;
  }
}

@media(max-width:600px){

  .container{
    width:min(calc(100% - 28px),var(--max));
  }

  header{
    height:64px;
  }

  .brand-name{
    font-size:10px;
  }

  .brand-name small{
    display:none;
  }

  .brand-mark{
    width:31px;
    height:31px;
  }

  .nav-links{
    top:64px;
  }

  .hero{
    min-height:auto;
  }

  .hero-grid{
    padding:65px 0;
  }

  .hero h1{
    font-size:clamp(46px,14vw,67px);
    letter-spacing:-3.8px;
  }

  .hero-copy{
    font-size:13px;
  }

  .hero-card{
    display:none;
  }

  .trust-inner{
    grid-template-columns:1fr 1fr;
  }

  .trust-item{
    border-bottom:1px solid var(--line);
  }

  .selector,
  .services-section,
  .pricing,
  .local,
  .about,
  .diagnosis,
  .faq,
  .contact{
    padding:60px 0;
  }

  .selector-heading,
  .services-header,
  .pricing-heading{
    display:block;
  }

  .selector-heading p,
  .services-header p,
  .pricing-heading p{
    margin-top:13px;
  }

  .selector-panel{
    grid-template-columns:1fr;
    gap:25px;
  }

  .check-list{
    grid-template-columns:1fr;
  }

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

  .local-areas{
    grid-template-columns:1fr 1fr;
  }

  .about-points{
    grid-template-columns:1fr;
  }

  .diagnosis-options{
    grid-template-columns:1fr;
  }

  .form-row{
    grid-template-columns:1fr;
  }

  .final-inner{
    display:block;
  }

  .final-button{
    display:inline-block;
    margin-top:20px;
  }

  .footer-top{
    display:block;
  }

  .footer-links{
    margin-top:20px;
  }
}