/* style.css - Updated for mobile-friendly design */
:root {
  --bg0: #070a12;
  --bg1: #0b1220;
  --card: #0f1b33cc;
  --card2: #0e1730;
  --line: rgba(255, 255, 255, .10);
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .70);
  --muted2: rgba(255, 255, 255, .55);
  --shadow: 0 18px 60px rgba(0, 0, 0, .55);
  --shadow2: 0 10px 30px rgba(0, 0, 0, .35);
  --brand1: #7c3aed;
  --brand2: #22c55e;
  --brand3: #06b6d4;
  --accent: #f97316;
  --radius: 18px;
  --radius2: 26px;
  --max: 1160px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* Reset and base styles */
* {
  box-sizing: border-box;
  max-width: 100%; /* Prevent horizontal overflow */
}

html,
body {
  height: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;
  position: relative;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 700px at 20% 10%, rgba(124, 58, 237, .35), transparent 60%), radial-gradient(900px 700px at 90% 15%, rgba(6, 182, 212, .24), transparent 60%), radial-gradient(900px 700px at 40% 110%, rgba(34, 197, 94, .22), transparent 60%), linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  background: linear-gradient(180deg, rgba(7, 10, 18, .72), rgba(7, 10, 18, .35));
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(18px 18px at 30% 30%, rgba(255, 255, 255, .35), transparent 60%), conic-gradient(from 210deg, var(--brand1), var(--brand3), var(--brand2), var(--brand1));
  box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
  position: relative;
  overflow: hidden;
}

.logo:after {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(90deg, transparent 40%, rgba(255, 255, 255, .45), transparent 60%);
  transform: rotate(22deg) translateX(-60%);
  animation: shine 7s var(--ease) infinite;
  opacity: .6;
}

@keyframes shine {
  0% {
    transform: rotate(22deg) translateX(-70%)
  }
  45% {
    transform: rotate(22deg) translateX(75%)
  }
  100% {
    transform: rotate(22deg) translateX(75%)
  }
}

.brand h1 {
  margin: 0;
  font-size: 16px;
  letter-spacing: .2px;
}

.brand p {
  margin: 0;
  color: var(--muted2);
  font-size: 12.5px;
}

/* Navigation - Desktop */
nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}

nav a:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  transform: translateY(-1px);
}

nav a.active {
  background: rgba(255, 255, 255, .09);
  color: var(--text);
}

.nav-ctas {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  user-select: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .18);
}

.btn:active {
  transform: translateY(0px) scale(.99);
}

.btn.primary {
  background: linear-gradient(135deg, rgba(124, 58, 237, .95), rgba(6, 182, 212, .85));
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 18px 55px rgba(124, 58, 237, .24);
}

.btn.primary:hover {
  box-shadow: 0 18px 65px rgba(6, 182, 212, .20);
}

/* Hamburger menu - hidden by default */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.hamburger svg {
  width: 22px;
  height: 22px;
}

/* Mobile panel - hidden by default */
.mobile-panel {
  display: none;
  padding: 10px 0 16px;
  border-top: 1px solid var(--line);
}

.mobile-panel a {
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  font-size: 16px;
  margin-bottom: 5px;
}

.mobile-panel a:hover {
  background: rgba(255, 255, 255, .07);
}

.mobile-ctas {
  display: grid;
  gap: 10px;
  padding: 10px 0 0;
}

.mobile-ctas .btn {
  width: 100%;
  text-align: center;
}

/* Hero Section */
.hero {
  padding: 70px 0 26px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: stretch;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: var(--muted);
  font-size: 13px;
  width: max-content;
}

.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand2), var(--brand3));
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .12);
}

.hero h2 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -.5px;
}

.grad {
  background: linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .72));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 18px;
  align-items: center;
}

.subnote {
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.4;
  margin-top: 10px;
}

.hero-card {
  border-radius: var(--radius2);
  background: radial-gradient(800px 380px at 20% 0%, rgba(124, 58, 237, .25), transparent 55%), radial-gradient(800px 420px at 110% 10%, rgba(6, 182, 212, .18), transparent 55%), linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  padding: 18px;
  min-height: 100%;
}

.hero-card .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.mini-title {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.chip {
  font-size: 12px;
  color: rgba(255, 255, 255, .78);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .18);
}

