/* =========================================================
   IM360 / Imaginary Visions — Clean Style v2.0
   Sections:
   01 Variables / Reset
   02 Base Utilities
   03 Hero
   04 Navigation
   05 About / What We Do
   06 Portfolio
   07 Launch Separator
   08 Services
   09 Trusted By
   10 Contact
   11 Footer
   12 Responsive
========================================================= */

/* 01 Variables / Reset */
:root{
  --bg:#f5f5f5;
  --fg:#222222;
  --white:#ffffff;
  --muted:rgba(34,34,34,.55);
  --accent:#FAAB45;
  --border:rgba(34,34,34,.12);
  --shadow:0 18px 42px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:"Open Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.65;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea{font:inherit}

/* 02 Base Utilities */
.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}
.accent{color:var(--accent)}
.section{padding:80px 0}
.section-title{
  max-width:980px;
  margin:0 auto 46px;
  text-align:center;
  padding:0 20px;
}
.section-title h2{
  margin:0;
  font-family:Montserrat,sans-serif;
  font-size:34px;
  line-height:1;
  font-weight:400;
  letter-spacing:3px;
  color:var(--fg);
}
.border{
  display:block;
  width:100px;
  height:3px;
  background:var(--accent);
  margin:18px auto 24px;
}
.section-title p{
  max-width:760px;
  margin:0 auto;
  font-size:clamp(16px,2vw,21px);
  line-height:1.6;
  color:var(--muted);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  cursor:pointer;
}

/* 03 Hero */
.hero{
  position:relative;
  min-height:100vh;
  height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:var(--white);
  text-align:left;
}
.hero__bg{
    position:absolute;
    inset:0;
    overflow:hidden;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.0) 0%,
      rgba(0,0,0,0.5) 70%,
      rgba(0,0,0,0.99) 90%
    ),
    url("hero.webp") center/cover no-repeat;
}
c
.hero__bg::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;

    background:
        
        linear-gradient(
            90deg,
            rgba(0,0,0,.2) 0%,
            rgba(0,0,0,.34) 0%,
            rgba(0,0,0,.08) 0%,
            rgba(0,0,0,.2) 0%
        ),

        linear-gradient(
            0deg,
            rgba(0,0,0,.2) 0%,
            rgba(0,0,0,.2) 0%,
            rgba(0,0,0,.2) 0%,
            rgba(0,0,0,0) 0%
        );
        
}

