/* ════════════════════════════════════════
   Miss Alita — style.css
   Brand colors: #3abdb5 (teal), #1a2e2d (dark)
════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
   font-family: 'Inter', sans-serif;
   background: #fff;
   color: #1a2e2d;
   overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
   position: relative;
   z-index: 200;
   border-bottom: 1px solid rgba(58, 189, 181, .12);
}

.nav-inner {
   max-width: 1400px;
   margin: 0 auto;
   padding: 18px 60px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: rgba(255, 255, 255, 0.98);
   backdrop-filter: blur(20px);
}

.header-logo {
   width: 150PX;
}

.logo {
   font-family: 'Cormorant Garamond', serif;
   font-size: 18px;
   font-weight: 300;
   letter-spacing: 8px;
   color: #1a2e2d;
   text-decoration: none;
   text-transform: uppercase;
   flex-shrink: 0;
}

.logo span {
   color: #3abdb5;
}

.nav-links {
   display: flex;
   gap: 36px;
   list-style: none;
}

.nav-links a {
   font-size: 14px;
   letter-spacing: 2px;
   color: #000000;
   text-decoration: none;
   text-transform: uppercase;
   transition: color .3s;
}

.nav-links a:hover {
   color: #3abdb5;
}

.nav-cta {
   padding: 9px 22px;
   background: #000000;
   color: #fff;
   font-size: 14px;
   letter-spacing: 2px;
   text-transform: uppercase;
   text-decoration: none;
   transition: background .3s;
   white-space: nowrap;
}

.nav-cta:hover {
   background: #2e9e97;
}

/* ─── HAMBURGER ─── */
.hamburger {
   display: none;
   flex-direction: column;
   justify-content: center;
   gap: 5px;
   width: 40px;
   height: 40px;
   cursor: pointer;
   background: none;
   border: none;
   padding: 4px;
}

.hamburger span {
   display: block;
   width: 24px;
   height: 1.5px;
   background: #1a2e2d;
   transition: all .35s cubic-bezier(.23, 1, .32, 1);
}

.hamburger.open span:nth-child(1) {
   transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
   opacity: 0;
   transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
   transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: #fff;
   z-index: 190;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 40px;
   transform: translateX(100%);
   transition: transform .45s cubic-bezier(.23, 1, .32, 1);
   pointer-events: none;
}

.mobile-menu.open {
   transform: translateX(0);
   pointer-events: all;
}

.mobile-menu a {
   font-family: 'Cormorant Garamond', serif;
   font-size: 36px;
   font-weight: 300;
   color: #1a2e2d;
   text-decoration: none;
   letter-spacing: 4px;
   text-transform: uppercase;
   transition: color .3s;
}

.mobile-menu a:hover {
   color: #3abdb5;
}

.mobile-menu .m-cta {
   padding: 14px 40px;
   background: #3abdb5;
   color: #fff !important;
   font-family: 'Inter', sans-serif;
   font-size: 12px;
   letter-spacing: 3px;
}

.mobile-menu .m-divider {
   width: 40px;
   height: 1px;
   background: rgba(58, 189, 181, .3);
}

/* ─── HERO ─── */
.hero {
   position: relative;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   padding: 80px 40px 80px;
   overflow: hidden;
   min-height: calc(100vh - 72px);
}

.hero-video {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: 0;
}

.hero-video-placeholder {
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, #1a2e2d 0%, #2e9e97 50%, #1a2e2d 100%);
   z-index: 0;
}

.hero-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to bottom, rgba(15, 40, 38, .75) 0%, rgba(15, 40, 38, .55) 60%, rgba(15, 40, 38, .8) 100%);
   z-index: 1;
}

.hero-content {
   position: relative;
   z-index: 2;
   display: flex;
   flex-direction: column;
   align-items: center;
}

.hero-line {
   width: 1px;
   height: 30px;
   background: linear-gradient(to bottom, transparent, rgba(58, 189, 181, .8));
   margin: 0 auto 28px;
}

.hero-sup {
   font-size: 10px;
   letter-spacing: 6px;
   color: rgba(58, 189, 181, .9);
   text-transform: uppercase;
   margin-bottom: 24px;
}

