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

:root{
  --bg0:#061525;
  --bg1:#071c33;
  --panel:rgba(12, 33, 58, .62);
  --panel2:rgba(15, 42, 74, .72);
  --stroke:rgba(145, 190, 235, .16);
  --stroke2:rgba(145, 190, 235, .28);
  --text:rgba(255,255,255,.92);
  --muted:rgba(226,240,255,.72);
  --muted2:rgba(226,240,255,.55);
  --accent:#4da6ff;
  --accent2:#16d6ff;
  --good:#63d9a8;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-soft: cubic-bezier(.2,.9,.2,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body {
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background:
    radial-gradient(1300px 760px at 15% -10%, rgba(77,166,255,.26), transparent 55%),
    radial-gradient(960px 620px at 85% 8%, rgba(22,214,255,.20), transparent 50%),
    radial-gradient(860px 480px at 5% 40%, rgba(94,186,255,.12), transparent 58%),
    radial-gradient(900px 600px at 40% 110%, rgba(77,166,255,.16), transparent 60%),
    radial-gradient(700px 420px at 92% 72%, rgba(22,214,255,.12), transparent 62%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--text);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px;
  top:12px;
  width:auto;
  height:auto;
  padding:10px 12px;
  border-radius:10px;
  background:rgba(0,0,0,.55);
  border:1px solid var(--stroke2);
  z-index:9999;
}
.hp-field{
  position:absolute;
  left:-9999px;
  opacity:0;
  pointer-events:none;
}

.container{
  max-width:1160px;
  margin:0 auto;
  padding:0 20px;
}

/* SCROLL OFFSET — compensates for the sticky navbar on all anchor targets */
#top, #services, #process, #brands, #contact {
  scroll-margin-top: 76px;
}

/* NAV */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(6, 18, 33, 0.55);
  border-bottom:1px solid rgba(145, 190, 235, .12);
}
.nav{
  max-width:1160px;
  margin:0 auto;
  padding:12px 20px;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  width:220px;
  height:40px;
  overflow:visible;
}
.brand-logo{
  height:40px;
  max-width:none;
  transform:scale(1.9);
  transform-origin:left center;
  width:auto;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.32));
}
.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
  color:var(--muted);
  font-weight:500;
  letter-spacing:.1px;
}
.nav-links a{
  position:relative;
  padding:8px 10px;
  border-radius:10px;
  transition: background .25s var(--ease-soft), color .25s var(--ease-soft);
}
.nav-links a:hover{
  background: rgba(145, 190, 235, .10);
  color: rgba(255,255,255,.92);
}
.nav-cta{ display:flex; align-items:center; gap:10px; }