.hero__inner{
  position:relative;
  z-index:1;
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:80px 24px 120px;
}
.hero__slider{
  max-width:560px;
  font-family:Montserrat,sans-serif;
  font-weight:400;
  font-size:clamp(42px,4.6vw,64px);
  line-height:1.08;
  letter-spacing:3px;
  text-wrap:balance;
  text-rendering:optimizeLegibility;
}
.hero__line{display:none}
.hero__line.is-active{display:block}
.hero__tags{
  max-width:420px;
  margin:18px 0 12px;
  color:rgba(255,255,255,.86);
  font-family:Montserrat,sans-serif;
  font-size:13px;
  line-height:1.45;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero__project{
  display:inline-flex;
  align-items:center;
  gap:18px;
  margin-top:6px;
}
.hero__tags_project{
  font-family:Montserrat,sans-serif;
  font-size:13px;
  font-weight:500;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
  transition:.25s ease;
}
.hero__border{
  position:relative;
  display:block;
  width:56px;
  height:2px;
  background:var(--accent);
  transition:.25s ease;
}
.hero__border::after{
  content:"";
  position:absolute;
  right:-1px;
  top:50%;
  width:10px;
  height:10px;
  border-top:2px solid var(--accent);
  border-right:2px solid var(--accent);
  transform:translateY(-50%) rotate(45deg);
}
.hero__project:hover .hero__tags_project{color:#fff;letter-spacing:.22em}
.hero__project:hover .hero__border{width:74px}
.hero__bottom{
  position:absolute;
  left:0;
  right:0;
  bottom:70px;
  z-index:2;
  pointer-events:none;
}
.scroll-indicator{
  position:absolute;
  left:42px;
  bottom:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  color:#fff;
  font-family:Montserrat,sans-serif;
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
  pointer-events:auto;
}
.scroll-indicator span{
  writing-mode:vertical-rl;
  transform:rotate(180deg);
}
.scroll-indicator i{
  width:2px;
  height:45px;
  background:var(--accent);
  display:block;
}
/* 04 Navigation */
.nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  background:rgba(255,255,255,.98);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(34,34,34,.08);
  transform:translateY(-110%);
  opacity:0;
  pointer-events:none;
  transition:transform .45s ease,opacity .45s ease;
}
.nav.nav--shown{
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}
.nav__inner{
  max-width:1200px;
  height:60px;
  margin:0 auto;
  padding:0 22px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  position:relative;
}
.nav__menu{display:flex;gap:26px}
.nav__menu a{
  font-family:Montserrat,sans-serif;
  font-size:13px;
  font-weight:400;
  letter-spacing:3px;
  color:rgba(34,34,34,.68);
  transition:color .25s ease;
}
.nav__menu a:hover{color:var(--fg)}
.logo{
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  height:100%;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}
.logo::before{
  content:"";
  width:146px;
  height:100%;
  background:#1f1f1f;
  display:block;
}
.logo img{
  position:absolute;
  top:50%;
  left:50%;
  width:62px;
  height:auto;
  object-fit:contain;
  padding:0;
  transform:translate(-50%,-50%);
  transition:opacity .25s ease,transform .25s ease;
  transform-origin:center;
  animation:nav-logo-breathe 8s ease-in-out infinite;
}
.logo:hover img{
  opacity:.88;
}
@keyframes nav-logo-breathe{
  0%,64%,100%{
    transform:translate(-50%,-50%) rotate(0) scale(1);
  }
  76%{
    transform:translate(-50%,calc(-50% - 2px)) rotate(-1deg) scale(1.025);
  }
  88%{
    transform:translate(-50%,calc(-50% + 1px)) rotate(.7deg) scale(1.01);
  }
}
.nav__toggle{
  display:flex;
  flex-direction:column;
  width:40px;
  height:40px;
  background:transparent;
  border:0;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity:.7;
  margin-left:auto;
}
.nav__toggle span{
  display:block;
  width:20px;
  height:2.5px;
  background:#555;
  margin:3px 0;
  transition:transform .25s ease,opacity .25s ease;
}
.nav__toggle.is-active span:nth-child(1){transform:translateY(8.5px) rotate(45deg)}
.nav__toggle.is-active span:nth-child(2){opacity:0}
.nav__toggle.is-active span:nth-child(3){transform:translateY(-8.5px) rotate(-45deg)}
.nav__mobile{
  display:none;
  position:fixed;
  top:60px;
  right:16px;
  width:160px;
  flex-direction:column;
  background:#f5f5f5;
  border:1px solid rgba(34,34,34,.10);
  border-radius:0 0 14px 14px;
  padding:8px 0 12px;
  box-shadow:0 18px 40px rgba(0,0,0,.16);
  z-index:99999;
}
.nav__mobile.is-open{display:flex}
.nav__mobile a{
  display:block;
  padding:13px 22px;
  font-family:Montserrat,sans-serif;
  font-size:13px;
  letter-spacing:2px;
  color:rgba(34,34,34,.72);
  border-top:1px solid rgba(34,34,34,.05);
}
.nav__mobile a:hover{background:rgba(34,34,34,.03);color:var(--fg)}

/* 05 About / What We Do */
.section--newave{
  position:relative;
  overflow:hidden;
  padding:0;
  background:#f3f3f3;
  border-top:1px solid rgba(34,34,34,.08);
  border-bottom:1px solid rgba(34,34,34,.08);
}

.about-main{
  min-height:68vh;
  display:flex;
  align-items:center;
  padding:110px 0 95px;
  background:#f3f3f3;
}

.about-main__grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:90px;
  align-items:center;
}

.about-intro{
  text-align:left;
}

.about-intro__brand{
  margin:0;
  font-family:Montserrat,sans-serif;
  font-weight:700;
  font-size:clamp(34px,3.8vw,52px);
  line-height:1;
  letter-spacing:-1px;
  color:#222;
}

.about-intro__line{
  display:block;
  width:120px;
  height:3px;
  background:var(--accent);
  margin:28px 0 30px;
}

.about-intro__tagline{
  max-width:380px;
  margin:0;
  font-size:clamp(18px,1.8vw,24px);
  line-height:1.55;
  color:rgba(34,34,34,.72);
}

