/* =========================================================
   YR Software Services - Clean Website CSS
   Cleaned duplicate header/logo/menu blocks and kept one
   responsive design system for all existing pages.
   ========================================================= */

:root {
  --navy: #030914;
  --navy2: #061427;
  --panel: #0b1d34;
  --panel2: #102844;
  --line: rgba(255,255,255,.12);
  --text: #f4f8ff;
  --muted: #b9c7d8;
  --gold: #f4c44f;
  --gold2: #c68b1f;
  --blue: #0ea5e9;
  --cyan: #33d6ff;
  --green: #28c17c;
  --white: #ffffff;
  --max: 1180px;
  --radius: 18px;
  --header-h: 118px;
  --shadow: 0 24px 70px rgba(0,0,0,.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: linear-gradient(180deg, #030914 0%, #061529 45%, #030914 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

/* =========================================================
   Header / Navigation
   ========================================================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(3,9,20,.99), rgba(3,9,20,.94));
  border-bottom: 1px solid rgba(244,196,79,.28);
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(244,196,79,.55), rgba(14,165,233,.45), transparent);
}

.topbar .container.nav {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 20px;
  padding-right: 28px;
}

.nav {
  height: var(--header-h);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
  height: var(--header-h);
}

.brand.exact-logo-brand {
  gap: 18px;
  overflow: visible;
}

.exact-logo-brand img {
  width: 116px;
  height: 116px;
  min-width: 116px;
  max-width: 116px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.60)) drop-shadow(0 0 14px rgba(244,196,79,.24));
  transition: transform .25s ease, filter .25s ease;
}

.exact-logo-brand:hover img {
  transform: translateY(-1px) scale(1.03);
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.64)) drop-shadow(0 0 18px rgba(244,196,79,.30));
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 330px;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .9px;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0,0,0,.48);
}

.brand-text small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 2.6px;
  margin-top: 11px;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
  margin-left: 12px;
  margin-right: auto;
  transform: scale(.94);
  transform-origin: left center;
}

.menu a:not(.quote-btn) {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(244,248,255,.88);
  overflow: hidden;
  transition: color .22s ease, transform .22s ease;
}

.menu a:not(.quote-btn)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(244,196,79,.18), rgba(14,165,233,.12));
  opacity: 0;
  transition: opacity .22s ease;
}

.menu a:not(.quote-btn)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 18px;
  height: 2px;
  border-radius: 8px;
  background: var(--gold);
  transform: translateX(-50%) scaleX(0);
  transition: transform .22s ease;
}

.menu a:not(.quote-btn):hover,
.menu a:not(.quote-btn).active {
  color: var(--gold);
  transform: translateY(-1px);
}

.menu a:not(.quote-btn):hover::before,
.menu a:not(.quote-btn).active::before {
  opacity: 1;
}

.menu a:not(.quote-btn):hover::after,
.menu a:not(.quote-btn).active::after {
  transform: translateX(-50%) scaleX(1);
}

.mobile-toggle {
  position: relative;
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(244,196,79,.28);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  cursor: pointer;
}

.mobile-toggle span {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transition: transform .28s ease, opacity .2s ease, top .28s ease;
}

.mobile-toggle span:nth-child(1) { top: 15px; }
.mobile-toggle span:nth-child(2) { top: 22px; }
.mobile-toggle span:nth-child(3) { top: 29px; }
.mobile-toggle.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.mobile-toggle.is-open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.mobile-toggle.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
body.menu-open { overflow: hidden; }

/* =========================================================
   Buttons / Shared Components
   ========================================================= */

.btn,
.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #110b00;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 28px rgba(244,196,79,.17);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.btn:hover,
.quote-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 38px rgba(244,196,79,.26);
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(244,196,79,.55);
  box-shadow: none;
}

.menu .quote-btn {
  min-height: 44px;
  margin-left: 6px;
  padding: 0 24px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(244,196,79,.22), inset 0 1px 0 rgba(255,255,255,.35);
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gold {
  color: var(--gold);
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(14,165,233,.28), transparent 27%),
    radial-gradient(circle at 20% 0%, rgba(244,196,79,.12), transparent 28%),
    linear-gradient(135deg, #020712, #09203a);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(51,214,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51,214,255,.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 72%);
  opacity: .65;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 80px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(244,196,79,.28);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(14,165,233,.18);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: clamp(54px, 7vw, 84px);
  padding-bottom: clamp(44px, 6vw, 62px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 50px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 13px 0 18px;
  font-size: clamp(38px, 5.3vw, 68px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-visual {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(16,40,68,.86), rgba(4,12,26,.78));
  box-shadow: var(--shadow);
}
/* Hero right side POS screen */
.hero-visual .screen {
  min-height: 420px;
  padding: 48px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    rgba(7, 20, 38, .75);
  background-size: 70px 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 28px;
  align-content: center;
  justify-content: center;
}

/* Common metric box */
.hero-visual .metric {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;

  width: 100%;
  min-height: 110px;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 14px 35px rgba(0,0,0,.20);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Exact positions */
.hero-visual .metric.m1 {
  grid-column: 1;
  grid-row: 1;
}

.hero-visual .metric.m2 {
  grid-column: 2;
  grid-row: 1;
}

.hero-visual .metric.m3 {
  grid-column: 1;
  grid-row: 2;
}

.hero-visual .metric.m4 {
  grid-column: 2;
  grid-row: 2;
}

.hero-visual .metric b {
  display: block;
  font-size: 28px;
  line-height: 1.1;
  color: #f4c44f;
  margin-bottom: 8px;
}

.hero-visual .metric {
  color: #ffffff;
  font-size: 17px;
}


@media (max-width: 900px) {
  .hero-visual .screen {
    min-height: auto;
    padding: 32px;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 18px;
  }

  .hero-visual .metric {
    min-height: 95px;
    padding: 18px;
  }

  .hero-visual .metric b {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .hero-visual .screen {
    grid-template-columns: 1fr;
  }

  .hero-visual .metric.m1,
  .hero-visual .metric.m2,
  .hero-visual .metric.m3,
  .hero-visual .metric.m4 {
    grid-column: auto;
    grid-row: auto;
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
  border: 1px solid rgba(244,196,79,.35);
  border-radius: 17px;
  background: rgba(3,9,20,.58);
  overflow: hidden;
}

.stat {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 21px;
  border-right: 1px solid rgba(244,196,79,.2);
}

.stat:last-child {
  border-right: 0;
}

.stat span {
  font-size: 31px;
}

.stat b {
  display: block;
  color: var(--white);
  font-size: 22px;
}

/* =========================================================
   Sections / Cards / Layouts
   ========================================================= */

.section {
  padding: 76px 0;
  border-bottom: 1px solid rgba(255,255,255,.075);
}

.section.light {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}

.section-title {
  max-width: 850px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-title h2 {
  margin: 8px 0;
  font-size: 35px;
  line-height: 1.2;
}

.section-title p {
  margin: 0 auto;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card,
.sector,
.step,
.feature,
.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16,40,68,.9), rgba(6,20,39,.92));
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
}

.card {
  padding: 26px;
  transition: transform .25s ease, border-color .25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,196,79,.55);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border: 1px solid rgba(14,165,233,.38);
  border-radius: 16px;
  background: rgba(14,165,233,.12);
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.card h3,
.sector h3,
.step h3 {
  margin-top: 0;
}

.card p,
.card li,
.sector p,
.step p,
.feature p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature,
.sector,
.step {
  padding: 20px;
  background: rgba(255,255,255,.04);
}

.feature b {
  color: var(--gold);
}

.sectors,
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 17px;
}

.num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #170d00;
  font-weight: 900;
}

.cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border: 1px solid rgba(244,196,79,.38);
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(244,196,79,.18), rgba(14,165,233,.12));
  overflow: hidden;
}

.cta::before {
  content: "";
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  background: url("images/logo-exact-transparent-180.png") center / contain no-repeat;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.35));
}

/* =========================================================
   Inner Pages / Portfolio / Tables
   ========================================================= */

.page-hero {
  padding: 76px 0 50px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at right, rgba(14,165,233,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent);
}

.breadcrumbs {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .5px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.project-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #07172b;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.project-card .body {
  padding: 24px;
}

.badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 11px;
  border: 1px solid rgba(244,196,79,.28);
  border-radius: 999px;
  background: rgba(244,196,79,.14);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.tech {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 15px;
}

.pill {
  padding: 7px 11px;
  border: 1px solid rgba(14,165,233,.34);
  border-radius: 999px;
  background: rgba(14,165,233,.08);
  color: #d9f3ff;
  font-size: 13px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}

.table th,
.table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.table th {
  color: var(--gold);
}

.logo-showcase {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: center;
}

.logo-card {
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #030914;
  box-shadow: var(--shadow);
}

.logo-card img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.42));
}

