/* ===================================================================
   Brijesh Softwares — Global Stylesheet
   Mobile-first, glassmorphism, Ocean Deep (navy + teal + aqua) theme
   =================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --navy: #0c2340;
  --primary: #1a4a6e;
  --secondary: #2d8a9e;
  --highlight: #5cbdb9;
  --accent: #5cbdb9;

  --bg: #f6fafb;
  --card-bg: rgba(255, 255, 255, 0.78);
  --section-bg: #eef4f6;
  --border: #d8e4e8;

  --text: #0c2340;
  --text-soft: #5a6b7a;

  --grad-primary: linear-gradient(135deg, #2d8a9e 0%, #5cbdb9 55%, #d6f0ee 100%);
  --grad-cta: linear-gradient(135deg, #1a4a6e 0%, #2d8a9e 100%);
  --grad-hero: linear-gradient(160deg, #eef5f7 0%, #e2eef1 100%);

  --shadow-sm: 0 4px 16px rgba(12, 35, 64, 0.07);
  --shadow-md: 0 12px 32px rgba(12, 35, 64, 0.12);
  --shadow-lg: 0 24px 60px rgba(26, 74, 110, 0.22);

  --radius: 20px;
  --radius-lg: 30px;
  --maxw: 1200px;
  --header-h: 72px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: "Space Grotesk", sans-serif; font-weight: 700; line-height: 1.15; color: var(--text); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -0.02em; }
h3 { font-size: 1.3rem; font-weight: 700; }
p { color: var(--text-soft); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }
.section--alt { background: var(--section-bg); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); }
.section-head p { margin-top: 0.9rem; font-size: 1.05rem; }
.eyebrow {
  display: inline-block; font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem; border-radius: 999px;
  background: rgba(45, 138, 158, 0.12);
}
.text-grad {
  background: linear-gradient(120deg, #1a4a6e, #2d8a9e);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.6rem; border-radius: 999px; transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--grad-cta); color: #fff; box-shadow: 0 10px 24px rgba(26, 74, 110, 0.30); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(26, 74, 110, 0.40); }
.btn--ghost { background: var(--card-bg); color: var(--text); border: 1px solid var(--border); backdrop-filter: blur(8px); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-md); }
.btn--light { background: #fff; color: var(--text); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--block { width: 100%; }

/* ---------- Glass card ---------- */
.glass {
  background: var(--card-bg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ---------- Floating background blobs ---------- */
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; z-index: 0; pointer-events: none; }
.blob--1 { width: 380px; height: 380px; background: var(--secondary); top: -120px; left: -100px; }
.blob--2 { width: 320px; height: 320px; background: var(--accent); bottom: -120px; right: -80px; opacity: 0.4; }
.blob--3 { width: 260px; height: 260px; background: var(--highlight); top: 40%; right: 10%; opacity: 0.35; }
.section > .container { position: relative; z-index: 1; }

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); z-index: 1000;
  display: flex; align-items: center; transition: all 0.35s var(--ease);
  background: rgba(250, 250, 252, 0.7); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.header.scrolled { background: rgba(250, 250, 252, 0.92); border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.18rem; letter-spacing: -0.02em; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px; background: var(--grad-cta);
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(26, 74, 110, 0.35);
}
.brand__mark svg { width: 22px; height: 22px; }
.nav__links { display: none; align-items: center; gap: 0.4rem; }
.nav__links a {
  font-family: "Space Grotesk", sans-serif; font-weight: 500; font-size: 0.95rem;
  color: var(--text); padding: 0.5rem 0.9rem; border-radius: 999px; transition: all 0.25s;
}
.nav__links a:hover, .nav__links a.active { color: var(--primary); background: rgba(45, 138, 158, 0.10); }
.nav__cta { display: none; }
.nav__toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 8px; border-radius: 10px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 999;
  background: rgba(250, 250, 252, 0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
  padding: 1rem 1.25rem 1.5rem; transform: translateY(-120%); transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block; font-family: "Space Grotesk", sans-serif; font-weight: 500; font-size: 1.05rem;
  padding: 0.85rem 0.5rem; border-bottom: 1px solid var(--border); color: var(--text);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 1rem; }

/* ===================================================================
   HERO
   =================================================================== */