/* TYPE */
.muted{ color: var(--muted); }
.muted.small{ font-size:12px; color: var(--muted2); }
.kicker{ color: var(--muted2); font-size:12px; letter-spacing:.24em; text-transform:uppercase; }
h1{
  font-size: clamp(34px, 4.2vw, 54px);
  line-height:1.05;
  letter-spacing:-.02em;
  margin:0 0 14px;
}
h2{
  font-size: clamp(24px, 3vw, 34px);
  line-height:1.12;
  letter-spacing:-.01em;
  margin:0;
}
h3{ margin:0; font-size:18px; }
.accent{
  background: linear-gradient(135deg, rgba(77,166,255,1), rgba(22,214,255,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace; letter-spacing:.02em; }

/* HERO */
.hero{
  position:relative;
  padding:86px 0 34px;
}
.hero-bg{
  position:absolute;
  inset:-200px -80px auto -80px;
  height:520px;
  background:
    radial-gradient(620px 320px at 20% 35%, rgba(77,166,255,.28), transparent 62%),
    radial-gradient(460px 260px at 78% 25%, rgba(22,214,255,.24), transparent 62%),
    radial-gradient(420px 220px at 60% 90%, rgba(97,196,255,.18), transparent 64%);
  pointer-events:none;
  filter: blur(12px);
  opacity:.9;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:26px;
  align-items:stretch;
}
.hero-copy{ padding:18px 0 10px; }
.eyebrow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
  flex-wrap:wrap;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(145, 190, 235, .10);
  border:1px solid rgba(145, 190, 235, .16);
  color: var(--muted);
  font-weight:600;
  letter-spacing:.2px;
}
.lead{
  margin:0 0 22px;
  max-width:56ch;
  color: var(--muted);
  font-size: 16px;
  line-height:1.65;
}
.cta{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.trust{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color: var(--muted2);
  font-size:13px;
}
.trust-item, .contact-point{ display:flex; align-items:center; gap:10px; }
.dot{
  width:7px; height:7px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 4px rgba(77,166,255,.12);
  flex-shrink:0;
}

/* HERO PANEL: INDUSTRIES */
.hero-panel{
  background: linear-gradient(180deg, rgba(15, 42, 74, .78), rgba(10, 28, 50, .64));
  border:1px solid rgba(145, 190, 235, .18);
  border-radius:18px;
  padding:20px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.hero-panel:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(500px 220px at 22% 0%, rgba(77,166,255,.20), transparent 58%),
    radial-gradient(320px 240px at 88% 20%, rgba(22,214,255,.16), transparent 60%);
  opacity:.65;
  pointer-events:none;
}
.panel-head{ position:relative; }
.panel-sub{ color: var(--muted2); font-size:13px; margin-top:4px; }

.industries{
  display:flex;
  flex-direction:column;
  gap:10px;
  position:relative;
  flex:1;
}
.industry-row{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 14px;
  border-radius:14px;
  background: rgba(0,0,0,.14);
  border:1px solid rgba(145, 190, 235, .12);
  transition: background .25s var(--ease-soft), border-color .25s var(--ease-soft);
}
.industry-row:hover{
  background: rgba(77,166,255,.07);
  border-color: rgba(77,166,255,.20);
}
.industry-icon{
  width:40px; height:40px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(77,166,255,.18), rgba(22,214,255,.10));
  border:1px solid rgba(77,166,255,.18);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  color: var(--accent);
}
.industry-icon svg{ width:18px; height:18px; }
.industry-title{ font-weight:600; font-size:14px; }
.industry-sub{ color:var(--muted2); font-size:12px; margin-top:2px; }

/* SERVICES IMAGES */
.services-visual{
  margin-bottom:22px;
}
.services-img-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.simg{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  aspect-ratio: 4/3;
  border:1px solid rgba(145,190,235,.14);
}
.simg img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .5s var(--ease-out);
  filter: brightness(.85) saturate(.9);
}
.simg:hover img{
  transform: scale(1.04);
  filter: brightness(.95) saturate(1.05);
}
.simg-label{
  position:absolute;
  bottom:0; left:0; right:0;
  padding:28px 12px 10px;
  background: linear-gradient(0deg, rgba(6,18,33,.85), transparent);
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
  color: rgba(226,240,255,.9);
}

/* BUTTONS */
.btn {
  appearance:none;
  border:0;
  padding: 12px 16px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 650;
  letter-spacing: .15px;
  color: rgba(255,255,255,.94);
  background: rgba(145, 190, 235, .10);
  border: 1px solid rgba(145, 190, 235, .18);
  transition:
    transform .35s var(--ease-out),
    box-shadow .35s var(--ease-out),
    background .35s var(--ease-out),
    border-color .35s var(--ease-out),
    filter .35s var(--ease-out);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  gap:8px;
}
.btn:disabled{
  cursor:not-allowed;
  opacity:.75;
  transform:none !important;
  box-shadow:none !important;
}

.primary {
  background: linear-gradient(135deg, rgba(26,111,212,1), rgba(77,166,255,1));
  border-color: rgba(88, 174, 255, .35);
  box-shadow: 0 18px 60px rgba(77,166,255,.18);
}
.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 85px rgba(77,166,255,.28);
  filter: saturate(1.08);
}

.ghost {
  background: rgba(145, 190, 235, .08);
  border: 1px solid rgba(145, 190, 235, .20);
}
.ghost:hover {
  background: rgba(145, 190, 235, .14);
  border-color: rgba(145, 190, 235, .28);
  transform: translateY(-1px);
}

.subtle {
  background: rgba(145, 190, 235, .06);
  border: 1px solid rgba(145, 190, 235, .12);
  color: var(--muted);
  font-size:13px;
}
.subtle:hover {
  background: rgba(145, 190, 235, .10);
  color: var(--text);
}

.full { width:100%; }

.icon-btn {
  appearance:none;
  background:none;
  border:none;
  cursor:pointer;
  color: var(--muted2);
  font-size:22px;
  line-height:1;
  padding:4px 8px;
  border-radius:8px;
  transition: color .2s var(--ease-out), background .2s var(--ease-out);
}
.icon-btn:hover {
  color: var(--text);
  background: rgba(145, 190, 235, .10);
}

/* SECTIONS */
.section{ padding: 80px 0; }
.section{
  position: relative;
}
.section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(680px 260px at 50% 0%, rgba(106, 196, 255, .08), transparent 70%);
}
.section-head{
  max-width:60ch;
  margin-bottom:32px;
}
.section-head p{ margin:10px 0 0; line-height:1.65; }

