:root{
  --bg: #030712;
  --bg2:#020617;
  --text:#e5e7eb;
  --muted:#a1a1aa;
  --soft:#71717a;
  --stroke: rgba(255,255,255,.10);
  --stroke2: rgba(255,255,255,.06);
  --glass: rgba(2,6,23,.55);
  --glass2: rgba(2,6,23,.75);
  --accent:#22d3ee;
  --accent2:#22c55e;
  /* Softer depth so it feels less “blocky” */
  --shadow: 0 14px 40px rgba(0,0,0,.34);
  --r: 20px;
  --r2: 28px;
  --t: 160ms ease;
  --pad: clamp(16px, 3.8vw, 72px);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  /* Keep the base background consistent across the whole page.
     All colour/glow lives in the fixed .ambient layer so sections don't "break" the background. */
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a{color:inherit}

.skip{
  position:absolute;
  left:-999px;
  top:12px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid var(--stroke);
  z-index:999;
}
.skip:focus{left:12px}

/* Ambient layers */
.ambient{position:fixed; inset:0; pointer-events:none; z-index:-1; overflow:hidden}
.ambient__glow{position:absolute; filter:blur(75px); opacity:.75; border-radius:999px}
.ambient__glow--a{width:420px;height:420px;left:-120px;top:-140px;background:radial-gradient(circle, rgba(34,211,238,.55), transparent 60%)}
.ambient__glow--b{width:520px;height:520px;right:-180px;top:80px;background:radial-gradient(circle, rgba(34,197,94,.45), transparent 60%)}
.ambient__glow--c{width:640px;height:640px;left:20%;bottom:-360px;background:radial-gradient(circle, rgba(56,189,248,.22), transparent 62%)}
.ambient__noise{
  position:absolute; inset:0;
  opacity:.06;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  background-size:300px 300px;
}

/* Ultra‑subtle vignette to prevent any visible "bands" between sections */
body:before{
  content:"";
  position:fixed;
  inset:-1px;
  pointer-events:none;
  z-index:-2;
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(34,211,238,.16), transparent 62%),
    radial-gradient(1000px 680px at 108% 12%, rgba(34,197,94,.13), transparent 60%),
    radial-gradient(1100px 780px at 50% 112%, rgba(56,189,248,.09), transparent 58%);
  opacity:.9;
}

/* Shell = full‑bleed background, consistent gutters */
.shell{
  width:100%;
  padding-left:var(--pad);
  padding-right:var(--pad);
}

/* A “content rail” keeps things visually aligned across sections without boxing the page */
.rail{
  width: min(1400px, 100%);
  margin-left:auto;
  margin-right:auto;
}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(2,6,23,.72);
  border-bottom:1px solid var(--stroke2);
  backdrop-filter: blur(18px);
}
.topbar__inner{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  max-width: 1600px;
  margin-left:auto;
  margin-right:auto;
}

.brand{
  display:flex; align-items:center; gap:14px;
  text-decoration:none;
  min-width: 0;
}
.brand__logo{
  height:44px;
  width:auto;
  display:block;
}
.brand__tag{
  font-size:0.9rem;
  color:var(--soft);
  white-space:nowrap;
}

.nav{
  display:flex;
  gap:22px;
  align-items:center;
  color:var(--muted);
  font-size:0.92rem;
}
.nav a{
  text-decoration:none;
  padding:10px 10px;
  border-radius:999px;
  transition: background var(--t), color var(--t);
}
.nav a:hover{background:rgba(255,255,255,.06); color:var(--text)}

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

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:650;
  font-size:0.95rem;
  letter-spacing:-0.01em;
  transition: transform var(--t), background var(--t), border-color var(--t), box-shadow var(--t), color var(--t);
  user-select:none;
  -webkit-tap-highlight-color: transparent;
}
.btn:active{transform:translateY(1px)}