.small-note {
  color: #9fb0c4;
  font-size: 14px;
}

.disclaimer {
  margin-top: 26px;
  padding: 18px;
  border: 1px dashed rgba(244,196,79,.55);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  color: #cbd5e1;
  font-size: 14px;
}

/* =========================================================
   Contact / Forms
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 26px;
}

.contact-box {
  padding: 27px;
  background: rgba(255,255,255,.04);
}

.form {
  display: grid;
  gap: 15px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #061326;
  color: var(--text);
  font: inherit;
}

.form textarea {
  min-height: 150px;
}

.success-note {
  color: var(--muted);
  font-size: 13px;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  padding: 48px 0 18px;
  border-top: 1px solid var(--line);
  background: #020611;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr 1fr;
  gap: 30px;
}

.footer .mini-logo {
  width: 145px;
  height: 145px;
  max-width: 145px;
  object-fit: contain;
  margin-bottom: 14px;
  background: transparent;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.35));
}

.footer h4 {
  margin: 0 0 13px;
  color: var(--gold);
}

.footer p,
.footer a {
  color: var(--muted);
}

.copyright {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #8fa0b3;
  text-align: center;
  font-size: 14px;
}

/* Optional class for future WhatsApp buttons instead of inline style */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: #25D366;
  color: #07140b;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1280px) {
  .exact-logo-brand img {
    width: 104px;
    height: 104px;
    min-width: 104px;
    max-width: 104px;
  }

  .brand-text {
    min-width: 270px;
  }

  .brand-text strong {
    font-size: 22px;
  }

  .brand-text small {
    font-size: 9.5px;
    letter-spacing: 2px;
  }

  .menu {
    transform: scale(.90);
  }
}