.dash {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.kpi {
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .16);
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
  min-height: 96px;
}

.kpi:before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(240px 120px at 20% 20%, rgba(34, 197, 94, .18), transparent 55%), radial-gradient(240px 120px at 80% 0%, rgba(124, 58, 237, .20), transparent 55%);
  opacity: .9;
  pointer-events: none;
}

.kpi>* {
  position: relative;
}

.kpi .label {
  font-size: 12.5px;
  color: var(--muted2);
  margin: 0 0 8px;
}

.kpi .value {
  margin: 0;
  font-size: 26px;
  letter-spacing: -.3px;
}

.kpi .hint {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12.5px;
}

.spark {
  height: 34px;
  margin-top: 10px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(34, 197, 94, .22), rgba(6, 182, 212, .20), rgba(124, 58, 237, .22));
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
}

.spark:after {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(90deg, transparent 45%, rgba(255, 255, 255, .25), transparent 55%);
  transform: rotate(10deg) translateX(-60%);
  animation: sweep 5.5s var(--ease) infinite;
  opacity: .7;
}

@keyframes sweep {
  0% {
    transform: rotate(10deg) translateX(-70%)
  }
  40% {
    transform: rotate(10deg) translateX(75%)
  }
  100% {
    transform: rotate(10deg) translateX(75%)
  }
}

/* Sections */
.section {
  padding: 58px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.section h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -.3px;
  line-height: 1.1;
}

.section .lead {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
  font-size: 15.5px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.pill svg {
  opacity: .9;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.services {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  box-shadow: var(--shadow2);
  transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
  position: relative;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .18);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
}

.thumb {
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, .05);
  position: relative;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
  transition: transform .5s var(--ease), filter .5s var(--ease);
}

.card:hover .thumb img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.1);
}

.thumb:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .62));
  opacity: .95;
  pointer-events: none;
}

.card-body {
  padding: 14px 14px 16px;
}

.card h4 {
  margin: 0;
  font-size: 16.5px;
  letter-spacing: -.2px;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag {
  font-size: 12px;
  color: rgba(255, 255, 255, .76);
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .20);
  border: 1px solid rgba(255, 255, 255, .10);
}

/* Process */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.panel {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: radial-gradient(700px 300px at 15% 15%, rgba(6, 182, 212, .18), transparent 55%), linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  box-shadow: var(--shadow2);
  padding: 18px;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .14);
}

.step .num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, .95), rgba(6, 182, 212, .85));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 14px 40px rgba(124, 58, 237, .18);
  flex: 0 0 auto;
  font-weight: 700;
}

.step h5 {
  margin: 0;
  font-size: 15px;
}

.step p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.funnel {
  margin-top: 6px;
  display: grid;
  gap: 12px;
}

.bar {
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .14);
}

.bar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bar .label {
  color: var(--muted);
  font-size: 13.5px;
}

.bar .val {
  font-variant-numeric: tabular-nums;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .86);
}

.track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  overflow: hidden;
  margin-top: 10px;
}

.fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34, 197, 94, .95), rgba(6, 182, 212, .85), rgba(124, 58, 237, .92));
  transition: width 1.1s var(--ease);
}

/* Industries */
.grid.industries {
  grid-template-columns: repeat(4, 1fr);
}

.industry {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  box-shadow: var(--shadow2);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}

.industry:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .18);
}

.icon {
  width: 26px;        /* smaller */
  height: 26px;       /* smaller */
  border-radius: 8px; /* adjusted */
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .14);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.icon svg {
  width: 14px;
  height: 14px;
}


.industry h4 {
  margin: 0;
  font-size: 15.5px;
}

.industry p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.form {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: radial-gradient(700px 300px at 10% 0%, rgba(124, 58, 237, .20), transparent 55%), linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  box-shadow: var(--shadow2);
  padding: 18px;
}

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

label {
  display: block;
  font-size: 13px;
  color: var(--muted2);
  margin: 0 0 6px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .16);
  color: var(--text);
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}

input:focus,
textarea:focus,
select:focus {
  background-color: #0f172a;
  color: #fff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(99,102,241,0.5);
}


textarea {
  min-height: 120px;
  resize: vertical;
}

.fields .full {
  grid-column: 1 / -1;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
}