.btn--primary{
  background: #f8fafc;
  color: #020617;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.btn--primary:hover{transform:translateY(-1px)}

.btn--accent{
  background: linear-gradient(135deg, rgba(34,211,238,1), rgba(56,189,248,1));
  color:#041018;
  box-shadow: 0 18px 55px rgba(34,211,238,.25);
}
.btn--accent:hover{transform:translateY(-1px)}

.btn--glass{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  color: var(--text);
}
.btn--glass:hover{background: rgba(255,255,255,.09); transform:translateY(-1px)}

.btn--whatsapp:hover{border-color: rgba(34,197,94,.28)}

.btn--tight{padding:10px 14px; font-size:0.92rem}
.btn--full{width:100%}

.ico{opacity:.92}

.hide-sm{display:inline}


/* Burger (mobile) */
.burger{
  display:none;
  width:44px;height:44px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  position:relative;
  padding:0;
  cursor:pointer;
  transition: background var(--t), transform var(--t);
}
.burger:hover{background: rgba(255,255,255,.09); transform:translateY(-1px)}
.burger span{
  position:absolute;
  left:12px; right:12px;
  height:2px;
  border-radius:999px;
  background: rgba(248,250,252,.92);
  transition: transform var(--t), opacity var(--t), top var(--t);
}
.burger span:nth-child(1){top:15px}
.burger span:nth-child(2){top:21px}
.burger span:nth-child(3){top:27px}
.burger[aria-expanded="true"] span:nth-child(1){top:21px; transform:rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){top:21px; transform:rotate(-45deg)}

/* Drawer mobile menu */
.drawer{
  position:fixed;
  inset:0;
  z-index:100;
  pointer-events:none;
}
.drawer[data-open="true"]{pointer-events:auto}
.drawer-overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  opacity:0;
  transition: opacity var(--t);
}
.drawer[data-open="true"] .drawer-overlay{opacity:1}
.drawer-panel{
  position:absolute;
  top:0; right:0;
  width:min(420px, 92vw);
  height:100%;
  background: rgba(2,6,23,.92);
  border-left:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(22px);
  transform: translateX(18px);
  opacity:0;
  transition: transform 220ms ease, opacity 220ms ease;
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.drawer[data-open="true"] .drawer-panel{transform: translateX(0); opacity:1}
.drawer-head{display:flex; align-items:center; justify-content:space-between}
.drawer-logo{height:34px;width:auto}
.drawer-close{
  width:42px;height:42px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 900;
  cursor:pointer;
}
.drawer-nav{display:flex; flex-direction:column; gap:8px; padding-top:6px}
.drawer-nav a{
  text-decoration:none;
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
  color: rgba(248,250,252,.88);
  font-weight:800;
}
.drawer-nav a:hover{border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.05); color: var(--text)}
.drawer-cta{margin-top:auto; display:flex; flex-direction:column; gap:10px}
.drawer-mini{
  display:flex;
  justify-content:center;
  gap:.6rem;
  color: var(--soft);
  font-size:.92rem;
  flex-wrap:wrap;
}
.drawer-mini a{opacity:.95; color: var(--soft); text-decoration:none}
.drawer-mini a:hover{opacity:1; color: var(--text)}


/* Type helpers */
h1,h2,h3{margin:0 0 10px 0; letter-spacing:-0.03em}
h1{
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 1.02;
}
h2{font-size: clamp(1.55rem, 2.2vw, 2.2rem); line-height:1.1}
h3{font-size: 1.1rem; line-height:1.2}

p{margin:0}

.kicker{
  color: var(--muted);
  font-size: 0.98rem;
  letter-spacing:-0.01em;
}
.lede{
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 62ch;
}