.hero-title {
   font-family: 'Cormorant Garamond', serif;
   font-size: clamp(50px, 8vw, 108px);
   font-weight: 300;
   line-height: .95;
   color: #fff;
   margin-bottom: 24px;
}

.hero-title em {
   font-style: italic;
   color: #3abdb5;
   display: block;
}

.hero-dash {
   width: 50px;
   height: 1px;
   background: #3abdb5;
   margin: 0 auto 20px;
}

.hero-sub {
   font-size: 15px;
   font-weight: 300;
   line-height: 1.9;
   color: rgba(255, 255, 255, .65);
   max-width: 480px;
   margin: 0 auto 36px;
}

.hero-btns {
   display: flex;
   gap: 14px;
   justify-content: center;
   flex-wrap: wrap;
}

.btn1 {
   padding: 14px 36px;
   background: #3abdb5;
   color: #fff;
   font-size: 11px;
   letter-spacing: 3px;
   text-transform: uppercase;
   text-decoration: none;
   transition: all .3s;
}

.btn1:hover {
   background: #2e9e97;
}

.btn2 {
   padding: 14px 36px;
   background: transparent;
   border: 1.5px solid rgba(255, 255, 255, .5);
   color: #fff;
   font-size: 11px;
   letter-spacing: 3px;
   text-transform: uppercase;
   text-decoration: none;
   transition: all .3s;
}

.btn2:hover {
   background: rgba(255, 255, 255, .1);
   border-color: #fff;
}

/* ─── TICKER ─── */
.ticker {
   background: #7DCDC8;
   padding: 16px 0;
   overflow: hidden;
   white-space: nowrap;
   display: flex;
   align-items: center;
}

.ticker-inner {
   display: inline-flex;
   gap: 56px;
   animation: ticker 22s linear infinite;
   align-items: center;
}

.ticker-item {
   font-family: 'Inter', sans-serif;
   font-size: 11px;
   color: #ffffff;
   letter-spacing: 4px;
   text-transform: uppercase;
   display: flex;
   align-items: center;
   gap: 20px;
   line-height: 1;
}

.ticker-dot {
   width: 4px;
   height: 4px;
   border-radius: 50%;
   background: #4d918c;
   flex-shrink: 0;
}

@keyframes ticker {
   from {
      transform: translateX(0)
   }

   to {
      transform: translateX(-50%)
   }
}

/* ─── STATS ─── */
.stats {
   background: #fff;
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   border-bottom: 1px solid #e8f4f3;
}

.stat {
   text-align: center;
   padding: 36px 16px;
   border-left: 1px solid #e8f4f3;
}

.stat:first-child {
   border-left: none;
}

.stat-n {
   font-family: 'Inter', sans-serif;
   font-size: 32px;
   font-weight: 300;
   color: #3abdb5;
   line-height: 1;
}

.stat-l {
   font-size: 10px;
   letter-spacing: 2px;
   color: #8aadaa;
   text-transform: uppercase;
   margin-top: 6px;
}

/* ─── PRODUCTS ─── */
.products {
   padding: 90px 80px;
   background: #f7fafa;
}

.sec-header {
   text-align: center;
   margin-bottom: 52px;
}

.sec-lbl {
   font-size: 14px;
   letter-spacing: 5px;
   color: #3abdb5;
   text-transform: uppercase;
   margin-bottom: 10px;
}

.sec-ttl {
   font-family: 'Cormorant Garamond', serif;
   font-size: clamp(32px, 4vw, 50px);
   font-weight: 300;
   color: #1a2e2d;
}

.sec-ttl em {
   font-style: italic;
   color: #3abdb5;
}

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

.pc {
   background: #fff;
   border: 0.1px solid #3abdb5;
   border-radius: 2px;
   overflow: hidden;
   cursor: pointer;
   position: relative;
}



