@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

/* Accessibility and resilient interaction defaults */
.skip-link{position:fixed;left:1rem;top:1rem;z-index:10000;padding:.75rem 1rem;background:#fff;color:#07172a;border:2px solid #e8430a;border-radius:4px;font-weight:800;text-decoration:none;transform:translateY(-180%);transition:transform .2s ease}
.skip-link:focus{transform:translateY(0)}
:focus-visible{outline:3px solid #ff6b35;outline-offset:3px}
button,a{-webkit-tap-highlight-color:rgba(232,67,10,.22)}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto!important}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}}

:root {
  --primary: #0a1628;
  --accent:  #e8430a;
  --accent2: #f7a600;
  --light:   #f5f3ef;
  --mid:     #d6d0c4;
  --white:   #ffffff;
  --text:    #2a2a2a;
  --fh: 'Manrope', sans-serif;
  --fb: 'Inter', sans-serif;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:var(--fb);background:var(--light);color:var(--text);overflow-x:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:16px;line-height:1.6;}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

/* ── NAVIGATION (single unified bar — contact info merged in) ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:#ffffff;
  border-bottom:1px solid #e2e4e7;
  box-shadow:0 2px 8px rgba(0,0,0,.07);
  height:68px;display:flex;align-items:center;justify-content:space-between;
  padding:0 5%;gap:1rem;
  /* clip background to bar height but allow dropdowns to show below */
  clip-path:none;
}
/* Contact info block — sits right of Get a Quote button */
.nav-contact{
  display:flex;align-items:center;gap:.9rem;
  border-left:1px solid #e2e4e7;padding-left:1rem;margin-left:.25rem;flex-shrink:0;
}
.nav-contact-item{
  display:flex;align-items:center;gap:.38rem;
  font-size:.775rem;color:#555;font-weight:500;
  text-decoration:none;white-space:nowrap;transition:color .18s;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}