.grad{
  background: linear-gradient(135deg, rgba(34,211,238,1), rgba(56,189,248,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* Sections */
.section{padding: clamp(48px, 7vw, 92px) 0}
.section--soft{
  /* Keep sections visually consistent — avoid "bands" that make the background look segmented. */
  position: relative;
}
.section--soft::before{
  content:"";
  position:absolute;
  /* Extend beyond the section so there are no hard edges at boundaries */
  inset:-72px 0;
  pointer-events:none;
  opacity:.75;
  background:
    radial-gradient(900px 320px at 15% 0%, rgba(34,211,238,.06), transparent 68%),
    radial-gradient(900px 320px at 85% 100%, rgba(34,197,94,.055), transparent 68%);
  /* Fade the overlay in/out so it blends seamlessly into adjacent sections */
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}
.section__head{
  display:grid;
  /* Keeps the description from drifting to the far right on wide screens */
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  align-items:start;
  gap:24px;
  margin-bottom: clamp(20px, 2.4vw, 30px);
  max-width: 1600px;
  margin-left:auto;
  margin-right:auto;
}
.section__head h2{margin:0}
.section__head p{max-width: 72ch; margin-top: 6px}

/* Scroll reveal (Apple-style, seamless) */
html{scroll-behavior:smooth}

:root{
  --reveal-y: 18px;
  --reveal-scale: 0.985;
  --reveal-blur: 10px;
  --reveal-dur: 900ms;
  --reveal-ease: cubic-bezier(.2,.8,.2,1);
}

/* Single elements */
html.js .reveal{
  opacity: 0;
  transform: translate3d(0, var(--reveal-y), 0) scale(var(--reveal-scale));
  filter: blur(var(--reveal-blur));
  transition:
    opacity var(--reveal-dur) var(--reveal-ease),
    transform var(--reveal-dur) var(--reveal-ease),
    filter var(--reveal-dur) var(--reveal-ease);
  will-change: opacity, transform, filter;
}
html.js .reveal.is-inview{
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  filter: blur(0);
}

/* Stagger groups */
html.js .reveal-group .reveal-item{
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.99);
  filter: blur(10px);
  transition:
    opacity 800ms var(--reveal-ease),
    transform 800ms var(--reveal-ease),
    filter 800ms var(--reveal-ease);
  will-change: opacity, transform, filter;
}
html.js .reveal-group.is-inview .reveal-item{
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  filter: blur(0);
}


/* Hero */
.hero{padding: clamp(42px, 6vw, 86px) 0 34px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4.2vw, 60px);
  align-items:start;
  max-width: 1600px;
  margin-left:auto;
  margin-right:auto;
}
.hero__copy{padding-top: 10px}
.hero__buttons{display:flex; flex-wrap:wrap; gap:12px; margin-top: 18px}
.micro{
  display:flex; flex-wrap:wrap; gap:12px;
  margin-top: 18px;
  color: var(--soft);
  font-size: 0.92rem;
}
.micro .dot{width:5px;height:5px;border-radius:999px;background:rgba(255,255,255,.18);display:inline-block;align-self:center}

/* Bento */
.bento{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.tile{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r2);
  padding: 18px 18px;
  box-shadow: var(--shadow);
  min-height: 148px;
  position: relative;
}
.tile:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,0) 40%);
  opacity:.55;
}
.tile:hover{border-color: rgba(34,211,238,.18)}
.tile__k{color: var(--soft); font-size:0.85rem; margin-bottom: 8px}
.tile p{color: var(--muted); line-height:1.55}
.tile__meta{margin-top: 12px; color: rgba(34,211,238,.85); font-weight:650; font-size:0.92rem}
.tile--big{grid-column: 1 / -1; padding: 22px 22px; min-height: 170px}
.tile--wide{grid-column: 1 / -1}
.tile__wideRow{display:flex; align-items:flex-end; justify-content:space-between; gap:16px}

/* Services */
.services{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1600px;
  margin-left:auto;
  margin-right:auto;
}
.svc{
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(2,6,23,.42));
  border:1px solid rgba(255,255,255,.085);
  border-radius: var(--r2);
  padding: 18px 18px;
  backdrop-filter: blur(10px);
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height: 160px;
  position: relative;
}
.svc:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 45%);
  opacity:.55;
}
.svc h3{margin:0}

.svc p{color: var(--muted); line-height:1.55}
.svc--cta{
  border-color: rgba(34,211,238,.20);
  background: linear-gradient(180deg, rgba(34,211,238,.10), rgba(2,6,23,.42));
}
.svc--cta .btn{margin-top:auto}


/* Steps */
.steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1600px;
  margin-left:auto;
  margin-right:auto;
}
.steps li{
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(2,6,23,.38));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r2);
  padding: 18px 18px;
  backdrop-filter: blur(10px);
  min-height: 150px;
  position: relative;
}
.steps li:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 45%);
  opacity:.5;
}

.steps__n{display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:16px; background: rgba(34,211,238,.14); border:1px solid rgba(34,211,238,.20); color: rgba(34,211,238,.95); font-weight:800; margin-bottom:12px}
.steps p{color: var(--muted); line-height:1.55}

/* Areas */
.areas{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:stretch;
  max-width: 1600px;
  margin-left:auto;
  margin-right:auto;
}
.areas__copy p{color: var(--muted); line-height:1.6; max-width: 70ch}
.areas__card{
  border-radius: var(--r2);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(2,6,23,.52));
  border:1px solid rgba(255,255,255,.09);
  padding: 20px 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  position: relative;
}
.areas__card:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 45%);
  opacity:.5;
}

.areas__title{color: var(--soft); font-size:0.95rem; margin-bottom:8px}
.areas__list{font-weight:750; letter-spacing:-0.02em; line-height:1.35}
.areas__note{margin-top:10px; color: var(--muted); line-height:1.55}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  max-width: 1600px;
  margin-left:auto;
  margin-right:auto;
}
.contact__quick{display:flex; flex-wrap:wrap; gap:12px; margin: 14px 0 18px}