.pi {
   background: linear-gradient(135deg, #e8f5f4, #cce9e7);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: transform .5s;
   overflow: hidden;
   height: 340px;
}

.pc:hover .pi {
   transform: scale(1.03);
}

.ph {
   text-align: center;
   color: rgba(46, 158, 151, .4);
}

.ph small {
   display: block;
   font-size: 10px;
   letter-spacing: 2px;
   margin-top: 8px;
   text-transform: uppercase;
}

.pinfo {
   padding: 16px 20px;
   background: #fff;
   border-top: 2px solid transparent;
   transition: border-color .3s;
}

.pc:hover .pinfo {
   border-color: #3abdb5;
}

.pcat {
   font-size: 10px;
   letter-spacing: 3px;
   color: #3abdb5;
   text-transform: uppercase;
   margin-bottom: 4px;
}

.pname {
   font-family: 'Cormorant Garamond', serif;
   font-size: 20px;
   color: #1a2e2d;
}

.ptag {
   position: absolute;
   top: 14px;
   left: 14px;
   background: #3abdb5;
   color: #fff;
   font-size: 9px;
   letter-spacing: 2px;
   padding: 4px 10px;
   text-transform: uppercase;
}

.view-row {
   text-align: center;
   margin-top: 40px;
}

.va {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 11px;
   letter-spacing: 3px;
   color: #3abdb5;
   text-decoration: none;
   text-transform: uppercase;
   border-bottom: 1px solid #3abdb5;
   padding-bottom: 3px;
}

/* ─── ABOUT ─── */
.about {
   padding: 90px 80px;
   background: #2d4e4c;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 90px;
   align-items: center;
}

.al {
   font-size: 15px;
   letter-spacing: 5px;
   color: #3abdb5;
   text-transform: uppercase;
   margin-bottom: 12px;
}

.at {
   font-family: 'Cormorant Garamond', serif;
   font-size: clamp(32px, 4vw, 48px);
   font-weight: 300;
   color: #fff;
   line-height: 1.1;
   margin-bottom: 20px;
}

.at em {
   font-style: italic;
   color: #3abdb5;
}

.ad {
   font-size: 14px;
   font-weight: 300;
   line-height: 2;
   color: rgba(255, 255, 255, 0.6);
   margin-bottom: 32px;
}

.af-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px;
}

.af {
   border-top: 1px solid rgba(58, 189, 181, .2);
   padding-top: 16px;
}

.af-n {
   font-family: 'Inter', sans-serif;
   font-size: 26px;
   color: #3abdb5;
}

.af-l {
   font-size: 11px;
   color: rgba(255, 255, 255, 0.6);
   margin-top: 4px;
}

.aframe {
   width: 75%;
   margin: 0 auto;
   aspect-ratio: .88;
   background: rgba(58, 189, 181, .04);
   border: 1px solid rgba(58, 189, 181, .14);
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
}

.aframe::before {
   content: '';
   position: absolute;
   top: 16px;
   right: 16px;
   width: 50px;
   height: 50px;
   border-top: 1px solid rgba(58, 189, 181, .4);
   border-right: 1px solid rgba(58, 189, 181, .4);
}

.aframe::after {
   content: '';
   position: absolute;
   bottom: 16px;
   left: 16px;
   width: 50px;
   height: 50px;
   border-bottom: 1px solid rgba(58, 189, 181, .4);
   border-left: 1px solid rgba(58, 189, 181, .4);
}

.abadge {
   position: absolute;
   bottom: -32px;
   left: -32px;
   background: #3abdb5;
   padding: 16px 22px;
   color: #fff;
}

.abadge-n {
   font-family: 'Inter', sans-serif;
   font-size: 38px;
   font-weight: 300;
}

.abadge-l {
   font-size: 12px;
   letter-spacing: 2px;
   text-transform: uppercase;
   margin-top: 2px;
   opacity: 0.9;
}

/* ─── SERVICES ─── */
.services {
   padding: 90px 80px;
   background: #fff;
}

.sg {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 16px;
   margin-top: 48px;
}

.sc {
   padding: 40px 32px;
   background: #f0fafa;
   border-top: 3px solid #3abdb5;
   transition: all .4s;
}

.sc:hover {
   background: #e5f7f6;
   transform: translateY(-4px);
   box-shadow: 0 12px 40px rgba(58, 189, 181, .1);
}

.si {
   width: 42px;
   height: 42px;
   background: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
   border: 1px solid rgba(58, 189, 181, .2);
}

.st {
   font-family: 'Cormorant Garamond', serif;
   font-size: 22px;
   color: #1a2e2d;
   margin-bottom: 10px;
}