.hero { padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: 3.5rem; background: var(--grad-hero); position: relative; overflow: hidden; }
.hero__grid { display: grid; gap: 2.5rem; align-items: center; }
.hero__title { font-size: clamp(2.3rem, 6vw, 3.8rem); letter-spacing: -0.03em; }
.hero__sub { margin-top: 1.3rem; font-size: 1.08rem; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 1.8rem; margin-top: 2.6rem; }
.hero__stat .num { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.7rem; color: var(--text); }
.hero__stat .lbl { font-size: 0.85rem; color: var(--text-soft); }

/* ---------- Dashboard mockup (CSS/SVG) ---------- */
.mockup { position: relative; perspective: 1400px; }
.dash {
  position: relative; border-radius: var(--radius-lg); padding: 1.1rem;
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7); box-shadow: var(--shadow-lg);
  transform: rotateY(-8deg) rotateX(4deg); transition: transform 0.6s var(--ease);
}
.mockup:hover .dash { transform: rotateY(-3deg) rotateX(2deg); }
.dash__bar { display: flex; gap: 6px; margin-bottom: 0.9rem; }
.dash__bar i { width: 11px; height: 11px; border-radius: 50%; background: #d7dbe8; }
.dash__bar i:nth-child(1) { background: #ff6b6b; } .dash__bar i:nth-child(2) { background: #ffc8a2; } .dash__bar i:nth-child(3) { background: #8fd8d2; }
.dash__row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0.8rem; margin-bottom: 0.8rem; }
.dash__panel { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 0.9rem; }
.dash__panel h5 { font-family: "Space Grotesk", sans-serif; font-size: 0.7rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.55rem; }
.dash__metric { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.4rem; }
.dash__metric span { font-size: 0.75rem; color: var(--accent); font-weight: 600; margin-left: 0.3rem; }
.bars { display: flex; align-items: flex-end; gap: 7px; height: 64px; margin-top: 0.4rem; }
.bars i { flex: 1; border-radius: 6px 6px 0 0; background: var(--grad-cta); opacity: 0.85; animation: grow 1.2s var(--ease) both; }
@keyframes grow { from { height: 0; } }
.donut { width: 86px; height: 86px; border-radius: 50%; margin: 0.3rem auto; background: conic-gradient(var(--primary) 0 62%, var(--secondary) 62% 84%, var(--accent) 84% 100%); position: relative; }
.donut::after { content: "62%"; position: absolute; inset: 18px; background: #fff; border-radius: 50%; display: grid; place-items: center; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 0.85rem; }
.dash__list li { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.dash__list li:last-child { border-bottom: none; }
.dash__list .pill { font-size: 0.66rem; font-weight: 600; padding: 0.15rem 0.55rem; border-radius: 999px; background: rgba(143, 216, 210, 0.25); color: #2f7d76; }

.float-card {
  position: absolute; padding: 0.8rem 1rem; border-radius: 16px; z-index: 3;
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; font-weight: 600;
  font-family: "Space Grotesk", sans-serif; animation: floaty 4s ease-in-out infinite;
}
.float-card .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.float-card--a { top: -18px; right: 8%; } .float-card--a .ic { background: var(--grad-cta); }
.float-card--b { bottom: -16px; left: -10px; animation-delay: 1.2s; } .float-card--b .ic { background: linear-gradient(135deg, #8fd8d2, #5cc4bc); }
.float-card small { display: block; font-weight: 500; color: var(--text-soft); font-size: 0.7rem; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===================================================================
   GENERIC GRID CARDS
   =================================================================== */
.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

.card { padding: 1.7rem; border-radius: var(--radius); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  margin-bottom: 1.1rem; color: #fff; background: var(--grad-cta); box-shadow: 0 8px 20px rgba(26, 74, 110, 0.28);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.55rem; }
.card p { font-size: 0.95rem; }
.card__link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.1rem; font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.card__link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.card:hover .card__link svg { transform: translateX(4px); }

/* Feature mini cards */
.feature { display: flex; gap: 1rem; padding: 1.3rem; border-radius: var(--radius); }
.feature .tick { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(143, 216, 210, 0.2); color: #2f7d76; }
.feature h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.feature p { font-size: 0.9rem; }

/* ===================================================================
   PROCESS TIMELINE
   =================================================================== */
.steps { display: grid; gap: 1.2rem; position: relative; }
.step { display: flex; gap: 1.1rem; padding: 1.3rem 1.5rem; border-radius: var(--radius); align-items: flex-start; }
.step__num {
  flex: none; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; color: #fff; background: var(--grad-cta);
  box-shadow: 0 8px 18px rgba(26, 74, 110, 0.28);
}
.step h3 { font-size: 1.08rem; margin-bottom: 0.25rem; }
.step p { font-size: 0.9rem; }

/* ===================================================================
   PRODUCT SHOWCASE
   =================================================================== */
.showcase { display: grid; gap: 2.5rem; }
.show-row { display: grid; gap: 1.8rem; align-items: center; }
.show-row__visual { border-radius: var(--radius-lg); padding: 1.2rem; background: var(--grad-primary); box-shadow: var(--shadow-md); }
.show-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 1.1rem; box-shadow: var(--shadow-sm); }
.show-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.9rem; }
.show-card__top h5 { font-family: "Space Grotesk", sans-serif; font-size: 0.85rem; }
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 0.9rem; }
.kpi { background: var(--section-bg); border-radius: 12px; padding: 0.7rem; text-align: center; }
.kpi b { font-family: "Space Grotesk", sans-serif; font-size: 1.05rem; display: block; }
.kpi span { font-size: 0.66rem; color: var(--text-soft); }
.show-row h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.chk { margin-top: 1rem; display: grid; gap: 0.55rem; }
.chk li { display: flex; gap: 0.6rem; font-size: 0.92rem; color: var(--text); align-items: flex-start; }
.chk li svg { flex: none; width: 18px; height: 18px; color: var(--accent); margin-top: 3px; }
.metric-badge { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.1rem; padding: 0.5rem 0.9rem; border-radius: 999px; background: rgba(45, 138, 158, 0.12); color: var(--primary); font-weight: 600; font-size: 0.85rem; font-family: "Space Grotesk", sans-serif; }

/* ===================================================================
   CASE STUDIES
   =================================================================== */
.case { padding: 1.7rem; border-radius: var(--radius); border-top: 4px solid var(--primary); }
.case h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.case dl { display: grid; gap: 0.8rem; }
.case dt { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); }
.case dd { font-size: 0.92rem; color: var(--text-soft); margin-top: 0.15rem; }
.case .result { color: var(--text); font-weight: 600; }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.quote { padding: 1.8rem; border-radius: var(--radius); }
.quote__mark { font-family: "Space Grotesk", sans-serif; font-size: 3rem; line-height: 0.6; color: var(--secondary); }
.quote p { font-size: 0.98rem; color: var(--text); margin: 0.6rem 0 1.2rem; }
.quote__who { display: flex; align-items: center; gap: 0.8rem; }
.quote__av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: "Space Grotesk", sans-serif; font-weight: 700; color: #fff; background: var(--grad-cta); }
.quote__who b { font-family: "Space Grotesk", sans-serif; font-size: 0.95rem; display: block; }
.quote__who span { font-size: 0.8rem; color: var(--text-soft); }
.stars { color: #ffb84d; margin-bottom: 0.4rem; letter-spacing: 2px; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 0.9rem; }
.faq__item { border-radius: var(--radius); overflow: hidden; }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.15rem 1.4rem; font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1rem; text-align: left; color: var(--text); }
.faq__q .ic { flex: none; width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: rgba(45, 138, 158, 0.12); color: var(--primary); transition: transform 0.3s; font-size: 1.2rem; }
.faq__item.open .faq__q .ic { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a p { padding: 0 1.4rem 1.2rem; font-size: 0.95rem; }

/* ===================================================================
   CTA BAND
   =================================================================== */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem; text-align: center; background: var(--grad-cta); color: #fff; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 560px; margin: 1rem auto 0; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 2rem; }

/* ===================================================================
   TECHNOLOGY
   =================================================================== */
.tech-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.tech-col { padding: 1.6rem; border-radius: var(--radius); }
.tech-col h3 { font-size: 1.05rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.tech-col h3 .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); }
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip { font-family: "Space Grotesk", sans-serif; font-weight: 500; font-size: 0.85rem; padding: 0.5rem 0.95rem; border-radius: 999px; background: var(--section-bg); border: 1px solid var(--border); }

/* ===================================================================
   SERVICE DETAIL (services.html)
   =================================================================== */
.svc { display: grid; gap: 1.8rem; align-items: center; padding: 2rem 0; }
.svc + .svc { border-top: 1px solid var(--border); }
.svc__no { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 3rem; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.svc h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin: 0.4rem 0 0.7rem; }
.svc .twolist { display: grid; gap: 1.3rem; grid-template-columns: 1fr; margin-top: 1.2rem; }
.svc .twolist h4 { font-family: "Space Grotesk", sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); margin-bottom: 0.6rem; }

/* ===================================================================
   PAGE HEADER (inner pages)
   =================================================================== */
.page-hero { padding: calc(var(--header-h) + 3rem) 0 3rem; background: var(--grad-hero); text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
.page-hero p { max-width: 620px; margin: 1.1rem auto 0; font-size: 1.05rem; }
.crumbs { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 0.9rem; }
.crumbs a:hover { color: var(--primary); }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-grid { display: grid; gap: 1.8rem; grid-template-columns: 1fr; }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-family: "Space Grotesk", sans-serif; font-weight: 500; font-size: 0.85rem; margin-bottom: 0.45rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font-family: inherit; font-size: 0.95rem; color: var(--text);
  padding: 0.8rem 1rem; border-radius: 12px; border: 1px solid var(--border);
  background: #fff; transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(45, 138, 158, 0.18);
}
.form-field.invalid input, .form-field.invalid select, .form-field.invalid textarea { border-color: #ff6b6b; }
.form-error { color: #e0455e; font-size: 0.78rem; margin-top: 0.35rem; display: none; }
.form-field.invalid .form-error { display: block; }
.form-row { display: grid; gap: 0 1rem; grid-template-columns: 1fr; }
.form-note { font-size: 0.8rem; color: var(--text-soft); margin-top: 0.8rem; text-align: center; }
.form-success { display: none; padding: 1rem 1.2rem; border-radius: 12px; background: rgba(143, 216, 210, 0.18); color: #2f7d76; font-weight: 600; font-size: 0.9rem; margin-bottom: 1.2rem; }
.form-success.show { display: block; }

.info-list { display: grid; gap: 1.1rem; }
.info-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-item .ic { flex: none; width: 44px; height: 44px; padding: 10px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: var(--grad-cta); }
.info-item h4 { font-family: "Space Grotesk", sans-serif; font-size: 0.95rem; margin-bottom: 0.15rem; }
.info-item p, .info-item a { font-size: 0.9rem; color: var(--text-soft); }
.info-item a:hover { color: var(--primary); }
.map-box { margin-top: 1.5rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 260px; position: relative; background: var(--section-bg); }
.map-box iframe { width: 100%; height: 100%; border: 0; }

/* ===================================================================
   LEGAL PAGES
   =================================================================== */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.35rem; margin: 2rem 0 0.7rem; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { font-size: 0.96rem; color: var(--text-soft); margin-bottom: 0.8rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; }
.legal ul li { margin-bottom: 0.4rem; }
.legal .updated { font-size: 0.85rem; color: var(--text-soft); font-style: italic; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: #0c2340; color: #c7cbe0; padding: 3.5rem 0 1.5rem; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; margin-bottom: 2.5rem; }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer p { color: #9aa0bd; font-size: 0.9rem; }
.footer h4 { font-family: "Space Grotesk", sans-serif; color: #fff; font-size: 0.95rem; margin-bottom: 1rem; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a, .footer__contact li { color: #9aa0bd; font-size: 0.9rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--secondary); }
.footer__contact li { display: flex; gap: 0.6rem; margin-bottom: 0.7rem; align-items: flex-start; }
.footer__contact svg { flex: none; width: 17px; height: 17px; margin-top: 3px; color: var(--secondary); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; text-align: center; font-size: 0.85rem; color: #80869f; }
.footer__bottom a:hover { color: var(--secondary); }

/* ===================================================================
   FLOATING WIDGETS
   =================================================================== */
.floaters { position: fixed; right: 18px; bottom: 18px; z-index: 900; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md); transition: transform 0.3s; }
.fab:hover { transform: scale(1.1); }
.fab--wa { background: #25d366; }
.fab--call { background: var(--grad-cta); }
.fab svg { width: 26px; height: 26px; }
.to-top { position: fixed; left: 18px; bottom: 18px; z-index: 900; width: 46px; height: 46px; border-radius: 50%; background: var(--card-bg); border: 1px solid var(--border); backdrop-filter: blur(10px); color: var(--text); display: grid; place-items: center; box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.3s var(--ease); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { color: var(--primary); border-color: var(--primary); }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (min-width: 600px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .svc .twolist { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .show-row { grid-template-columns: 1fr 1fr; }
  .show-row--rev .show-row__visual { order: 2; }
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
  .steps--row { grid-template-columns: repeat(2, 1fr); }
  .svc { grid-template-columns: 0.8fr 2.2fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 1024px) {
  .steps { grid-template-columns: 1fr; }
}