.form{
  display:grid;
  gap: 12px;
  margin-top: 8px;
}
.form__row{display:grid; grid-template-columns: 1fr 1fr; gap: 12px}
.form label{display:grid; gap:8px}
.form span{color: var(--soft); font-size:0.92rem}
input,textarea{
  width:100%;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(2,6,23,.55);
  color: var(--text);
  padding: 14px 14px;
  outline:none;
  transition: border-color var(--t), background var(--t);
}
textarea{resize:vertical; min-height: 120px}
input:focus,textarea:focus{border-color: rgba(34,211,238,.32); background: rgba(2,6,23,.70)}

.form__foot{display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-top: 6px}
.fine{color: var(--soft); font-size:0.92rem; line-height:1.5}

.form-status{
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: var(--muted);
}
.form-status[data-state="success"]{border-color: rgba(34,197,94,.25); color: rgba(134,239,172,.95)}
.form-status[data-state="error"]{border-color: rgba(248,113,113,.25); color: rgba(254,202,202,.95)}
.form-status[hidden]{display:none}

.contact__right .panel{
  border-radius: var(--r2);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(2,6,23,.58));
  border:1px solid rgba(255,255,255,.09);
  padding: 20px 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  position: relative;
}
.contact__right .panel:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 45%);
  opacity:.5;
}

.panel__title{color: var(--soft); font-size:0.95rem; margin-bottom:10px}
.panel__lines p{margin: 10px 0; color: var(--muted)}
.panel__lines span{color: var(--soft)}
.panel__lines a{color: var(--text); text-decoration:none; border-bottom:1px dashed rgba(255,255,255,.25)}
.panel__lines a:hover{border-bottom-color: rgba(34,211,238,.55)}
.panel__box{margin-top:14px; padding:14px 14px; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08)}
.panel__boxTitle{font-weight:750; margin-bottom:6px}

/* Footer */
.footer{padding: 34px 0; border-top:1px solid rgba(255,255,255,.06)}
.footer__inner{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:22px;
  align-items:start;
  color: var(--soft);
  max-width: 1600px;
  margin-left:auto;
  margin-right:auto;
}
.footer__brand p{margin:0}
.footer__meta{
  margin-top:8px;
  color: rgba(226,232,240,.62);
  font-size:0.95rem;
  line-height:1.45;
}
.footer__contactline{margin-top:10px; font-size:0.95rem; color: rgba(226,232,240,.75); display:flex; flex-wrap:wrap; gap:8px; align-items:center}
.footer__contactline a{color: rgba(248,250,252,.92); text-decoration:none; border-bottom:1px dashed rgba(255,255,255,.22)}
.footer__contactline a:hover{border-bottom-color: rgba(34,211,238,.55)}
.footer__contactline .dot{color: rgba(226,232,240,.35)}
.footer__links{
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:flex-end;
  flex-wrap:wrap;
  padding-top: 6px;
}
.footer__links a{color: var(--soft); text-decoration:none}
.footer__links a:hover{color: var(--text)}

/* Mobile contact bar */
.contactbar{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  display:none;
  gap: 10px;
  z-index: 80;
  padding: 10px;
  border-radius: 999px;
  background: rgba(2,6,23,.78);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
}
.contactbar__btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 14px;
  border-radius:999px;
  text-decoration:none;
  font-weight:750;
  font-size:0.95rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.contactbar__btn--wa{border-color: rgba(34,197,94,.20)}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr;}
  .bento{grid-template-columns: 1fr 1fr;}
  .areas{grid-template-columns: 1fr;}
  .contact{grid-template-columns: 1fr;}
  .section__head{grid-template-columns: 1fr;}
}

@media (max-width: 860px){
  .nav{display:none}
  .burger{display:inline-flex}
  .hide-sm{display:none}
  .brand__tag{display:none}

  /* Mobile glassy top menu bar */
  .topbar{
    background: rgba(2, 6, 23, .45);
    border-bottom: 1px solid rgba(255,255,255,.10);
    -webkit-backdrop-filter: blur(28px) saturate(170%);
    backdrop-filter: blur(28px) saturate(170%);
    box-shadow: 0 12px 34px rgba(0,0,0,.28);
    position: sticky;
    isolation: isolate;
  }
  .topbar::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0));
    opacity:.55;
  }

  .topbar__inner{position:relative; z-index:1}

  /* Make the drawer panel feel like the same glass material */
  .drawer-panel{
    background: rgba(2, 6, 23, .78);
    -webkit-backdrop-filter: blur(30px) saturate(170%);
    backdrop-filter: blur(30px) saturate(170%);
  }

}