.sd {
   font-size: 13px;
   font-weight: 300;
   line-height: 1.8;
   color: #6b9996;
}

/* ─── CONTACT ─── */
.contact {
   padding: 90px 80px;
   background: #f0fafa;
}

.cg {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   margin-top: 50px;
}

.ct {
   font-family: 'Cormorant Garamond', serif;
   font-size: clamp(28px, 3vw, 40px);
   font-weight: 300;
   color: #1a2e2d;
   line-height: 1.2;
   margin-bottom: 32px;
}

.ct em {
   font-style: italic;
   color: #3abdb5;
}

.ci {
   display: flex;
   flex-direction: column;
   gap: 18px;
}

.citem {
   display: flex;
   gap: 14px;
   align-items: center;
}

.cicon {
   width: 40px;
   height: 40px;
   border: 1.5px solid #3abdb5;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #3abdb5;
   flex-shrink: 0;
}

.ctxt strong {
   display: block;
   font-size: 10px;
   letter-spacing: 2px;
   color: #3abdb5;
   text-transform: uppercase;
   margin-bottom: 2px;
}

.ctxt span {
   font-size: 14px;
   font-weight: 300;
   color: #1a2e2d;
}

.form {
   display: flex;
   flex-direction: column;
   gap: 14px;
}

.fg {
   display: flex;
   flex-direction: column;
   gap: 6px;
}

.fg label {
   font-size: 10px;
   letter-spacing: 2px;
   color: #8aadaa;
   text-transform: uppercase;
}

.fg input,
.fg textarea {
   background: #fff;
   border: 1.5px solid #d8eeed;
   padding: 12px 16px;
   font-family: 'Inter', sans-serif;
   font-size: 14px;
   color: #1a2e2d;
   outline: none;
   transition: border-color .3s;
   resize: none;
}

.fg input:focus,
.fg textarea:focus {
   border-color: #3abdb5;
}

.fg textarea {
   height: 110px;
}

.sbtn {
   padding: 14px 36px;
   background: #3abdb5;
   color: #fff;
   font-family: 'Inter', sans-serif;
   font-size: 11px;
   letter-spacing: 3px;
   text-transform: uppercase;
   border: none;
   cursor: pointer;
   transition: all .3s;
   align-self: flex-start;
}

.sbtn:hover {
   background: #1a2e2d;
}

.ctxt strong {
   display: block;
   font-size: 10px;
   letter-spacing: 2px;
   color: #3abdb5;
   text-transform: uppercase;
   margin-bottom: 4px;
}

.ctxt span {
   font-size: 15px;
   color: #1a2e2d;
   font-weight: 300;
   line-height: 1.5;
}

.ctxt a {
   color: #1a2e2d;
   text-decoration: none;
   transition: color .3s;
}

.ctxt a:hover {
   color: #3abdb5;
}

/* ─── FOOTER ─── */
footer {
   background: #2d4e4c;
   padding: 0;
}