.nav-contact-item:hover{color:#e8430a;}
.nav-contact-item svg{width:13px;height:13px;flex-shrink:0;stroke:#e8430a;fill:none;}
.nav-contact-divider{width:1px;height:14px;background:#ddd;flex-shrink:0;}
/* Logo: image on white bg — show real colours */
.nav-logo{display:flex;align-items:center;text-decoration:none;}
.nav-logo img{height:44px;width:auto;display:block;filter:none;}
.nav-logo:hover img{opacity:.82;}
.nav-links{display:flex;gap:0;list-style:none;align-items:center;}
.nav-links>li{position:relative;}
.nav-links>li>a{
  display:block;padding:.3rem .9rem;
  color:#1a1a1a;font-size:.875rem;font-weight:500;letter-spacing:-.01em;
  transition:color .2s;white-space:nowrap;text-decoration:none;
  position:relative; /* needed for ::after bridge */
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}
.nav-links>li>a:hover,.nav-links>li.active>a{color:#e8430a;}
/* Dropdown — white */
.nav-links .dropdown{
  display:block;position:absolute;top:100%;left:0;
  background:#fff;border:1px solid #e2e4e7;
  border-radius:6px;min-width:230px;
  padding:.4rem 0;box-shadow:0 8px 28px rgba(0,0,0,.12);
  opacity:0;visibility:hidden;pointer-events:none;
  transform:translateY(4px);
  transition:opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
}
/* Invisible padding bridge — mouse travels from link into dropdown without gap */
.nav-links>li::after{
  content:'';display:block;
  position:absolute;left:0;right:0;bottom:-10px;height:10px;
}
.nav-links li.dropdown-open>.dropdown,.nav-links li:hover>.dropdown{
  opacity:1;visibility:visible;pointer-events:auto;
  transform:translateY(0);
  transition:opacity .2s ease, transform .2s ease, visibility 0s linear 0s;
}
.nav-links .dropdown-heading{
  font-size:.66rem;font-weight:700;letter-spacing:.09em;
  text-transform:uppercase;color:#999;
  padding:.55rem 1.1rem .2rem;pointer-events:none;
}
.nav-links .dropdown a{
  display:block;padding:.58rem 1.1rem;
  color:#222;font-size:.84rem;
  transition:background .12s,color .12s;text-decoration:none;
}
.nav-links .dropdown a:hover{background:#fff4f1;color:#e8430a;}
.nav-cta{
  background:var(--accent)!important;color:#fff!important;
  padding:.44rem 1.15rem!important;border-radius:4px;
  font-weight:600!important;transition:background .2s!important;font-size:.85rem!important;
}
.nav-cta:hover{background:#c93608!important;}
.nav-toggle{display:none;background:none;border:1px solid #ddd;border-radius:4px;
  color:#333;font-size:1.2rem;cursor:pointer;padding:.32rem .52rem;}

/* ── BREADCRUMB ── */
.breadcrumb{
  background:var(--white);border-bottom:1px solid #e8e4dc;
  padding:.7rem 5%;font-size:.8rem;color:#888;
  display:flex;align-items:center;gap:.4rem;flex-wrap:wrap;
}
.breadcrumb a{color:#888;transition:color .2s;}
.breadcrumb a:hover{color:var(--accent);}
.breadcrumb .sep{color:#ccc;}
.breadcrumb .current{color:var(--text);font-weight:500;}

/* ── HERO SLIDER ── */
.hero-slider{position:relative;width:100%;height:92vh;min-height:560px;overflow:hidden;}
.slides-container{display:flex;height:100%;transition:transform .7s cubic-bezier(.77,0,.175,1);}
.slide{
  min-width:100%;height:100%;position:relative;
  display:flex;align-items:center;padding:0 7%;
  overflow:hidden;
}
.slide-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  transition:transform 8s ease;
}
.slide:hover .slide-bg{transform:scale(1.04);}
.slide-overlay{position:absolute;inset:0;background:linear-gradient(105deg,rgba(10,22,40,.88) 0%,rgba(10,22,40,.5) 60%,transparent 100%);}
.slide-content{position:relative;z-index:2;max-width:660px;}
.slide-badge{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(232,67,10,.18);border:1px solid rgba(232,67,10,.4);
  color:#f07050;padding:.35rem .9rem;border-radius:100px;
  font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  margin-bottom:1.3rem;
}
.slide-content h1{
  font-family:var(--fh);font-size:clamp(2.2rem,4.8vw,4.2rem);
  font-weight:800;color:#fff;line-height:1.05;letter-spacing:-.025em;
  margin-bottom:1rem;
}
.slide-content h1 em{color:var(--accent);font-style:normal;}
.slide-content p{font-size:1.05rem;color:rgba(255,255,255,.7);line-height:1.7;max-width:520px;margin-bottom:2rem;font-weight:300;}
.slide-actions{display:flex;gap:1rem;flex-wrap:wrap;}
.btn-primary{
  background:var(--accent);color:#fff;padding:.85rem 1.8rem;
  border-radius:5px;font-weight:600;font-size:.92rem;
  transition:background .2s,transform .15s,box-shadow .2s;
  box-shadow:0 4px 24px rgba(232,67,10,.35);display:inline-block;
}
.btn-primary:hover{background:#c93608;transform:translateY(-2px);box-shadow:0 8px 32px rgba(232,67,10,.45);}
.btn-outline{
  border:1.5px solid rgba(255,255,255,.35);color:rgba(255,255,255,.85);
  padding:.85rem 1.8rem;border-radius:5px;font-weight:500;font-size:.92rem;
  transition:border-color .2s,color .2s;display:inline-block;
}
.btn-outline:hover{border-color:rgba(255,255,255,.8);color:#fff;}
/* Slider controls */
.slider-prev,.slider-next{
  position:absolute;top:50%;transform:translateY(-50%);z-index:10;
  background:rgba(255,255,255,.12);backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.2);color:#fff;
  width:48px;height:48px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;font-size:1.1rem;transition:background .2s;
}
.slider-prev{left:2%;}
.slider-next{right:2%;}
.slider-prev:hover,.slider-next:hover{background:rgba(232,67,10,.5);}
.slider-dots{
  position:absolute;bottom:1.8rem;left:50%;transform:translateX(-50%);
  display:flex;gap:.6rem;z-index:10;
}
.slider-dot{
  width:8px;height:8px;border-radius:50%;
  background:rgba(255,255,255,.35);cursor:pointer;
  transition:background .25s,width .25s;border:none;
}
.slider-dot.active{background:var(--accent);width:24px;border-radius:4px;}
.slider-progress{
  position:absolute;bottom:0;left:0;height:3px;
  background:var(--accent);transition:width .1s linear;z-index:10;
}

/* ── PARTNERS STRIP ── */
.partners-strip{
  background:var(--white);
  border-top:1px solid #e8e4dc;border-bottom:1px solid #e8e4dc;
  padding:1.4rem 5%;display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;
}
.partners-strip-label{font-size:.7rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:#bbb;white-space:nowrap;}
.partners-logos{display:flex;gap:.8rem;flex-wrap:wrap;align-items:center;}
.p-logo{
  font-family:var(--fh);font-weight:700;font-size:.82rem;color:#888;
  padding:.3rem .9rem;border:1px solid #e0dbd2;border-radius:4px;
  transition:color .2s,border-color .2s,background .2s;letter-spacing:.02em;
}
.p-logo:hover{color:var(--primary);border-color:var(--primary);background:#f8f6f2;}

/* ── SECTION GENERIC ── */
section{padding:90px 5%;}
.section-tag{display:inline-block;font-size:.7rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:var(--accent);margin-bottom:.9rem;}
.section-title{font-family:var(--fh);font-size:clamp(1.9rem,3.8vw,3rem);font-weight:800;line-height:1.08;letter-spacing:-.025em;color:var(--primary);margin-bottom:1.1rem;}
.section-title.light{color:#fff;}
.section-sub{font-size:.97rem;color:#666;line-height:1.72;max-width:580px;font-weight:300;}
.section-sub.light{color:rgba(255,255,255,.6);}

/* ── SOLUTIONS GRID (homepage) ── */
.solutions-section{background:var(--light);}
.solutions-header{margin-bottom:3rem;}
.solutions-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(330px,1fr));
  gap:1.5px;background:#d6d0c4;border:1.5px solid #d6d0c4;
}
.solution-card{
  background:var(--white);padding:2.3rem;
  position:relative;overflow:hidden;transition:background .25s;
}
.solution-card::before{
  content:'';position:absolute;left:0;top:0;bottom:0;width:3px;
  background:var(--accent);transform:scaleY(0);transition:transform .3s;transform-origin:bottom;
}
.solution-card:hover{background:#fafaf7;}
.solution-card:hover::before{transform:scaleY(1);}
.solution-icon{width:46px;height:46px;background:rgba(232,67,10,.08);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:1.3rem;margin-bottom:1.1rem;}
.solution-img{width:100%;margin-bottom:1rem;border-radius:8px;overflow:hidden;border:1px solid #e8edf4;box-shadow:0 2px 12px rgba(0,0,0,.06);}
.solution-img img{width:100%;height:auto;display:block;}
.solution-ver{display:inline-block;font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--accent);background:rgba(232,67,10,.08);padding:.2rem .55rem;border-radius:3px;margin-bottom:.7rem;}
.solution-card h3{font-family:var(--fh);font-size:1.25rem;font-weight:700;color:var(--primary);margin-bottom:.6rem;letter-spacing:-.02em;}
.solution-card>p{font-size:.88rem;color:#666;line-height:1.65;margin-bottom:1.1rem;}
.solution-features{list-style:none;display:flex;flex-direction:column;gap:.35rem;margin-bottom:1.3rem;}
.solution-features li{font-size:.81rem;color:#555;display:flex;align-items:flex-start;gap:.45rem;line-height:1.4;}
.solution-features li::before{content:'›';color:var(--accent);font-weight:700;flex-shrink:0;}
.solution-link{font-size:.83rem;font-weight:600;color:var(--accent);display:inline-flex;align-items:center;gap:.3rem;transition:gap .2s;}
.solution-link:hover{gap:.6rem;}

/* ── INDUSTRIES ── */
.industries-section{background:var(--white);}
.industries-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:1rem;margin-top:2.8rem;}
.industry-card{border:1.5px solid #e8e4dc;border-radius:8px;padding:1.6rem 1.3rem;transition:border-color .2s,transform .2s,box-shadow .2s;}
.industry-card:hover{border-color:var(--accent);transform:translateY(-3px);box-shadow:0 8px 28px rgba(0,0,0,.07);}
.industry-icon{font-size:1.9rem;margin-bottom:.7rem;}
.industry-card h4{font-family:var(--fh);font-size:.92rem;font-weight:700;color:var(--primary);}

/* ── WHY ── */
.why-section{background:var(--primary);}
.why-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(270px,1fr));gap:2rem;margin-top:3rem;}
.why-card{border-top:2px solid rgba(255,255,255,.1);padding-top:1.4rem;transition:border-color .2s;}
.why-card:hover{border-color:var(--accent);}
.why-num{font-family:var(--fh);font-size:2.8rem;font-weight:800;color:rgba(255,255,255,.07);letter-spacing:-.035em;display:block;margin-bottom:.7rem;}
.why-card h4{font-family:var(--fh);font-size:1rem;font-weight:700;color:#fff;margin-bottom:.5rem;}
.why-card p{font-size:.85rem;color:rgba(255,255,255,.55);line-height:1.65;}

/* ── LEAD GEN ── */
.leadgen-section{background:var(--accent);padding:80px 5%;}
.leadgen-inner{max-width:960px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start;}
.leadgen-left h2{font-family:var(--fh);font-size:clamp(1.9rem,3.8vw,2.9rem);font-weight:800;color:#fff;letter-spacing:-.025em;line-height:1.1;margin-bottom:.9rem;}
.leadgen-left p{color:rgba(255,255,255,.8);font-size:.93rem;line-height:1.65;margin-bottom:1.4rem;}
.promise-list{display:flex;flex-direction:column;gap:.6rem;}
.promise-item{display:flex;align-items:center;gap:.65rem;font-size:.84rem;color:rgba(255,255,255,.9);}
.promise-item::before{content:'✓';width:20px;height:20px;background:rgba(255,255,255,.2);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.68rem;font-weight:800;color:#fff;flex-shrink:0;}
.leadgen-form{background:#fff;border-radius:10px;padding:1.8rem;box-shadow:0 20px 60px rgba(0,0,0,.2);}
.form-title{font-family:var(--fh);font-size:1.15rem;font-weight:700;color:var(--primary);margin-bottom:1.3rem;}
.form-row{display:flex;gap:.7rem;}
.form-group{flex:1;margin-bottom:.9rem;}
.form-group label{display:block;font-size:.7rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#999;margin-bottom:.35rem;}
.form-group input,.form-group select,.form-group textarea{
  width:100%;padding:.65rem .85rem;
  border:1.5px solid #e8e4dc;border-radius:5px;
  font-family:var(--fb);font-size:.88rem;color:var(--primary);
  background:var(--light);outline:none;transition:border-color .2s;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--accent);background:#fff;}
.form-group textarea{resize:vertical;min-height:75px;}
.form-submit{
  width:100%;background:var(--primary);color:#fff;border:none;
  padding:.88rem;border-radius:5px;font-family:var(--fb);font-size:.93rem;
  font-weight:600;cursor:pointer;transition:background .2s,transform .15s;
}
.form-submit:hover{background:#162440;transform:translateY(-1px);}
.form-success{display:none;text-align:center;padding:2rem 1rem;color:var(--primary);}
.form-success h3{font-family:var(--fh);font-size:1.3rem;margin-bottom:.5rem;}

/* ── PAGE HERO (inner pages) ── */
.page-hero{
  background:var(--primary);padding:90px 5% 70px;
  position:relative;overflow:hidden;
}
.page-hero-bg{position:absolute;inset:0;background:radial-gradient(ellipse 60% 70% at 80% 50%,rgba(232,67,10,.13) 0%,transparent 65%);}
.page-hero-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:55px 55px;}
.page-hero-content{position:relative;}
.page-hero h1{font-family:var(--fh);font-size:clamp(2.2rem,5vw,4rem);font-weight:800;color:#fff;letter-spacing:-.025em;line-height:1.05;margin-bottom:.9rem;}
.page-hero h1 em{color:var(--accent);font-style:normal;}
.page-hero p{font-size:1.05rem;color:rgba(255,255,255,.65);line-height:1.7;max-width:600px;font-weight:300;}

/* ── SOLUTION INNER PAGE ── */
.solution-detail-section{background:var(--light);}
.solution-detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start;}
.solution-detail-main{}
.detail-block{background:var(--white);border:1px solid #e8e4dc;border-radius:8px;padding:2rem;margin-bottom:1.5rem;}
.detail-block h3{font-family:var(--fh);font-size:1.2rem;font-weight:700;color:var(--primary);margin-bottom:1rem;padding-bottom:.7rem;border-bottom:2px solid var(--light);}
.detail-features{list-style:none;display:flex;flex-direction:column;gap:.6rem;}
.detail-features li{font-size:.9rem;color:#444;display:flex;align-items:flex-start;gap:.6rem;line-height:1.5;}
.detail-features li::before{content:'✓';color:var(--accent);font-weight:700;flex-shrink:0;margin-top:.1rem;}
.solution-sidebar{}
.sidebar-cta{background:var(--primary);border-radius:10px;padding:2rem;color:#fff;margin-bottom:1.5rem;}
.sidebar-cta h3{font-family:var(--fh);font-size:1.15rem;font-weight:700;margin-bottom:.7rem;}
.sidebar-cta p{font-size:.85rem;color:rgba(255,255,255,.65);line-height:1.6;margin-bottom:1.3rem;}
.sidebar-cta .btn-primary{width:100%;text-align:center;display:block;}
.sidebar-info{background:var(--white);border:1px solid #e8e4dc;border-radius:8px;padding:1.5rem;}
.sidebar-info h4{font-family:var(--fh);font-size:.95rem;font-weight:700;color:var(--primary);margin-bottom:1rem;}
.info-row{display:flex;justify-content:space-between;padding:.5rem 0;border-bottom:1px solid #f0ede6;font-size:.84rem;}
.info-row:last-child{border-bottom:none;}
.info-row .label{color:#888;font-weight:500;}
.info-row .value{color:var(--primary);font-weight:600;}
.whats-new-tag{display:inline-block;background:rgba(232,67,10,.1);color:var(--accent);font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:.2rem .55rem;border-radius:3px;margin-bottom:.4rem;}
.whats-new-list{list-style:none;display:flex;flex-direction:column;gap:.5rem;margin-top:.8rem;}
.whats-new-list li{font-size:.87rem;color:#444;display:flex;align-items:flex-start;gap:.5rem;}
.whats-new-list li::before{content:'★';color:var(--accent2);font-size:.7rem;flex-shrink:0;margin-top:.15rem;}

/* ── BLOG ── */
.blog-section{background:var(--light);}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem;margin-top:2.8rem;}
.blog-card{background:var(--white);border-radius:8px;overflow:hidden;border:1px solid #e8e4dc;transition:transform .25s,box-shadow .25s;}
.blog-card:hover{transform:translateY(-4px);box-shadow:0 16px 48px rgba(0,0,0,.1);}
.blog-thumb{height:175px;display:flex;align-items:center;justify-content:center;font-size:2.8rem;}
.blog-body{padding:1.4rem;}
.blog-tag{font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--accent);margin-bottom:.55rem;}
.blog-card h4{font-family:var(--fh);font-size:.97rem;font-weight:700;color:var(--primary);line-height:1.4;margin-bottom:.55rem;}
.blog-card p{font-size:.83rem;color:#777;line-height:1.6;}
.blog-date{font-size:.75rem;color:#bbb;margin-top:.9rem;}
.blog-read-more{font-size:.82rem;font-weight:600;color:var(--accent);display:inline-flex;align-items:center;gap:.3rem;margin-top:.8rem;transition:gap .2s;}
.blog-read-more:hover{gap:.6rem;}

/* ── CONTACT ── */
.contact-section{background:var(--white);}
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:4rem;align-items:start;}
.contact-info-card{background:var(--primary);border-radius:10px;padding:2.5rem;color:#fff;}
.contact-info-card h3{font-family:var(--fh);font-size:1.3rem;font-weight:700;margin-bottom:1.8rem;}
.contact-item{display:flex;gap:.9rem;align-items:flex-start;margin-bottom:1.4rem;}
.contact-icon{width:40px;height:40px;background:rgba(232,67,10,.15);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0;}
.contact-text strong{display:block;font-size:.72rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:rgba(255,255,255,.4);margin-bottom:.2rem;}
.contact-text a,.contact-text span{font-size:.93rem;color:rgba(255,255,255,.85);}
.contact-text a:hover{color:var(--accent);}
.map-placeholder{margin-top:1.5rem;background:rgba(255,255,255,.05);border:1px dashed rgba(255,255,255,.15);border-radius:8px;height:180px;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.3);font-size:.85rem;text-align:center;padding:1rem;}
.contact-form-wrap{}
.contact-form-wrap .form-title{color:var(--primary);}

/* ── FOOTER ── */
footer{background:var(--primary);color:rgba(255,255,255,.5);padding:60px 5% 35px;}
.footer-top{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:2.5rem;margin-bottom:2.5rem;padding-bottom:2.5rem;border-bottom:1px solid rgba(255,255,255,.07);}
.footer-brand p{font-size:.85rem;line-height:1.7;margin-top:.9rem;}
.footer-logo{font-family:var(--fh);font-size:1.3rem;font-weight:800;color:#fff;letter-spacing:-.02em;}
.footer-logo span{color:var(--accent);}
.footer-col h5{font-family:var(--fh);font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.35);margin-bottom:.9rem;}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.5rem;}
.footer-col ul a{color:rgba(255,255,255,.55);font-size:.86rem;transition:color .2s;}
.footer-col ul a:hover{color:#fff;}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;font-size:.78rem;flex-wrap:wrap;gap:.5rem;}
.footer-legal-links{display:flex;gap:1rem;flex-wrap:wrap;}
.footer-legal-links a{color:inherit;text-decoration:underline;text-underline-offset:3px;}

/* Dropdown heading label */
.nav-links .dropdown-heading{
  font-size:.62rem;font-weight:700;letter-spacing:.13em;text-transform:uppercase;
  color:rgba(255,255,255,.25);padding:.5rem 1.2rem .3rem;pointer-events:none;
}
/* Wide dropdown for Solutions */
.nav-links .dropdown-wide{min-width:270px;}

/* ── SCROLL ANIMATIONS ── */
.fade-in{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease;}
.fade-in.visible{opacity:1;transform:translateY(0);}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  nav{padding:0 4%;}
  .nav-links{
    display:none;flex-direction:column;
    position:fixed;top:68px;left:0;right:0;
    background:#0d1e38;
    padding:1rem 0;
    border-bottom:1px solid rgba(255,255,255,.1);
    z-index:999;
    max-height:calc(100vh - 68px);
    overflow-y:auto;
  }
  .nav-links.open{display:flex;}
  .nav-links>li{padding-bottom:0;margin-bottom:0;}
  .nav-links>li>a{padding:.7rem 1.4rem;color:#fff !important;}
  .nav-links .dropdown{
    position:static;background:#091525;
    box-shadow:none;border:none;border-radius:0;
    padding-left:1rem;
    /* On mobile always visible when parent is open */
    opacity:1 !important;visibility:visible !important;
    pointer-events:auto !important;transform:none !important;
    display:none; /* hidden by default, shown when li.open */
  }
  .nav-links li.dropdown-open>.dropdown{display:block;}
  .nav-contact{display:none;}
  .nav-toggle{display:block;}
  .hero-slider{height:85vh;}
  .leadgen-inner,.contact-grid,.solution-detail-grid,.footer-top{grid-template-columns:1fr;gap:2rem;}
  .form-row{flex-direction:column;gap:0;}
  .footer-top{grid-template-columns:1fr 1fr;}
  section{padding:65px 4%;}
}
@media(max-width:600px){
  .hero-slider{height:95vh;}
  .slide-content h1{font-size:2rem;}
  .footer-top{grid-template-columns:1fr;}
  .partners-logos{gap:.5rem;}
}

/* ── PRODUCT MOCKUP PANELS ── */
.mockup-wrap{position:relative;border-radius:10px;overflow:hidden;box-shadow:0 24px 60px rgba(0,0,0,.18);border:1px solid rgba(255,255,255,.08);}
.mockup-chrome{height:32px;background:#1e2a3a;display:flex;align-items:center;gap:.4rem;padding:0 .9rem;border-bottom:1px solid rgba(255,255,255,.08);}
.mockup-dot{width:10px;height:10px;border-radius:50%;}
.mockup-title{font-size:.65rem;color:rgba(255,255,255,.35);margin-left:.6rem;font-weight:500;letter-spacing:.04em;}
.mockup-body{background:#0e1a28;padding:0;position:relative;overflow:hidden;}
/* toolbar */
.mkp-toolbar{height:36px;background:#162030;border-bottom:1px solid rgba(255,255,255,.06);display:flex;align-items:center;gap:1.5rem;padding:0 1rem;}
.mkp-tb-group{display:flex;gap:.4rem;align-items:center;}
.mkp-btn{height:18px;border-radius:3px;background:rgba(255,255,255,.08);}
/* viewport */
.mkp-viewport{display:grid;grid-template-columns:180px 1fr 140px;height:260px;}
.mkp-tree{background:#111c2a;border-right:1px solid rgba(255,255,255,.06);padding:.6rem .5rem;display:flex;flex-direction:column;gap:.3rem;overflow:hidden;}
.mkp-tree-item{height:12px;border-radius:2px;background:rgba(255,255,255,.07);}
.mkp-tree-item.active{background:rgba(232,67,10,.3);}
.mkp-tree-item.child{margin-left:.8rem;width:calc(100% - .8rem);}
.mkp-canvas{background:radial-gradient(ellipse 70% 70% at 50% 55%,#1a3050 0%,#0a1628 100%);position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.mkp-canvas::before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(100,150,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(100,150,255,.05) 1px,transparent 1px);background-size:28px 28px;}
.mkp-props{background:#111c2a;border-left:1px solid rgba(255,255,255,.06);padding:.6rem .5rem;display:flex;flex-direction:column;gap:.4rem;}
.mkp-prop-label{font-size:.55rem;color:rgba(255,255,255,.3);text-transform:uppercase;letter-spacing:.06em;}
.mkp-prop-val{height:10px;border-radius:2px;background:rgba(255,255,255,.08);margin-bottom:.2rem;}
/* statusbar */
.mkp-status{height:22px;background:#0a1628;border-top:1px solid rgba(255,255,255,.05);display:flex;align-items:center;gap:1rem;padding:0 .8rem;}
.mkp-status-txt{font-size:.55rem;color:rgba(255,255,255,.2);letter-spacing:.05em;}
.mkp-status-dot{width:6px;height:6px;border-radius:50%;background:var(--accent);}

/* 3D gear shape CSS art */
.css-gear{width:80px;height:80px;position:relative;display:flex;align-items:center;justify-content:center;}
.css-gear-inner{width:52px;height:52px;background:linear-gradient(135deg,#4a9eff,#2070cc);border-radius:50%;border:3px solid rgba(255,255,255,.15);box-shadow:0 0 30px rgba(74,158,255,.35),inset 0 2px 4px rgba(255,255,255,.2);}
.css-part{position:relative;}
/* Isometric box mockup */
.iso-box{width:70px;height:70px;position:relative;transform:rotateX(40deg) rotateZ(45deg);transform-style:preserve-3d;}
.iso-face{position:absolute;width:46px;height:46px;border:1.5px solid rgba(100,160,255,.4);}
.iso-face.top{background:rgba(74,158,255,.15);top:0;left:0;transform:translateZ(23px);}
.iso-face.front{background:rgba(40,100,200,.2);top:23px;left:0;transform:rotateX(-90deg);transform-origin:top;}
.iso-face.side{background:rgba(30,80,170,.25);top:0;left:23px;transform:rotateY(90deg);transform-origin:left;}

/* BIM building mockup */
.bim-building{width:90px;height:100px;position:relative;}
.bim-floor{position:absolute;bottom:0;left:50%;transform:translateX(-50%);}
.bim-layer{width:70px;height:16px;background:linear-gradient(180deg,rgba(100,170,255,.2),rgba(60,120,200,.15));border:1px solid rgba(100,160,255,.3);margin-bottom:2px;}

/* Electrical schematic mockup */
.elec-schematic{width:100%;height:100%;padding:1rem;display:flex;flex-direction:column;gap:.8rem;}
.elec-wire{height:2px;background:linear-gradient(90deg,transparent,rgba(100,220,255,.6),rgba(100,220,255,.6),transparent);border-radius:1px;position:relative;}
.elec-wire::before,.elec-wire::after{content:'';position:absolute;top:50%;transform:translateY(-50%);width:8px;height:8px;border-radius:50%;background:rgba(100,220,255,.8);}
.elec-wire::before{left:15%;}
.elec-wire::after{right:20%;}
.elec-component{width:24px;height:14px;border:1.5px solid rgba(100,220,255,.5);border-radius:2px;background:rgba(20,60,80,.4);display:inline-block;}

/* CAD wireframe 3D object art */
.cad-3d{width:110px;height:110px;perspective:200px;display:flex;align-items:center;justify-content:center;}
.cad-cube{width:60px;height:60px;transform-style:preserve-3d;transform:rotateX(-25deg) rotateY(35deg);animation:rotateCube 12s linear infinite;}
.cad-face{position:absolute;width:60px;height:60px;border:1.5px solid rgba(74,158,255,.5);background:rgba(74,158,255,.04);}
.cad-face.front{transform:translateZ(30px);}
.cad-face.back{transform:rotateY(180deg) translateZ(30px);}
.cad-face.left{transform:rotateY(-90deg) translateZ(30px);}
.cad-face.right{transform:rotateY(90deg) translateZ(30px);}
.cad-face.top{transform:rotateX(90deg) translateZ(30px);}
.cad-face.bot{transform:rotateX(-90deg) translateZ(30px);}
@keyframes rotateCube{from{transform:rotateX(-25deg) rotateY(35deg);}to{transform:rotateX(-25deg) rotateY(395deg);}}

/* Image placeholder slot */
.img-placeholder{
  background:linear-gradient(135deg,#1a2535 0%,#0e1825 100%);
  border:2px dashed rgba(255,255,255,.12);
  border-radius:8px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:2rem;text-align:center;min-height:200px;
  position:relative;overflow:hidden;
}
.img-placeholder::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 50% at 50% 50%,rgba(74,158,255,.06) 0%,transparent 70%);}
.img-placeholder-icon{font-size:2.2rem;margin-bottom:.7rem;opacity:.6;}
.img-placeholder-label{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.25);margin-bottom:.3rem;}
.img-placeholder-hint{font-size:.68rem;color:rgba(255,255,255,.15);line-height:1.5;}

/* ── 3DEXPERIENCE SECTION ── */
.threedx-section{background:linear-gradient(135deg,#050e1f 0%,#0a1a35 50%,#060f20 100%);padding:100px 5%;position:relative;overflow:hidden;}
.threedx-grid-bg{position:absolute;inset:0;background-image:linear-gradient(rgba(74,158,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(74,158,255,.04) 1px,transparent 1px);background-size:50px 50px;}
.threedx-glow{position:absolute;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(74,158,255,.08) 0%,transparent 70%);top:-150px;right:-100px;pointer-events:none;}
.threedx-inner{max-width:1100px;margin:0 auto;position:relative;}
.threedx-header{text-align:center;margin-bottom:4rem;}
.threedx-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(74,158,255,.12);border:1px solid rgba(74,158,255,.25);color:#6ab4ff;font-size:.7rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:.35rem .9rem;border-radius:100px;margin-bottom:1rem;}
.threedx-title{font-family:'Manrope',sans-serif;font-size:clamp(2rem,4vw,3.2rem);font-weight:800;color:#fff;letter-spacing:-.025em;line-height:1.1;margin-bottom:.9rem;}
.threedx-title em{color:#4a9eff;font-style:normal;}
.threedx-sub{font-size:.97rem;color:rgba(255,255,255,.5);line-height:1.75;max-width:600px;margin:0 auto;font-weight:300;}

/* Central platform diagram */
.threedx-diagram{display:flex;align-items:center;justify-content:center;margin-bottom:4rem;gap:3rem;flex-wrap:wrap;}
.threedx-hub{width:160px;height:160px;border-radius:50%;background:linear-gradient(135deg,#1a3a6a,#0d2248);border:2px solid rgba(74,158,255,.3);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;box-shadow:0 0 50px rgba(74,158,255,.2),inset 0 1px 0 rgba(255,255,255,.08);position:relative;flex-shrink:0;}
.threedx-hub::before{content:'';position:absolute;inset:-8px;border-radius:50%;border:1px solid rgba(74,158,255,.1);animation:hubPulse 3s ease-in-out infinite;}
.threedx-hub::after{content:'';position:absolute;inset:-18px;border-radius:50%;border:1px solid rgba(74,158,255,.06);animation:hubPulse 3s ease-in-out infinite .8s;}
@keyframes hubPulse{0%,100%{opacity:.4;transform:scale(1);}50%{opacity:1;transform:scale(1.03);}}
.threedx-hub-icon{font-size:2rem;margin-bottom:.4rem;}
.threedx-hub-name{font-family:'Manrope',sans-serif;font-size:.78rem;font-weight:700;color:#fff;letter-spacing:.05em;}
.threedx-hub-sub{font-size:.6rem;color:rgba(255,255,255,.4);margin-top:.15rem;}
.threedx-spokes{display:grid;grid-template-columns:1fr 1fr;gap:.8rem;max-width:320px;}
.threedx-spoke{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:8px;padding:.9rem 1rem;transition:border-color .2s,background .2s;}
.threedx-spoke:hover{border-color:rgba(74,158,255,.3);background:rgba(74,158,255,.06);}
.threedx-spoke-icon{font-size:1.2rem;margin-bottom:.4rem;}
.threedx-spoke-name{font-size:.75rem;font-weight:700;color:rgba(255,255,255,.8);margin-bottom:.2rem;}
.threedx-spoke-desc{font-size:.68rem;color:rgba(255,255,255,.35);line-height:1.4;}

/* Offerings grid */
.threedx-offerings{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.06);border-radius:10px;overflow:hidden;}
.threedx-offer{background:#070f1e;padding:1.8rem;transition:background .2s;}
.threedx-offer:hover{background:#0c1728;}
.threedx-offer-icon{width:44px;height:44px;border-radius:8px;background:rgba(74,158,255,.1);border:1px solid rgba(74,158,255,.2);display:flex;align-items:center;justify-content:center;font-size:1.1rem;margin-bottom:1rem;}
.threedx-offer h4{font-family:'Manrope',sans-serif;font-size:.97rem;font-weight:700;color:#fff;margin-bottom:.5rem;}
.threedx-offer p{font-size:.83rem;color:rgba(255,255,255,.45);line-height:1.6;}
.threedx-cta-row{display:flex;justify-content:center;gap:1.2rem;margin-top:3rem;flex-wrap:wrap;}

/* Responsive fixes */
@media(max-width:700px){
  .threedx-diagram{gap:1.5rem;}
  .threedx-spokes{grid-template-columns:1fr 1fr;}
  .mkp-viewport{grid-template-columns:1fr;}
  .mkp-tree,.mkp-props{display:none;}
}

/* ── ACECAM LOGO IMAGE ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  /* Logo has indigo/violet colours - works fine on dark navy nav */
  /* Add slight brightness boost for dark bg visibility */
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}
.nav-logo:hover .nav-logo-img {
  opacity: .85;
}
/* Footer logo */
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: .9;
}
/* When logo is on light background (if needed) */
.nav-logo-img.logo-dark {
  filter: none;
}

/* ══════════════════════════════════════════
   UNIFIED NAV — no separate top bar
══════════════════════════════════════════ */

/* All pages: single nav offset */
body{padding-top:68px;}
.has-top-bar{padding-top:68px !important;}  /* legacy class — same value now */

/* Slider / hero full‑screen fix */
.hero-slider{margin-top:0;}

/* Hide contact info in nav on medium screens to avoid overflow */
@media(max-width:1100px){
  .nav-contact{display:none;}
}

/* ── NAV LOGO REDESIGN ── */

/* ── NAV LOGO REDESIGN ── */
/* Replace filter:invert with the real logo colours showing on a lighter nav band */
.nav-logo-band{
  display:flex;align-items:center;gap:.9rem;
  text-decoration:none;
}
/* White pill behind logo so indigo mark is readable */
.nav-logo-pill{
  background:rgba(255,255,255,.96);
  border-radius:7px;
  padding:3px 7px;
  display:flex;align-items:center;justify-content:center;
  height:44px;
}
.nav-logo-pill img{
  height:36px;width:auto;display:block;
  filter:none !important;   /* show real colours */
}
.nav-logo-wordmark{
  display:flex;flex-direction:column;line-height:1;
}
.nav-logo-wordmark strong{
  font-family:'Manrope',sans-serif;font-size:1.08rem;font-weight:800;
  color:#fff;letter-spacing:.04em;
}
.nav-logo-wordmark span{
  font-size:.6rem;color:rgba(255,255,255,.42);letter-spacing:.06em;
  text-transform:uppercase;margin-top:2px;
}

/* ══════════════════════════════════════════
   EAM SECTION
══════════════════════════════════════════ */
.eam-section{
  background:linear-gradient(135deg,#06101e 0%,#0b1a30 55%,#07111f 100%);
  padding:90px 5%;position:relative;overflow:hidden;
}
.eam-grid-bg{
  position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:48px 48px;pointer-events:none;
}
/* Diagonal accent stripe */
.eam-stripe{
  position:absolute;top:-120px;right:-80px;
  width:420px;height:600px;
  background:linear-gradient(145deg,rgba(59,58,143,.18) 0%,rgba(59,58,143,.04) 60%,transparent 100%);
  transform:rotate(-12deg);border-radius:40px;pointer-events:none;
}
.eam-inner{
  max-width:1100px;margin:0 auto;position:relative;
  display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:start;
}

/* ── LEFT: Authority block ── */
.eam-left{}
.eam-eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(59,58,143,.18);border:1px solid rgba(59,58,143,.35);
  color:#9b9be8;font-size:.68rem;font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;padding:.32rem .85rem;border-radius:100px;margin-bottom:1.2rem;
}
.eam-title{
  font-family:'Manrope',sans-serif;font-size:clamp(1.8rem,3.2vw,2.7rem);
  font-weight:800;color:#fff;line-height:1.1;letter-spacing:-.025em;margin-bottom:1rem;
}
.eam-title em{color:#9b9be8;font-style:normal;}
.eam-desc{font-size:.93rem;color:rgba(255,255,255,.5);line-height:1.78;margin-bottom:1.8rem;font-weight:300;}

/* Stats row */
.eam-stats{display:flex;gap:1.5rem;margin-bottom:2rem;flex-wrap:wrap;}
.eam-stat{display:flex;flex-direction:column;}
.eam-stat-num{font-family:'Manrope',sans-serif;font-size:1.8rem;font-weight:800;color:#fff;line-height:1;}
.eam-stat-num span{font-size:1rem;color:#9b9be8;}
.eam-stat-label{font-size:.65rem;color:rgba(255,255,255,.38);text-transform:uppercase;letter-spacing:.08em;margin-top:.2rem;}

/* Industry pills */
.eam-industries{display:flex;flex-wrap:wrap;gap:.6rem;margin-bottom:2rem;}
.eam-industry-pill{
  display:flex;align-items:center;gap:.4rem;
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);
  border-radius:100px;padding:.4rem .9rem;
  font-size:.74rem;color:rgba(255,255,255,.65);font-weight:500;
}
.eam-industry-pill svg{width:13px;height:13px;opacity:.6;}

/* Capability list */
.eam-caps{list-style:none;display:flex;flex-direction:column;gap:.7rem;margin-bottom:2rem;}
.eam-cap{display:flex;align-items:flex-start;gap:.7rem;font-size:.85rem;color:rgba(255,255,255,.6);line-height:1.5;}
.eam-cap-dot{width:6px;height:6px;border-radius:50%;background:#9b9be8;margin-top:.45rem;flex-shrink:0;}

.eam-cta-row{display:flex;gap:1rem;flex-wrap:wrap;align-items:center;}
.eam-cta-primary{
  background:#3B3A8F;color:#fff;padding:.82rem 1.7rem;
  border-radius:5px;font-weight:700;font-size:.9rem;
  text-decoration:none;transition:background .2s,box-shadow .2s;
  box-shadow:0 4px 20px rgba(59,58,143,.35);
}
.eam-cta-primary:hover{background:#4a48b8;box-shadow:0 6px 28px rgba(59,58,143,.5);}
.eam-cta-secondary{
  font-size:.88rem;color:rgba(255,255,255,.45);text-decoration:none;
  font-weight:500;transition:color .2s;
}
.eam-cta-secondary:hover{color:rgba(255,255,255,.85);}

/* ── RIGHT: Launch teaser card ── */
.eam-right{}
.eam-teaser{
  background:linear-gradient(145deg,#0e1a35 0%,#131a38 100%);
  border:1px solid rgba(59,58,143,.3);
  border-radius:14px;padding:2.2rem 2rem;
  position:relative;overflow:hidden;
  box-shadow:0 24px 60px rgba(0,0,0,.35),inset 0 1px 0 rgba(255,255,255,.05);
}
/* animated glow behind card */
.eam-teaser::before{
  content:'';position:absolute;top:-60px;right:-60px;
  width:240px;height:240px;border-radius:50%;
  background:radial-gradient(circle,rgba(59,58,143,.25) 0%,transparent 70%);
  pointer-events:none;animation:eamGlow 4s ease-in-out infinite;
}
@keyframes eamGlow{0%,100%{opacity:.6;transform:scale(1);}50%{opacity:1;transform:scale(1.12);}}

.eam-teaser-badge{
  display:inline-flex;align-items:center;gap:.45rem;
  background:rgba(59,58,143,.3);border:1px solid rgba(59,58,143,.5);
  color:#b0aff5;font-size:.65rem;font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;padding:.28rem .75rem;border-radius:100px;margin-bottom:1.4rem;
}
.eam-teaser-badge::before{
  content:'';width:6px;height:6px;border-radius:50%;
  background:#9b9be8;animation:pulse 1.8s ease-in-out infinite;
}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.4;transform:scale(.7);}}

.eam-teaser-product{
  font-family:'Manrope',sans-serif;font-size:1.9rem;font-weight:800;
  color:#fff;letter-spacing:-.025em;line-height:1;margin-bottom:.3rem;
}
.eam-teaser-product em{color:#9b9be8;font-style:normal;}
.eam-teaser-tagline{font-size:.82rem;color:rgba(255,255,255,.4);margin-bottom:1.6rem;font-weight:300;}

/* Feature ticks */
.eam-teaser-features{list-style:none;display:flex;flex-direction:column;gap:.75rem;margin-bottom:1.8rem;}
.eam-teaser-feat{display:flex;align-items:flex-start;gap:.65rem;font-size:.83rem;color:rgba(255,255,255,.6);line-height:1.45;}
.eam-teaser-tick{
  width:18px;height:18px;border-radius:50%;
  background:rgba(59,58,143,.3);border:1px solid rgba(59,58,143,.5);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:.05rem;
}
.eam-teaser-tick svg{width:9px;height:9px;stroke:#9b9be8;stroke-width:2.5;fill:none;}

/* Timeline bar */
.eam-timeline{
  display:flex;align-items:center;gap:.7rem;
  background:rgba(0,0,0,.25);border-radius:8px;padding:.9rem 1rem;
  margin-bottom:1.6rem;border:1px solid rgba(255,255,255,.05);
}
.eam-timeline-icon{font-size:1.2rem;}
.eam-timeline-text{display:flex;flex-direction:column;}
.eam-timeline-label{font-size:.6rem;color:rgba(255,255,255,.3);text-transform:uppercase;letter-spacing:.08em;}
.eam-timeline-date{font-size:.88rem;color:#fff;font-weight:600;margin-top:.1rem;}

/* Early access form */
.eam-access-label{font-size:.72rem;color:rgba(255,255,255,.35);text-transform:uppercase;
  letter-spacing:.08em;margin-bottom:.7rem;}
.eam-access-form{display:flex;gap:.6rem;flex-wrap:wrap;}
.eam-access-input{
  flex:1;min-width:140px;background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);border-radius:5px;
  padding:.65rem .9rem;font-size:.83rem;color:#fff;
  outline:none;transition:border-color .2s;
}
.eam-access-input::placeholder{color:rgba(255,255,255,.25);}
.eam-access-input:focus{border-color:rgba(59,58,143,.6);}
.eam-access-btn{
  background:#3B3A8F;color:#fff;border:none;border-radius:5px;
  padding:.65rem 1.2rem;font-size:.83rem;font-weight:700;
  cursor:pointer;transition:background .2s;white-space:nowrap;
}
.eam-access-btn:hover{background:#4a48b8;}
.eam-access-note{font-size:.67rem;color:rgba(255,255,255,.22);margin-top:.6rem;}

/* Responsive */
@media(max-width:820px){
  .eam-inner{grid-template-columns:1fr;}
}