@media (max-width: 1100px) {
  :root {
    --max: 1000px;
    --header-h: 104px;
  }

  .brand-text {
    display: none;
  }

  .exact-logo-brand img {
    width: 96px;
    height: 96px;
    min-width: 96px;
    max-width: 96px;
  }

  .menu {
    transform: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .9fr);
    gap: 32px;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid rgba(244,196,79,.2);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 950px) {
  :root {
    --header-h: 92px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .topbar .container.nav {
    padding-left: 14px;
    padding-right: 14px;
  }

  .exact-logo-brand img {
    width: 84px;
    height: 84px;
    min-width: 84px;
    max-width: 84px;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: auto;
    max-height: calc(100vh - 112px);
    padding: 14px;
    border: 1px solid rgba(244,196,79,.22);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(6,18,34,.98), rgba(3,9,20,.98));
    box-shadow: 0 28px 80px rgba(0,0,0,.58);
    white-space: normal;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.98);
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
  }

  .menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .menu::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
      radial-gradient(circle at top right, rgba(14,165,233,.16), transparent 35%),
      radial-gradient(circle at bottom left, rgba(244,196,79,.12), transparent 32%);
    pointer-events: none;
  }

  .menu a:not(.quote-btn),
  .menu .quote-btn {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 0 18px;
    border-radius: 15px;
    font-size: 16px;
  }

  .menu a:not(.quote-btn) {
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.035);
  }

  .menu a:not(.quote-btn)::after {
    left: 18px;
    bottom: 10px;
    transform: scaleX(0);
    transform-origin: left;
  }

  .menu a:not(.quote-btn):hover::after,
  .menu a:not(.quote-btn).active::after {
    transform: scaleX(1);
  }

  .menu .quote-btn {
    justify-content: center;
    margin: 8px 0 0;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .logo-showcase {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: block;
    width: 100%;
    max-width: 680px;
  }

  .cta {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .section {
    padding: 54px 0;
  }

  .page-hero {
    padding: 54px 0 36px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.12;
    letter-spacing: -.8px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn,
  .cta .btn {
    width: 100%;
  }

  .stats,
  .feature-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(244,196,79,.2);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .project-card img {
    object-fit: contain;
    background: #061326;
  }

  .cta {
    display: grid;
    gap: 18px;
    padding: 26px;
  }

  .contact-box {
    padding: 22px;
  }
}

@media (max-width: 620px) {
  :root {
    --header-h: 82px;
  }

  .topbar .container.nav {
    padding-left: 10px;
    padding-right: 10px;
  }

  .exact-logo-brand img {
    width: 74px;
    height: 74px;
    min-width: 74px;
    max-width: 74px;
  }

  .mobile-toggle {
    width: 42px;
    height: 40px;
  }

  .hero .container {
    padding-top: 42px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(31px, 10.2vw, 40px);
  }

  .section-title h2 {
    font-size: clamp(26px, 8vw, 32px);
  }

  .lead {
    font-size: 16px;
  }

  .hero-visual {
    display: none;
  }

  .btn,
  .quote-btn {
    width: 100%;
    padding: 13px 16px;
  }

  .card,
  .sector,
  .step,
  .contact-box {
    padding: 22px;
  }

  .footer .mini-logo {
    width: 130px;
    height: 130px;
    max-width: 130px;
  }

  .cta::before {
    margin-bottom: 10px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 20px, var(--max));
  }

  .exact-logo-brand img {
    width: 68px;
    height: 68px;
    min-width: 68px;
    max-width: 68px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 30px;
  }

  .card,
  .sector,
  .step,
  .contact-box {
    padding: 18px;
  }
}
.visitor-counter{
  margin-top:22px;
  padding:12px 16px;
  border:1px solid rgba(244,196,79,.22);
  border-radius:14px;
  background:rgba(255,255,255,.035);
  color:#b9c7d8;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:center;
  font-size:14px;
}

.visitor-counter b{
  color:#f4c44f;
}

@media(max-width:620px){
  .visitor-counter{
    flex-direction:column;
    gap:6px;
    text-align:center;
  }
}