@media (max-width: 820px){
  .services{grid-template-columns: 1fr 1fr}
  .steps{grid-template-columns: 1fr}
}

@media (max-width: 560px){
  .topbar__inner{height:66px}
  .brand__logo{height:40px}
  .btn{padding: 12px 14px}
  .hero__buttons{gap:10px}
  .services{grid-template-columns: 1fr}
  .bento{grid-template-columns: 1fr}
  .form__row{grid-template-columns: 1fr}
  .footer__inner{grid-template-columns: 1fr; gap:14px}
  .footer__links{justify-content:flex-start; padding-top:0}
  .contactbar{display:flex}
}


@media (max-width: 420px){
  .topbar__actions{gap:8px}
  .topbar__rs{padding:10px 10px}
  .topbar__cta{padding:10px 12px; font-size:0.88rem}
  .btn--glass.topbar__rs{padding:10px 10px}
  .brand__logo{height:36px}
}

@media (max-width: 360px){
  .topbar__cta{padding:9px 10px; font-size:0.84rem}
}
@media (prefers-reduced-motion: reduce){
  *{transition:none !important; scroll-behavior:auto !important}
  html.js .reveal,
  html.js .reveal-group .reveal-item{
    opacity:1 !important;
    transform:none !important;
    filter:none !important;
  }
}



/* --- Refinements: hero tagline + services bento + seamless contact details --- */
.hero__title{
  font-size: clamp(2.8rem, 6.2vw, 5.3rem);
  letter-spacing: -0.03em;
  line-height: 1.10;
  padding-bottom: 6px; /* prevents descenders (g, y, p) overlapping next block */
}
.hero__title .grad{line-height: 1.06}
.hero__title .grad{display:block; margin-top: 0.18em}

/* Services: pill + enquire link + contact meta */
.section__meta{
  margin-top: 10px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  color: var(--muted);
}
.meta__dot{opacity:.55}
.meta__link{
  color: var(--soft);
  text-decoration:none;
  border-bottom: 1px dashed rgba(255,255,255,.22);
  padding-bottom: 2px;
}
.meta__link:hover{border-bottom-color: rgba(34,211,238,.55); color: var(--text)}
.meta__link--wa:hover{border-bottom-color: rgba(34,197,94,.55)}

.svc{min-height: 168px}
.svc__pill{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--soft);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  width: fit-content;
  margin-bottom: 10px;
}
.svc__link{
  margin-top: auto;
  align-self: flex-end;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: rgba(226,232,240,.88);
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(2,6,23,.30);
}
.svc__link:hover{
  border-color: rgba(34,211,238,.22);
  transform: translateY(-1px);
}

/* Contact: integrated right column (no random list look) */
.contact__right{
  display:grid;
  gap: 12px;
  align-content:start;
}
.contactCard{
  border-radius: var(--r2);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(2,6,23,.56));
  border: 1px solid rgba(255,255,255,.09);
  padding: 18px 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  position: relative;
  overflow:hidden;
}
.contactCard:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,0) 42%);
  opacity:.55;
}
.contactCard__head{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 12px;
}
.contactCard__kicker{
  margin:0;
  color: var(--soft);
  font-size: 0.95rem;
}
.contactCard__chips{display:flex; gap:10px; flex-wrap:wrap}
.chip{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--text);
  text-decoration:none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.chip:hover{border-color: rgba(34,211,238,.22)}
.chip--wa{border-color: rgba(34,197,94,.20)}
.chip--wa:hover{border-color: rgba(34,197,94,.44)}

.contactCard__list{
  position:relative;
  margin:0;
  display:grid;
  gap: 2px;
}
.contactRow{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.contactRow:first-child{border-top: 0}
.contactRow dt{
  color: var(--muted);
  font-size: 0.92rem;
}
.contactRow dd{
  margin:0;
  color: var(--text);
  text-align:right;
}
.contactRow a{
  color: var(--text);
  text-decoration:none;
  border-bottom: 1px dashed rgba(255,255,255,.25);
  padding-bottom: 2px;
}
.contactRow a:hover{border-bottom-color: rgba(34,211,238,.55)}
.contactCard__copy{color: var(--muted); margin-top: 6px}

@media (max-width: 980px){
  .hero__title .grad{display:inline}
  .section__meta{margin-top: 12px}
  .svc__link{align-self:flex-start}
}


/* Ensure hero paragraph never tucks under large headline descenders */
.hero__title + .lede{margin-top: 12px;}