/* GRID / CARDS */
.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.card {
  background: linear-gradient(180deg, rgba(15, 42, 74, .68), rgba(10, 28, 50, .54));
  border: 1px solid rgba(145, 190, 235, .16);
  border-radius: 18px;
  padding: 22px;
  position:relative;
  overflow:hidden;
  box-shadow: 0 18px 70px rgba(0,0,0,.22);
  transform-style:preserve-3d;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.card:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(520px 240px at var(--mx, 40%) var(--my, 20%), rgba(22,214,255,.14), transparent 60%);
  opacity:0;
  transition: opacity .35s var(--ease-out);
  pointer-events:none;
}
.card:hover:before{ opacity:1; }
.card-icon{
  width:38px; height:38px;
  border-radius:12px;
  background: rgba(77,166,255,.12);
  border:1px solid rgba(77,166,255,.18);
  display:flex; align-items:center; justify-content:center;
  color: var(--accent);
  margin-bottom:14px;
}
.card-icon svg{ width:18px; height:18px; }
.card-title{ font-weight:750; font-size:15px; }
.card-body{ margin-top:8px; color: var(--muted); font-size:13.5px; line-height:1.6; }

.hover {
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
  border-color: rgba(145, 190, 235, .24);
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.step{
  background: linear-gradient(180deg, rgba(15, 42, 74, .68), rgba(10, 28, 50, .54));
  border: 1px solid rgba(145, 190, 235, .16);
  border-radius: 18px;
  padding: 22px;
  position:relative;
  overflow:hidden;
  box-shadow: 0 18px 70px rgba(0,0,0,.22);
  transform-style:preserve-3d;
}
.step:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(520px 240px at var(--mx, 40%) var(--my, 20%), rgba(22,214,255,.14), transparent 60%);
  opacity:0;
  transition: opacity .35s var(--ease-out);
  pointer-events:none;
}
.step:hover:before{ opacity:1; }
.step-num{ font-size:12px; letter-spacing:.28em; color: var(--muted2); }
.step-title{ margin-top:8px; font-weight:750; }
.step-body{ margin-top:6px; color: var(--muted); font-size:13.5px; line-height:1.55; }

/* BRANDS CAROUSEL */
.brands-section{ padding: 60px 0; overflow:hidden; }
.brands-section .section-head{ margin-bottom:28px; }
.brands-track-wrap{
  position:relative;
  overflow:hidden;
  -webkit-mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.brands-track{
  display:flex;
  gap:12px;
  width:max-content;
  animation: scroll-brands 35s linear infinite;
}
.brands-track:hover{ animation-play-state: paused; }
@keyframes scroll-brands{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.brand-logo-card{
  flex-shrink:0;
  min-width:185px;
  padding:16px 18px;
  border-radius:14px;
  background: rgba(15, 42, 74, .65);
  border:1px solid rgba(145, 190, 235, .16);
  color: var(--muted);
  font-size:12px;
  font-weight:600;
  letter-spacing:.05em;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  gap:10px;
  transition: background .25s var(--ease-soft), color .25s var(--ease-soft), border-color .25s var(--ease-soft);
}
.brand-logo-card img{
  width:40px;
  height:40px;
  object-fit:contain;
  border-radius:8px;
  background:rgba(255,255,255,.92);
  padding:4px;
}
.brand-logo-card:hover{
  background: rgba(77,166,255,.10);
  color: var(--text);
  border-color: rgba(77,166,255,.22);
}

/* CONTACT / FORM */
.contact{ padding: 76px 0 110px; }
.contact-grid{
  display:grid;
  grid-template-columns: .85fr 1.15fr;
  gap:24px;
  align-items:start;
}
.contact-copy{ padding: 8px 0; }
.contact-points{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
  color: var(--muted2);
  font-size:13px;
}
.contact-email{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}
.email-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  background: rgba(77,166,255,.08);
  border:1px solid rgba(77,166,255,.18);
  color: var(--accent);
  font-weight:600;
  font-size:14px;
  transition: background .25s var(--ease-soft), border-color .25s var(--ease-soft), transform .25s var(--ease-out);
}
.email-link:hover{
  background: rgba(77,166,255,.14);
  border-color: rgba(77,166,255,.28);
  transform: translateY(-1px);
}
.email-link svg{ width:16px; height:16px; flex-shrink:0; }

.contact-img{
  margin-top:22px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(145,190,235,.14);
  background: rgba(0,0,0,.10);
}
.contact-img img{
  width:100%;
  height:auto;
  object-fit:contain;
  background: rgba(0,0,0,.10);
  transition: transform .5s var(--ease-out), filter .4s var(--ease-out);
}
.contact-img:hover img{
  transform: none;
  filter: brightness(.92) saturate(1);
}

.contact-map{
  margin-top:24px;
}
.map-card{
  background: rgba(15, 42, 74, .65);
  border: 1px solid rgba(145, 190, 235, .18);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 70px rgba(0,0,0,.22);
}
.map-head{
  padding: 18px 20px 12px;
}
.map-label{
  margin:0;
  font-size:12px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color: var(--muted2);
}
.map-address{
  margin:8px 0 0;
  font-size:15px;
  line-height:1.5;
  color: var(--text);
}
.map-body{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding: 18px 20px 20px;
}
.map-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  background: rgba(77,166,255,.12);
  border:1px solid rgba(77,166,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--accent);
  flex-shrink:0;
}
.map-details p{
  margin:0 0 12px;
  color: var(--muted);
  line-height:1.7;
}
.map-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  background: rgba(77,166,255,.08);
  border:1px solid rgba(77,166,255,.18);
  color: var(--accent);
  font-weight:600;
  text-decoration:none;
  transition: background .25s var(--ease-soft), border-color .25s var(--ease-soft), transform .25s var(--ease-out);
}
.map-link:hover{
  background: rgba(77,166,255,.14);
  border-color: rgba(77,166,255,.28);
  transform: translateY(-1px);
}