.about-copy{
  text-align:left;
}

.about-copy__label{
  display:inline-block;
  margin-bottom:20px;
  font-family:Montserrat,sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:5px;
  text-transform:uppercase;
  color:var(--accent);
}

.about-copy__title{
  margin:0 0 28px;
  font-family:Montserrat,sans-serif;
  font-size:clamp(48px,5vw,72px);
  font-weight:700;
  line-height:1.04;
  letter-spacing:-2px;
  color:#222;
}

.about-copy__text{
  max-width:680px;
  margin:0;
  font-size:clamp(17px,1.5vw,21px);
  line-height:1.75;
  color:rgba(34,34,34,.68);
}

.about-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:42px;
  max-width:520px;
}

.about-stats div{
  padding-top:20px;
  border-top:1px solid rgba(34,34,34,.12);
}

.about-stats strong{
  display:block;
  font-family:Montserrat,sans-serif;
  font-size:34px;
  line-height:1;
  color:#111;
}

.about-stats span{
  display:block;
  margin-top:8px;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(34,34,34,.55);
}

@media (max-width:900px){
  .about-main{
    min-height:auto;
    padding:90px 0 75px;
  }

  .about-main__grid{
    grid-template-columns:1fr;
    gap:54px;
  }

  .about-intro,
  .about-copy{
    text-align:center;
  }

  .about-intro__line{
    margin-left:auto;
    margin-right:auto;
  }

  .about-intro__tagline,
  .about-copy__text,
  .about-stats{
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width:640px){
  .about-main{
    padding:76px 0 60px;
  }

  .about-main__grid{
    gap:44px;
  }

  .about-intro__brand{
    font-size:34px;
  }

  .about-copy__title{
    font-size:40px;
    letter-spacing:-1px;
  }

  .about-copy__text{
    font-size:16px;
  }

  .about-stats{
    grid-template-columns:1fr;
    gap:16px;
    margin-top:34px;
  }

  .about-stats div{
    padding-top:16px;
  }
}

/* 06 Portfolio */
#portfolio.section{
  padding:110px 0 0;
  background:var(--bg);
  border-top:1px solid rgba(34,34,34,.08);
}
#portfolio .container{max-width:100%;padding:0}
.filters{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin:0 0 40px;
  padding:0 20px;
}
.chip{
  border:0;
  border-radius:3px;
  padding:11px 16px;
  background:#e7e7e7;
  color:rgba(34,34,34,.82);
  font-family:Montserrat,sans-serif;
  font-size:11px;
  font-weight:500;
  letter-spacing:.03em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .2s ease,color .2s ease;
}
.chip:hover{background:#ddd}
.chip.is-active{background:var(--accent);color:#fff}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  width:100%;
}
.tile{
  position:relative;
  display:block;
  overflow:hidden;
  background:#000;
}
.tile img{
  width:100%;
  height:320px;
  object-fit:cover;
  opacity:.96;
  transform:scale(1.02);
  transition:transform .45s ease,opacity .3s ease;
}
.tile:hover img{transform:scale(1.06);opacity:1}
.tile__overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:18px;
  background:linear-gradient(to top,rgba(0,0,0,.58),rgba(0,0,0,.18),transparent);
  opacity:0;
  transition:opacity .25s ease;
}
.tile:hover .tile__overlay{opacity:1}
.tile__overlay h4{
  margin:0;
  font-family:Montserrat,sans-serif;
  font-size:15px;
  font-weight:600;
  color:#fff;
}
.tile__overlay p{
  margin:4px 0 0;
  font-size:12px;
  line-height:1.45;
  color:rgba(255,255,255,.78);
}

/* 07 Launch Separator */
.launch-separator{
  background:var(--accent);
  padding:90px 24px;
  text-align:center;
  color:#fff;
}
.launch-separator__inner{max-width:980px;margin:0 auto}
.launch-separator__line{
  width:160px;
  height:2px;
  background:rgba(255,255,255,.75);
  margin:0 auto;
}
.launch-separator h2{
  margin:34px 0 26px;
  font-family:Montserrat,sans-serif;
  font-size:48px;
  line-height:1.25;
  font-weight:300;
  letter-spacing:10px;
  text-transform:uppercase;
}
.launch-separator h2 span{display:block}
.launch-separator p{
  max-width:760px;
  margin:0 auto 34px;
  font-size:21px;
  line-height:1.7;
  font-weight:300;
  color:rgba(255,255,255,.92);
}