.mini {
  color: var(--muted2);
  font-size: 12.5px;
  line-height: 1.4;
}

.contact-card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  box-shadow: var(--shadow2);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

/* Footer */
footer {
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 0, 0, .0), rgba(0, 0, 0, .20));
}

.foot {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 18px;
  align-items: start;
}

.foot h5 {
  margin: 0 0 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .90);
}

.foot p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.foot a {
  color: rgba(255, 255, 255, .82);
}

.links {
  display: grid;
  gap: 8px;
}

.fine {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted2);
  font-size: 12.5px;
}

.fine .sep {
  opacity: .35;
}

.fine a {
  color: rgba(255, 255, 255, .70);
}

.kbd {
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  font-size: 12px;
  color: rgba(255, 255, 255, .78);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

/* Floating widgets */
.float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.fab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(10, 14, 25, .72);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
  color: rgba(255, 255, 255, .92);
  transition: transform .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}

.fab:hover {
  transform: translateY(-2px);
  background: rgba(15, 20, 34, .78);
}

.fab svg {
  width: 18px;
  height: 18px;
}

.fab.whatsapp {
  border-color: rgba(34, 197, 94, .28);
  background: linear-gradient(135deg, rgba(34, 197, 94, .20), rgba(10, 14, 25, .72));
}

.fab.call {
  border-color: rgba(6, 182, 212, .28);
  background: linear-gradient(135deg, rgba(6, 182, 212, .20), rgba(10, 14, 25, .72));
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(10, 14, 25, .78);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow2);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  max-width: min(720px, calc(100% - 44px));
  text-align: center;
  z-index: 70;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =========================================== */
/* RESPONSIVE DESIGN - Mobile First Approach */
/* =========================================== */

/* Tablet and below */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .grid.services {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .split {
    grid-template-columns: 1fr;
  }
  
  .grid.industries {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact {
    grid-template-columns: 1fr;
  }
  
  .foot {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Mobile devices - Show hamburger menu */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
  }
  
  body {
    max-width: 100vw;
  }
  
  .container {
    width: calc(100% - 30px) !important;
    padding: 0 15px;
  }
  
  /* Mobile navigation */
  nav ul {
    display: none !important;
  }
  
  .nav-ctas .btn:not(.hamburger) {
    display: none !important;
  }
  
  .hamburger {
    display: flex !important;
  }
  
  .mobile-panel {
    display: none;
  }
  
  header.open .mobile-panel {
    display: block;
  }
  
  /* Mobile-specific adjustments */
  .dash {
    grid-template-columns: 1fr;
  }
  
  .fields {
    grid-template-columns: 1fr;
  }
  
  .float {
    right: 12px;
    bottom: 12px;
  }
  
  .fab span {
    display: none;
  }
}

/* Small mobile devices */
@media (max-width: 560px) {
  .grid.services {
    grid-template-columns: 1fr;
  }
  
  .container {
    width: calc(100% - 28px);
  }
  
  .section {
    padding: 40px 0;
  }
  
  .hero {
    padding: 40px 0 20px;
  }
  
  .hero h2 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 15px;
  }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
  html, body {
    position: fixed;
    width: 100%;
    height: 100%;
  }
  
  body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* ============================= */
/* SMALL ICONS – CONTACT SECTION */
/* ============================= */

.contact-card .info .row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.contact-card .info .row svg {
  width: 16px;      /* SMALL ICON SIZE */
  height: 16px;     /* SMALL ICON SIZE */
  min-width: 16px;
  stroke-width: 1.5;
  opacity: 0.85;
}

.contact-card .info .row div {
  font-size: 14px;
  line-height: 1.5;
}

/* Optional: even smaller on mobile */
@media (max-width: 768px) {
  .contact-card .info .row svg {
    width: 14px;
    height: 14px;
  }
}

/* ===== Industry Dropdown Dark ===== */

#industry {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
}

#industry option {
  background-color: #020617;
  color: #ffffff;
}

#industry option[value=""] {
  color: #94a3b8;
}

#industry:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(99,102,241,.45);
}

/* ===== FORCE DARK FOR INDUSTRY SELECT ===== */

#industry {
  background: #020617 !important;
  color: #fff !important;
}

#industry option {
  background: #020617 !important;
  color: #fff !important;
}