.form {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(145, 190, 235, .16);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}
label{
  display:block;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color: var(--muted2);
  margin-bottom:6px;
}
.field{ margin-top:14px; }
.field:first-child{ margin-top:0; }
input, textarea {
  width: 100%;
  padding: 12px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(145, 190, 235, .16);
  border-radius: 14px;
  color: rgba(255,255,255,.92);
  outline:none;
  font-family: inherit;
  font-size:14px;
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease-out);
}
textarea {
  resize: vertical;
  min-height: 110px;
  max-height: 420px;
  overflow-y: auto;
  line-height: 1.6;
}
textarea::-webkit-scrollbar{
  width: 6px;
}
textarea::-webkit-scrollbar-track{
  background: rgba(0,0,0,.15);
  border-radius: 999px;
}
textarea::-webkit-scrollbar-thumb{
  background: rgba(77,166,255,.35);
  border-radius: 999px;
}
textarea::-webkit-scrollbar-thumb:hover{
  background: rgba(77,166,255,.55);
}
input::placeholder, textarea::placeholder{ color: var(--muted2); }
input:focus, textarea:focus{
  border-color: rgba(77, 166, 255, .38);
  box-shadow: 0 0 0 4px rgba(77,166,255,.12);
  background: rgba(0,0,0,.14);
}
input.input-error{
  border-color: rgba(255, 107, 107, .8);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, .18);
}
input.input-error:focus{
  border-color: rgba(255, 107, 107, .95);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, .22);
}
.success-msg {
  opacity: 0;
  margin-top: 12px;
  color: rgba(210, 255, 236, .92);
  font-size:14px;
  transition: 0.3s;
}
.success-msg.show { opacity: 1; }
.success-msg.error { color: rgba(255, 138, 138, .96); }
.btn-spinner{
  width:16px;
  height:16px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.25);
  border-top-color: rgba(255,255,255,.92);
  display:none;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn.is-loading .btn-label{ opacity:.82; }
.btn.is-loading .btn-spinner{ display:inline-block; }
.form button[type="submit"]{ margin-top:18px; }
.form .field:last-of-type{ margin-bottom:10px; }

/* FOOTER */
.footer{
  border-top:1px solid rgba(145,190,235,.10);
  padding:32px 0;
  background: rgba(0,0,0,.12);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  flex-direction:column;
  flex-wrap:wrap;
  gap:12px;
}
.footer-brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}
.footer-tag{
  color: var(--muted2);
  font-size:13px;
  font-style:italic;
}
.footer-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  color: var(--muted2);
  font-size:13px;
}
.footer-links a:hover{ color: var(--text); }
.footer-copy{
  color: var(--muted2);
  font-size:12px;
  width:auto;
}