.footer-top {
   padding: 70px 80px 50px;
   display: grid;
   grid-template-columns: 1.4fr 1fr 1fr 1fr;
   gap: 50px;
   border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-brand .fl {
   font-family: 'Cormorant Garamond', serif;
   font-size: 26px;
   letter-spacing: 7px;
   color: #fff;
   text-transform: uppercase;
}

.footer-brand .fl span {
   color: #3abdb5;
}

.footer-brand .flt {
   font-size: 11px;
   letter-spacing: 2px;
   color: rgba(255, 255, 255, 0.6);
   margin-top: 6px;
   margin-bottom: 24px;
}

.footer-brand p {
   font-size: 13px;
   font-weight: 300;
   line-height: 1.9;
   color: rgba(255, 255, 255, 0.6);
   max-width: 260px;
}

.footer-social {
   display: flex;
   gap: 10px;
   margin-top: 24px;
}

.social-btn {
   width: 36px;
   height: 36px;
   border: 1px solid rgba(58, 189, 181, .2);
   display: flex;
   align-items: center;
   justify-content: center;
   color: rgba(255, 255, 255, 0.6);
   text-decoration: none;
   transition: all .3s;
}

.social-btn:hover {
   border-color: #3abdb5;
   color: #3abdb5;
   background: rgba(58, 189, 181, .05);
}

.ftcol h4 {
   font-size: 10px;
   letter-spacing: 3px;
   color: #3abdb5;
   text-transform: uppercase;
   margin-bottom: 20px;
}

.ftcol ul {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.ftcol a {
   font-size: 13px;
   font-weight: 300;
   color: rgba(255, 255, 255, 0.6);
   text-decoration: none;
   transition: color .3s;
   display: flex;
   align-items: center;
   gap: 6px;
}

.ftcol a::before {
   content: '';
   width: 12px;
   height: 1px;
   background: rgba(58, 189, 181, .3);
   flex-shrink: 0;
   transition: width .3s;
}

.ftcol a:hover {
   color: #3abdb5;
}

.ftcol a:hover::before {
   width: 18px;
   background: #3abdb5;
}

.footer-certs {
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.cert-row {
   display: flex;
   align-items: center;
   gap: 10px;
}

.cert-badge {
   padding: 5px 12px;
   border: 1px solid rgba(58, 189, 181, .2);
   font-size: 10px;
   letter-spacing: 2px;
   color: rgba(58, 189, 181, .9);
   text-transform: uppercase;
}

.cert-desc {
   font-size: 11px;
   color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
   padding: 20px 80px;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   gap: 12px;
}

.fc {
   font-size: 11px;
   color: rgba(255, 255, 255, 0.6);
   letter-spacing: 1px;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
   opacity: 0;
   transform: translateY(30px);
   transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
   opacity: 1;
   transform: translateY(0);
}

/* ═══════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════ */
@media(max-width:1024px) {
   .nav-inner {
      padding: 16px 32px;
   }

   .nav-links,
   .nav-cta {
      display: none;
   }

   .hamburger {
      display: flex;
   }

   .hero {
      padding: 60px 32px 60px;
   }

   .stats {
      grid-template-columns: repeat(3, 1fr);
   }

   .stat:nth-child(4) {
      border-left: none;
   }

   .products {
      padding: 70px 32px;
   }

   .pg {
      grid-template-columns: repeat(2, 1fr);
   }



   .pi {
      height: 260px;
   }

   .about {
      padding: 70px 32px;
      grid-template-columns: 1fr;
      gap: 50px;
   }

   .services {
      padding: 70px 32px;
   }

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

   .contact {
      padding: 70px 32px;
   }

   .cg {
      grid-template-columns: 1fr;
      gap: 50px;
   }

   .footer-top {
      padding: 50px 32px 40px;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
   }

   .footer-bottom {
      padding: 18px 32px;
   }
}

/* ═══════════════════════════════
   RESPONSIVE — MOBILE (≤600px)
═══════════════════════════════ */
@media(max-width:600px) {
   .nav-inner {
      padding: 14px 20px;
   }

   .hero {
      padding: 50px 20px 50px;
      min-height: auto;
   }

   .hero-sup {
      font-size: 9px;
      letter-spacing: 4px;
   }

   .hero-sub {
      font-size: 14px;
   }

   .btn1,
   .btn2 {
      padding: 13px 28px;
      font-size: 10px;
      letter-spacing: 2px;
      width: 100%;
      text-align: center;
   }

   .hero-btns {
      flex-direction: column;
      align-items: center;
   }

   .stats {
      grid-template-columns: repeat(2, 1fr);
   }

   .stat:nth-child(5) {
      grid-column: span 2;
      border-left: none;
   }

   .stat-n {
      font-size: 30px;
   }

   .products {
      padding: 60px 16px;
   }

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


   .pi {
      height: 220px;
   }

   .about {
      padding: 60px 20px;
   }

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

   .services {
      padding: 60px 20px;
   }

   .sg {
      grid-template-columns: 1fr;
      gap: 12px;
   }

   .contact {
      padding: 60px 20px;
   }

   .sbtn {
      width: 100%;
      text-align: center;
   }

   .footer-top {
      grid-template-columns: 1fr;
      padding: 40px 20px 30px;
      gap: 28px;
   }

   .footer-brand p {
      max-width: 100%;
   }

   .footer-bottom {
      padding: 16px 20px;
      flex-direction: column;
      text-align: center;
   }

   .mobile-menu a {
      font-size: 28px;
   }
}