/* 08 Services */
.services-head{
  max-width:760px;
  margin:0 auto 42px;
  text-align:center;
}

.services-head span,
.service-label{
  display:inline-block;
  margin-bottom:14px;
  font-size:13px;
  letter-spacing:5px;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:700;
}

.services-head h3{
  margin:0;
  font-family:Montserrat,sans-serif;
  font-size:clamp(34px,5vw,56px);
  line-height:1.05;
  font-weight:700;
  letter-spacing:6px;
  color:#222;
}

.services-head p{
  max-width:620px;
  margin:24px auto 0;
  font-size:18px;
  line-height:1.7;
  color:var(--muted);
}

.about-services{
  position:relative;
  background:#fff;
  padding:90px 24px 70px;
  text-align:center;
}

.about-services__grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.about-service{
  position:relative;
  min-height:390px;
  padding:34px 28px;
  background:#fff;
  border:1px solid rgba(34,34,34,.08);
  box-shadow:0 14px 36px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
  color:inherit;
  text-decoration:none;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.about-service:hover{
  transform:translateY(-4px);
  border-color:rgba(34,34,34,.22);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.about-service span{
  align-self:flex-start;
  font-size:18px;
  font-weight:700;
  color:var(--accent);
}

.about-service img{
  width:70px;
  height:70px;
  object-fit:contain;
  margin:24px auto 30px;
  transition:transform .3s ease;
}

.about-service strong{
  font-family:Montserrat,sans-serif;
  font-size:18px;
  line-height:1.35;
  letter-spacing:.04em;
  color:#111;
}

.about-service small{
  display:block;
  margin-top:24px;
  font-size:15px;
  line-height:1.75;
  color:#666;
}

.about-service:hover img{
    transform:scale(1.08);
}



.im-services{
  background:#f3f3f3;
  padding:70px 24px 100px;
}

.im-services-wrap{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.im-service-card{
  background:#fff;
  text-align:center;
  padding:48px 34px;
  border-top:7px solid var(--accent);
  box-shadow:0 18px 42px rgba(0,0,0,.06);
}

.im-service-card h3{
  margin:0 0 24px;
  font-family:Montserrat,sans-serif;
  font-weight:700;
  line-height:1.15;
  color:#111;
}


.im-service-nexus{
    position:relative;
    overflow:hidden;
    border-top:7px solid #111;
}

.nexus-badge{

    position:absolute;
    top:22px;
    right:22px;

    padding:6px 12px;

    background:#111;
    color:#fff;

    border-radius:999px;

    font-family:Montserrat,sans-serif;
    font-size:10px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}


.im-service-core h3,
.im-service-support h3{
  font-size:clamp(30px,3.5vw,42px);
}

.service-tags{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 26px;
}

.service-tags span{
  padding:9px 16px;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#666;
  background:#f1f1f1;
}

.service-image{
  width:100%;
  height:280px;
  object-fit:cover;
  margin:0 0 28px;
  border-radius:10px;
  transition:.4s;
}

.im-service-card:hover .service-image{
    transform:scale(1.03);
}


.im-service-card p{
  max-width:560px;
  margin:0 auto 28px;
  font-size:16px;
  line-height:1.8;
  color:#666;
}

.im-service-nexus p{
    max-width:400px;
    margin:10px auto 36px;
    font-size:17px;
}

.service-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  min-width:210px;
  height:52px;
  padding:0 24px;
  border:1px solid var(--accent);
  color:#f28d19;
  font-family:Montserrat,sans-serif;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  transition:.25s ease;
}

.service-btn:hover{
  background:var(--accent);
  color:#fff;
}

.service-btn span{
    transition:.25s;
}

.service-btn:hover span{
    transform:translateX(4px);
}

@media (max-width:900px){
  .about-services__grid{
    grid-template-columns:repeat(2,1fr);
  }

  .im-services-wrap{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .about-services{
    padding:70px 22px 55px;
  }

  .services-head h3{
    font-size:36px;
    letter-spacing:4px;
  }

  .services-head p{
    font-size:16px;
  }

  .about-services__grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .about-service{
    min-height:auto;
    padding:30px 26px;
  }

  .about-service img{
    width:54px;
    height:54px;
    margin:20px auto 24px;
  }

  .about-service strong{
    font-size:17px;
  }

  .about-service small{
    font-size:14px;
  }

  .im-services{
    padding:55px 22px 75px;
  }

  .im-service-card{
    padding:38px 24px;
  }

  .service-image{
    height:220px;
  }

  .service-tags span{
    font-size:11px;
    padding:8px 13px;
  }

  .service-btn{
    width:100%;
  }
}

/* 09 Trusted By */
.trusted-section{
  padding:90px 0;
  background:#f7f7f7;
  border-top:1px solid rgba(34,34,34,.08);
  border-bottom:1px solid rgba(34,34,34,.08);
  overflow:hidden;
}
.trusted-title{margin-bottom:48px}
.trusted-carousel{
  width:100%;
  overflow:hidden;
  position:relative;
}
.trusted-carousel::before,
.trusted-carousel::after{
  content:"";
  position:absolute;
  top:0;
  width:90px;
  height:100%;
  z-index:2;
  pointer-events:none;
}
.trusted-carousel::before{left:0;background:linear-gradient(to right,#f7f7f7,rgba(247,247,247,0))}
.trusted-carousel::after{right:0;background:linear-gradient(to left,#f7f7f7,rgba(247,247,247,0))}
.trusted-track{
  display:flex;
  width:max-content;
  gap:64px;
  animation:trustedScroll 28s linear infinite;
}
.trusted-carousel:hover .trusted-track{animation-play-state:paused}
.trusted-logo{
  width:150px;
  height:90px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.trusted-logo img{
  max-width:140px;
  max-height:70px;
  object-fit:contain;
  opacity:.62;
  filter:grayscale(100%);
  transition:opacity .25s ease,filter .25s ease,transform .25s ease;
}
.trusted-logo:hover img{opacity:1;filter:grayscale(0%);transform:translateY(-2px)}
@keyframes trustedScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}



/* 10 Contact */
.contact-section{
  position:relative;
  min-height:100vh;
  background:
    linear-gradient(180deg,rgba(225,225,225,.65) 0%,rgba(225,225,225,.25) 30%),
    linear-gradient(0deg,rgba(225,225,225,.60) 0%,rgba(225,225,225,.15) 55%),
    url("contact-bg.webp") center/cover no-repeat;
  background-attachment:fixed;
  display:flex;
  align-items:center;
}
.contact-overlay{width:100%;padding:120px 0 110px}
.contact-wrap{max-width:980px}
.contact-title{text-align:center;margin:0 auto 26px}
.contact-title h2{
  margin:0;
  font-family:Montserrat,sans-serif;
  font-size:clamp(38px,5vw,58px);
  line-height:1.05;
  font-weight:300;
  letter-spacing:4px;
  color:#111;
}
.contact-title h1{
  margin:6px 0 0;
  font-family:Montserrat,sans-serif;
  font-size:clamp(42px,5.8vw,72px);
  line-height:1;
  font-weight:800;
  letter-spacing:3px;
  color:#111;
}
.contact-title .border{width:80px;height:2px;margin:24px auto 22px}
.contact-title p{
  margin:0 auto;
  font-family:Montserrat,sans-serif;
  font-size:15px;
  line-height:1.6;
  letter-spacing:.04em;
  color:rgba(17,17,17,.72);
  text-transform:uppercase;
}
.contact-form-card{
  max-width:900px;
  margin:0 auto;
  background:#fff;
  padding:46px 48px 34px;
  display:grid;
  gap:20px;
  box-shadow:0 25px 70px rgba(0,0,0,.08);
}
.contact-form-card input,
.contact-form-card textarea{
  width:100%;
  border:1px solid rgba(34,34,34,.10);
  background:#fff;
  color:#222;
  font-family:Montserrat,sans-serif;
  font-size:14px;
  letter-spacing:.02em;
  padding:0 24px;
  border-radius:2px;
  box-shadow:0 0 12px rgba(0,0,0,.06) inset;
}
.contact-form-card input{height:64px}
.contact-form-card textarea{height:220px;resize:vertical;padding-top:22px}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder{color:rgba(34,34,34,.38)}
.contact-form-card input:focus,
.contact-form-card textarea:focus{outline:none;border-color:var(--accent)}
.contact-alert{
  padding:16px 18px;
  border:1px solid transparent;
  border-radius:2px;
  font-family:Montserrat,sans-serif;
  font-size:14px;
  line-height:1.55;
  text-align:center;
}
.contact-alert--success{
  border-color:rgba(43,118,71,.25);
  background:#edf7f0;
  color:#23613a;
}
.contact-alert--error{
  border-color:rgba(168,53,45,.22);
  background:#fff1f0;
  color:#8f3029;
}
.contact-honeypot{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
  clip:rect(0 0 0 0)!important;
  clip-path:inset(50%)!important;
  white-space:nowrap!important;
}
.contact-btn{
  width:auto;
  min-width:260px;
  min-height:48px;
  margin:0 auto;
  padding:0 28px;
  border-radius:2px;
  background:rgba(0,0,0,.82);
  color:var(--accent);
  font-family:Montserrat,sans-serif;
  font-size:15px;
  font-weight:600;
  letter-spacing:.02em;
}
.contact-btn:hover{background:#000;color:var(--accent)}

/* 11 Footer */
.footer{
  border-top:1px solid var(--border);
  padding:26px 0;
  background:rgba(0,0,0,.1);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.muted{color:var(--muted)}
.footer p{margin:0}

/* 12 Responsive */
@media (min-width:901px){
  .nav__inner{justify-content:space-between;padding:0 70px;height:60px}
  .nav__menu{display:flex;width:calc(50% - 56px)}
  .nav__menu--left{justify-content:space-between;padding-right:120px}
  .nav__menu--right{justify-content:space-between;padding-left:160px}
  .nav__toggle{display:none}
  .nav__mobile{display:none!important}
  .logo::before{width:112px}
  .logo img{width:52px}
}

@media (max-width:980px){
  .grid{grid-template-columns:repeat(2,1fr)}
  .tile img{height:240px}
}

@media (max-width:900px){
  .nav__menu{display:none}
  .nav__inner{height:60px;padding:0 18px;justify-content:flex-end}
  .logo::before{width:146px}
  .logo img{width:60px}
}

@media (max-width:768px){
  .hero{min-height:100svh;align-items:center}
  .hero__bg{background-position:64% center}
  
  .hero__inner{padding:70px 24px 170px;transform:translateY(-20px)}
  .hero__slider{max-width:360px;font-size:42px;line-height:1.08;letter-spacing:2px}
  .hero__tags{max-width:300px;font-size:13px;line-height:1.6;margin:18px 0 28px}
  .hero__project{gap:14px;margin-top:10px}
  .hero__tags_project{font-size:11px;letter-spacing:.16em}
  .hero__border{width:42px}
  .hero__project:hover .hero__border{width:56px}
  .hero__bottom{bottom:145px}
  .scroll-indicator{left:26px;font-size:10px}
  .scroll-indicator i{height:34px}
  .about-main{min-height:auto;padding:80px 22px 60px}
  .about-intro{margin-bottom:56px}
  .about-intro__brand{font-size:38px;letter-spacing:2px}
  .about-copy__title{font-size:34px;letter-spacing:3px}
  .about-copy__text{font-size:15px;max-width:92%}
  .trusted-section{padding:70px 0}
  .trusted-title{margin-bottom:34px}
  .trusted-track{gap:42px;animation-duration:22s}
  .trusted-logo{width:120px;height:74px}
  .trusted-logo img{max-width:112px;max-height:58px}
  .trusted-carousel::before,.trusted-carousel::after{width:46px}

  .contact-section{min-height:auto;background-attachment:scroll}
  .contact-overlay{padding:90px 0 80px}
  .contact-wrap{padding:0 18px}
  .contact-title h2{font-size:32px;letter-spacing:2px}
  .contact-title h1{font-size:40px;letter-spacing:1px}
  .contact-title p{font-size:12px;max-width:92%}
  .contact-form-card{padding:28px 20px 24px;gap:16px}
  .contact-form-card input{height:58px}
  .contact-form-card textarea{height:200px}
  .contact-btn{width:100%;min-width:0}
}

@media (prefers-reduced-motion:reduce){
  .logo img,
  .trusted-track{animation:none}
}

@media (max-width:640px){
  #portfolio.section{padding:90px 0 0}
  .section-title{margin-bottom:32px}
  .section-title h2{font-size:34px;letter-spacing:2px}
  .section-title p{font-size:1rem;max-width:92%}
  .filters{gap:10px;margin-bottom:28px}
  .chip{padding:9px 13px;font-size:10px}
  .grid{grid-template-columns:1fr 1fr}
  .tile img{height:170px}
  .tile__overlay{display:none}

  .launch-separator{padding:70px 22px}
  .launch-separator__line{width:110px}
  .launch-separator h2{font-size:34px;letter-spacing:6px;line-height:1.35}
  .launch-separator p{font-size:17px}

}

@media (max-width:480px){
  .nav__inner{padding:0 14px}
  .logo::before{width:108px}
  .logo img{width:44px}
}

/* IM360 Nexus — Living Brand proof */
.im-service-nexus::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -130px;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,166,55,.16), rgba(255,166,55,0) 70%);
  pointer-events: none;
}

.nexus-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nexus-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffad42;
  box-shadow: 0 0 0 0 rgba(255,173,66,.45);
  animation: nexusLivePulse 2.4s ease-out infinite;
}

.living-brand-demo {
  position: relative;
  min-height: 210px;
  margin: 20px 0 28px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.living-brand-orbit {
  position: absolute;
  width: 178px;
  height: 178px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  animation: livingOrbit 7s ease-in-out infinite;
}

.living-brand-orbit::before,
.living-brand-orbit::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,173,66,.12);
  border-radius: 50%;
}

.living-brand-orbit::after {
  inset: 42px;
  background: rgba(255,173,66,.035);
}

.living-brand-mark {
  position: relative;
  z-index: 2;
  width: 126px;
  transform-origin: 50% 70%;
  animation: livingBreath 4.8s cubic-bezier(.45,0,.25,1) infinite;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.22));
}

.living-brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.living-eye {
  position: absolute;
  top: 39%;
  width: 6px;
  height: 8px;
  border-radius: 999px;
  background: rgba(28,25,27,.78);
  transform-origin: center;
  animation: livingBlink 6.2s infinite;
}

.living-eye--left { left: 37%; }
.living-eye--right { left: 49%; }

.living-brow {
  position: absolute;
  top: 33%;
  width: 13px;
  height: 5px;
  border-top: 2px solid rgba(28,25,27,.72);
  border-radius: 50%;
  transform-origin: center;
}
.living-brow--left { left: 33.5%; transform: rotate(-7deg); }
.living-brow--right { left: 46.5%; transform: rotate(7deg); }

.living-mouth {
  position: absolute;
  left: 41.5%;
  top: 47%;
  width: 14px;
  height: 7px;
  border-bottom: 2px solid rgba(28,25,27,.78);
  border-radius: 0 0 14px 14px;
}

.living-brand-caption {
  position: absolute;
  bottom: 0;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.im-service-nexus h3 span {
  color: #ffad42;
}

.nexus-touchpoints {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nexus-touchpoints span {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
}

.nexus-touchpoints i {
  color: #ffad42;
  font-style: normal;
}

@keyframes livingBreath {
  0%, 100% { transform: translateY(1px) scale(1); }
  48% { transform: translateY(-5px) scale(1.035); }
  56% { transform: translateY(-5px) scale(1.035); }
}

@keyframes livingBlink {
  0%, 43%, 47%, 100% { transform: scaleY(1); }
  44%, 46% { transform: scaleY(.08); }
}

@keyframes livingOrbit {
  0%, 100% { transform: scale(.98); opacity: .7; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes nexusLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(255,173,66,.38); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(255,173,66,0); }
}

@media (prefers-reduced-motion: reduce) {
  .living-brand-mark,
  .living-eye,
  .living-brow,
  .living-brand-orbit,
  .nexus-live-dot {
    animation: none !important;
  }
}

@media (max-width: 640px) {
  .living-brand-demo { min-height: 190px; }
  .living-brand-mark { width: 112px; }
  .living-brand-orbit { width: 158px; height: 158px; }
  .nexus-touchpoints { gap: 6px; }
  .nexus-touchpoints i { display: none; }
}