/* FLOAT */
.floating {
  position: fixed;
  bottom: 18px;
  right: 18px;
  padding: 12px 18px;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid rgba(88, 174, 255, .35);
  color: rgba(255,255,255,.94);
  font-weight: 700;
  font-size:14px;
  letter-spacing:.12px;
  background: linear-gradient(135deg, rgba(26,111,212,1), rgba(77,166,255,1));
  box-shadow: 0 18px 70px rgba(77,166,255,.20);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), filter .35s var(--ease-out);
  z-index:60;
  position:fixed;
}
.floating:hover{
  transform: translateY(-2px);
  box-shadow: 0 28px 95px rgba(77,166,255,.28);
  filter: saturate(1.06);
}
.floating-glow{
  position:absolute;
  inset:-12px;
  border-radius: 18px;
  background: radial-gradient(120px 60px at 50% 20%, rgba(22,214,255,.22), transparent 65%);
  opacity:.8;
  filter: blur(8px);
  pointer-events:none;
}

/* REVEALS */
.reveal{
  opacity:0;
  transform: translateY(16px);
  filter: blur(6px);
  transition:
    opacity .8s var(--ease-out),
    transform .8s var(--ease-out),
    filter .8s var(--ease-out);
  transition-delay: var(--d, 0ms);
  will-change: transform, opacity, filter;
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

/* Tablet and below (980px) */
@media (max-width: 980px){
  /* Nav */
  .nav-links{ display:none; }
  .brand{ width:180px; }
  .brand-logo{ transform:scale(1.55); }

  /* Layout grids → single column */
  .hero-grid{ grid-template-columns: 1fr; gap:20px; }
  .grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }

  /* Hero */
  .hero{ padding:60px 0 28px; }
  .hero-copy{ padding:10px 0 0; }

  /* Services images stay 3-col on tablet */
  .services-img-grid{ grid-template-columns: repeat(3, 1fr); }

  /* Contact image sits naturally below email on tablet too */
  .contact-img{ aspect-ratio: 16/7; }

  /* Sections */
  .section{ padding:60px 0; }
  .contact{ padding:60px 0 80px; }

  /* Footer */
  .footer-inner{ flex-direction:column; align-items:center; text-align:center; }
  .footer-copy{ margin-top:4px; width:auto; }
  .footer-links{ justify-content:center; }
}

/* Mobile (600px and below) */
@media (max-width: 600px){
  /* Nav — tighten up so logo + button don't clash */
  .nav{ padding:10px 16px; min-height:60px; }

  /* Scroll offset matches the smaller mobile navbar */
  #top, #services, #process, #brands, #contact { scroll-margin-top: 60px; }
  .brand{ width:140px; height:34px; }
  .brand-logo{ height:34px; transform:scale(1.35); }
  .nav-cta .btn{ padding:9px 12px; font-size:13px; }

  /* Hero */
  .hero{ padding:44px 0 20px; }
  .lead{ font-size:15px; }
  .cta{ flex-direction:column; align-items:flex-start; }
  .cta .btn{ width:100%; justify-content:center; }
  .trust{ flex-direction:column; gap:8px; }

  /* Services — single image only */
  .services-img-grid{ grid-template-columns: 1fr; }
  .simg-2, .simg-3{ display:none; }
  .services-visual{ margin-bottom:16px; }

  /* Cards and steps — reduce padding */
  .card, .step{ padding:18px; }

  /* Brands carousel — smaller cards on mobile */
  .brand-logo-card{ min-width:150px; padding:12px 14px; }
  .brand-logo-card img{ width:32px; height:32px; }

  /* Contact */
  .contact{ padding:48px 0 70px; }
  .contact-img{ aspect-ratio: 16/8; margin-top:18px; }
  .email-link{ font-size:13px; padding:10px 13px; word-break:break-all; }

  /* Form */
  .form{ padding:18px; }
  input, textarea{ font-size:16px; } /* prevents iOS zoom on focus */

  /* Floating button — shrink slightly so it doesn't eat screen */
  .floating{ bottom:14px; right:14px; padding:10px 14px; font-size:13px; }

  /* Section spacing */
  .section{ padding:48px 0; }
  .section-head{ margin-bottom:22px; }

  /* Footer */
  .footer-links{ gap:12px; font-size:12px; }
  .footer-links a{ padding:2px 0; }
}

/* Small phones (390px and below) */
@media (max-width: 390px){
  .brand{ width:120px; }
  .brand-logo{ transform:scale(1.2); }
  .pill{ font-size:11px; padding:6px 10px; }
  .contact-img{ aspect-ratio: 4/3; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ transition:none; opacity:1; transform:none; filter:none; }
  .btn, .floating, .icon-btn, .nav-links a{ transition:none; }
  .brands-track{ animation:none; }
}
