:root {
  --ink: #07101f;
  --muted: #657184;
  --line: #d8dfeb;
  --paper: #f4f7fb;
  --white: #ffffff;
  --accent: #ff7a18;
  --accent-dark: #0b1220;
  --blue: #005cff;
  --neon: #17f3b4;
  --charcoal: #05070d;
  --shadow: 0 26px 70px rgba(5, 7, 13, 0.18);
  --card-shadow: 0 18px 44px rgba(7, 16, 31, 0.08);
  --card-shadow-strong: 0 24px 56px rgba(5, 7, 13, 0.12);
  --radius: 16px;
  --radius-lg: 22px;
  --transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection {
  color: var(--white);
  background: var(--blue);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(16, 20, 28, 0.95);
  border-bottom: 1px solid rgba(23, 243, 180, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
  transition: padding 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(100px, 12vw, 140px);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Poppins", Arial, sans-serif;
}

.site-nav a {
    position: relative;
    padding: 8px 0;
    transition: color 180ms ease, transform 180ms ease;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--neon);
    transition: width 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    width: 100%;
}
.nav-quote::after {
    display: none;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--neon);
  transform: translateY(-1px);
}

.nav-quote  {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 96px;   /* pehle try */
    height: 46px;

    padding: 0 24px;

    color: var(--ink);
    background: var(--neon);
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(23, 243, 180, 0.2);
    transition:
    background-color .28s ease,
    transform .28s ease,
    box-shadow .28s ease;
}
.nav-quote:hover,
.nav-quote:focus-visible {
    color: var(--ink);
    background: #6dffd0;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(23, 243, 180, 0.32);
}
.nav-quote:active {
    transform: translateY(0);
    box-shadow: 0 6px 12px rgba(23, 243, 180, 0.22);
}
.top-slider {
  overflow: hidden;
  border-bottom: 1px solid rgba(23, 243, 180, 0.12);
  background: #07101f;
  color: rgba(255, 255, 255, 0.92);
}

.slider-track {
  display: flex;
  width: max-content;
  padding: 12px 0;
  animation: slideBanner 34s linear infinite;
}

.slider-track span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 34px;
  color: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  font-family: "Montserrat", Arial, sans-serif;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slider-track span::before {
  content: "";
  width: 4px;
height: 4px;
margin-right: 14px;
background: rgba(23, 243, 180, 0.85);
}

@keyframes slideBanner {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  min-height: calc(100vh - 92px);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(48px, 7vw, 104px) clamp(18px, 5vw, 72px) 64px;
  background: linear-gradient(115deg, rgba(5, 7, 13, 0.98) 0%, rgba(7, 16, 31, 0.95) 56%, rgba(0, 92, 255, 0.16) 100%);
  color: var(--white);
}

.hero-copy {
  max-width: 690px;
  padding-right: clamp(8px, 2vw, 18px);
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:8px 16px;

    background:linear-gradient(180deg,#101827,#07101f);
    color:var(--neon);

    border:1px solid rgba(23,243,180,.28);
    border-radius:999px;

    box-shadow:
        0 8px 22px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.06);

    font-size:.80rem;
    font-weight:700;
    letter-spacing:.22em;
    text-transform:uppercase;

    margin-bottom:20px;

    transition:.3s ease;
}
.eyebrow:hover{
    transform:translateY(-2px);
    box-shadow:
        0 14px 32px rgba(0,0,0,.22),
        0 0 18px rgba(23,243,180,.20);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(2.7rem, 4.7vw, 4.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 600;
  font-family: "Poppins", Arial, sans-serif;
}

.hero-copy p:not(.eyebrow),
.quote-copy p,
.process p,
.service-grid p,
.paper-list p,
.solutions-showcase p,
.tech-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .button {
  min-width: 168px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(23, 243, 180, 0.24);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 500;
}

.contact-strip a,
.direct-contact a,
.site-footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(255, 122, 24, 0.2);
}

.primary:hover,
.primary:focus-visible {
  background: #ff8f36;
}

.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(23, 243, 180, 0.46);
}

.hero-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #060b15;
  border: 1px solid rgba(23, 243, 180, 0.16);
}

.hero-media img {
  width: 100%;
  height: clamp(360px, 55vh, 620px);
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
  background: #060b15;
}

.hero-slider {
  position: relative;
  min-height: 420px;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slider img.is-active {
    opacity: 1;
}

/* Hero Image Position Control */

.hero-slide-1 {
    object-position: center 20%;
}

.hero-slide-2 {
    object-position: 35% 25%;
}

.hero-slide-3 {
    object-position: center top;
}

.hero-slide-4 {
    object-position: center center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--white);
}

.stats div {
  padding: 28px clamp(16px, 4vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats div:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 400;
}

.section {
  position: relative;
  padding: clamp(36px, 5vw, 64px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(26px, 6vw, 72px);
}

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

.service-grid article,
.paper-list article,
.quote-form,
.solutions-showcase article {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(0, 92, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-grid article,
.paper-list article,
.solutions-showcase article {
  overflow: hidden;
}

.service-grid article:hover,
.paper-list article:hover,
.solutions-showcase article:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-strong);
  border-color: rgba(23, 243, 180, 0.28);
}

.service-grid article {
  min-height: 220px;
  padding: 26px;
}

.service-grid span {
  display: inline-block;
  margin-bottom: 32px;
  color: #00916e;;
  font-weight: 600;
  font-family: "Montserrat", Arial, sans-serif;
}

.band {
  background: var(--charcoal);
  color: var(--white);
}

.band .eyebrow {
  color: var(--neon);
}

.band h2 {
  max-width: 760px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.process div {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    background: var(--white);

box-shadow: 0 12px 30px rgba(6,11,21,.08);

transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;

    background: var(--white);

    box-shadow: 0 12px 30px rgba(6,11,21,.08);

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}
.process div:hover {
    transform: translateY(-8px);

    border-color: rgba(23,243,180,.30);

    box-shadow: 0 22px 48px rgba(6,11,21,.16);
}
.process span {

    display: grid;

    width: 48px;
    height: 48px;

    margin-bottom: 20px;

    place-items: center;

    color: var(--ink);
    background: var(--neon);

    border-radius: 50%;

    box-shadow: 0 8px 18px rgba(23,243,180,.18);

    font-size: 1rem;
    font-weight: 700;
}
.process h3 {
    margin: 0 0 14px;
    font-size: 1.34rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--ink);
}

.process p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 1rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-intro {
    max-width: 760px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}
.industries-section,
.why-choose-section,
.faq-section {
  background: #f6f9ff;
}

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

.info-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px;
    background: var(--white);

    border: 1px solid rgba(23,243,180,.12);
    border-radius: var(--radius);

    box-shadow: 0 12px 30px rgba(6,11,21,.08);

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(23,243,180,.30);
    box-shadow: 0 22px 48px rgba(6,11,21,.16);
}

.card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 145, 110, 0.12);
color: #00916e;
  font-weight: 700;
  font-family: "Montserrat", Arial, sans-serif;
}

.info-card h3 {
  margin-bottom: 8px;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.quote-note {
  margin-top: 16px;
  color: var(--accent-dark);
  font-weight: 600;
}
.quote-eyebrow{
    color:var(--neon) !important;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid rgba(0, 92, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}
.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(23,243,180,.30);
    box-shadow: 0 20px 42px rgba(6,11,21,.14);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--accent-dark);
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.solutions-showcase {
  display: grid;
  grid-template-columns: 1.16fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.solutions-showcase article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  padding: 28px;
}

.solutions-showcase span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--neon);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Montserrat", Arial, sans-serif;
}
.solutions-showcase .visual-card span{
    display:inline-block;
    margin-top:32px;
    margin-bottom:12px;

    color:var(--neon);
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.solutions-showcase .visual-card h3{
    margin-top:0;
    margin-bottom:14px;

    font-size:1.38rem;
    line-height:1.3;
    font-weight:700;
    color:var(--ink);
}

.solutions-showcase .visual-card p{
    margin-bottom:24px;
    line-height:1.75;
}

.solutions-showcase h3 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.1;
}

.solutions-showcase p,
.paper-list p {
  color: var(--muted);
  line-height: 1.7;
}

.solutions-showcase .media-card {
    padding: 0;
    overflow: hidden;

    border: 1px solid rgba(255,255,255,.06);
    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}
.solutions-showcase .media-card:hover {
    transform: translateY(-8px);
    border-color: rgba(23,243,180,.28);
    box-shadow: 0 22px 44px rgba(0,0,0,.28);
}

.solutions-showcase .media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  background: #060b15;
}
.solutions-showcase .media-card div {
    padding: 24px;
}

.solutions-showcase .media-card span,
.solutions-showcase .media-card h3,
.solutions-showcase .media-card p {
  margin-right: 0px;
  margin-left: 0px;
}

.solutions-showcase .media-card span{
    display:inline-block;
    margin-top:32px;
    margin-bottom:12px;

    color:var(--neon);
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.solutions-showcase .media-card p {
    margin-bottom: 24px;
    line-height: 1.75;
}
.solutions-showcase .media-card h3 {
    margin-top: 0;
    margin-bottom: 14px;

    font-size: 1.38rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--ink);
}
.solutions-showcase .image-solution {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.image-solution img {
  width: 100%;
  height: 58%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
  background: var(--white);
}

.image-solution div {
  padding: 28px;
}

.image-solution span {
  margin-bottom: 20px;
  color: var(--neon);
}

.image-solution p {
  color: rgba(255, 255, 255, 0.72);
}

.visual-card {
  padding: 0 !important;
  overflow: hidden;
}

.visual-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    object-position:center 35%;
    display:block;
}

.visual-card,
.media-card{
    display:flex;
    flex-direction:column;
}

.visual-card div{
    padding: 24px;
}

.media-card div{
    padding: 24px;
}

.technology-section {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #07101f;
  border-top: 1px solid rgba(23, 243, 180, 0.18);
  border-bottom: 1px solid rgba(23, 243, 180, 0.18);
}

.tech-media {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.tech-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tech-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.tech-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tech-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: var(--white);
  background: rgba(0, 92, 255, 0.24);
  border: 1px solid rgba(23, 243, 180, 0.38);
  border-radius: 999px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.88rem;
}

.paper-band {
  background: #f8fbff;
  border-top: 1px solid rgba(0, 92, 255, 0.14);
  border-bottom: 1px solid rgba(0, 92, 255, 0.14);
}

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

.paper-list article {
  padding: 22px;
}

.paper-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    margin-bottom: 24px;

    border-radius: 50%;

    background: rgba(23,243,180,.12);
    color: #00916e;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;

    transition: .28s ease;
}

.paper-list strong {
  display: block;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.15;
}

.text-link {
  color: var(--blue);
  font-weight: 600;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: #eef4ff;
}

.quote-copy p {
  color: rgba(7, 16, 31, 0.78);
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: var(--accent-dark);
  font-size: 1.05rem;
  font-weight: 600;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--card-shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fbfaf6;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
select:focus,
textarea:focus,
a:focus-visible,
button:focus-visible {
  outline: none;
  border-color: rgba(0, 92, 255, 0.42);
  box-shadow: 0 0 0 3px rgba(0, 92, 255, 0.16);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

.wide {
    grid-column: 1 / -1;
    width: 78%;
    max-width: 420px;
    justify-self: center;
}

.form-result {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 600;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr auto 0.9fr;
  align-items: center;
  gap: 20px;
  padding: 32px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  border-top: 1px solid rgba(23, 243, 180, 0.16);
}

.footer-brand span {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
}

.footer-brand p {
  margin-top: 8px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer-contact {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.footer-connect {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.connect-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(23, 243, 180, 0.28);
  border-radius: 50%;
  text-decoration: none !important;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.connect-icon:hover,
.connect-icon:focus-visible {
  transform: translateY(-2px);
  background: rgba(0, 92, 255, 0.26);
  border-color: var(--neon);
}

.connect-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

@media (max-width: 920px) {
  .hero,
  .split,
  .technology-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    height: 52vh;
  }

  .technology-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .stats,
  .process,
  .solutions-showcase,
  .paper-list,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-showcase .image-solution {
    grid-row: auto;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-contact {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .hero {
    padding-inline: 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 90px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    color: var(--ink);
    font-weight: 600;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--blue);
  }

  .nav-quote {
    margin-top: 4px;
    text-align: center;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .hero-media img {
    min-height: 240px;
  }

  .tech-media img {
    aspect-ratio: 4 / 3;
  }

  .stats,
  .process,
  .solutions-showcase,
  .paper-list,
  .quote-form,
  .service-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .footer-connect {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.footer-legal {
    margin: 2px 0 8px;
    font-size: 0.30rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,.65);
    line-height: 1;
}
/* ================================
   ABOUT US MODAL
================================ */
.about-modal-box {
  position: relative;
  z-index: 1;
  width: min(1100px, 94vw);
  max-height: none;
  overflow: visible;
  padding: 40px 48px;
  background: var(--white);
  border: 1px solid rgba(23, 243, 180, 0.25);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}
.about-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.about-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.about-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(8px);
}

.about-modal.is-open .about-modal-box {
  transform: translateY(0) scale(1);
}
.about-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 28px;
}

.about-modal-box h2 {
  max-width: 600px;
  margin-bottom: 16px;
}

.about-modal-box > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.about-modal-close:hover {
  background: var(--paper);
}

.about-details > div {
  position: relative;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 15px;
}
.about-details h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 7px;
    font-size: 1rem;
}

.about-details h3::before {
    content: "✦";
    color: var(--neon);
    font-size: 13px;
    line-height: 1;
    flex-shrink: 0;
}
.about-details h3 {
  margin: 0 0 7px;
  font-size: 1rem;
}

.about-details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.about-details > div {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.about-details h3 {
  margin-bottom: 8px;
}

.about-details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

body.about-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .about-modal {
    padding: 14px;
  }
.about-modal-box {
  width: 100%;
  max-height: 90vh;
  padding: 28px 20px;
  overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.about-details {
  grid-template-columns: 1fr;
  gap: 10px;
}

.about-details > div {
  padding: 17px;
}
  .about-modal-box {
    padding: 28px 20px;
    max-height: 92vh;
  }

  .about-details {
    grid-template-columns: 1fr;
  }
}
/* ================================
   FLOATING WHATSAPP BUTTON
================================ */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 82px;
  z-index: 9999;

  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  color: var(--neon);
  background: #07101d;

  border: none;
  border-radius: 50%;

  box-shadow: 0 0 18px rgba(23, 243, 180, 0.28);

  text-decoration: none;

  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.whatsapp-float svg {
  width: 40px;
  height: 40px;

  fill: none;
  stroke: var(--neon);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-float svg path:first-child {
  fill: none;
  stroke: var(--neon);
}

.whatsapp-float svg path:nth-child(2) {
  fill: var(--neon);
  stroke: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);

  background: #0a1825;

  box-shadow:
    0 0 24px rgba(23, 243, 180, 0.42);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 4px;
}

.whatsapp-float:active {
  transform: translateY(-1px) scale(0.98);
}


/* Mobile */
@media (max-width: 640px) {

  .whatsapp-float {
    right: 16px;
    bottom: 70px;

    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 34px;
    height: 34px;
  }
}
/* =====================================================
   FINAL MOBILE HERO FIX
   ===================================================== */

@media (max-width: 760px) {

  /* Prevent horizontal overflow */
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: auto;
    box-sizing: border-box;
    padding: 36px 20px 48px;
    gap: 30px;
    overflow: hidden;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.15rem, 9vw, 2.8rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero-copy p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
  }

  /* Eyebrow */
  .eyebrow {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    line-height: 1.5;
  }

  /* Buttons */
  .hero-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  /* ---------- HIGHLIGHTS ---------- */

  .hero-highlights {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 8px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
  }

  .hero-highlights li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    min-width: 0;
    min-height: 36px;
    padding: 7px 11px;
    box-sizing: border-box;
    white-space: normal;
    overflow-wrap: break-word;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  /* Contact */
  .contact-strip {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 9px;
    margin-top: 20px;
    box-sizing: border-box;
  }

  .contact-strip a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  /* ---------- HERO IMAGES ---------- */

  .hero-media {
    display: block !important;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 300px;
    height: 300px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .hero-slider {
    display: block !important;
    position: relative;
    width: 100%;
    height: 300px;
    min-height: 300px;
  }

 .hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

  .hero-slider img.is-active {
    opacity: 1 !important;
    visibility: visible !important;
  }

}
/* ===== HERO IMAGE - 16:9 FIX ===== */

.hero-media {
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}


/* ===== MOBILE HERO IMAGE ===== */

@media (max-width: 760px) {

  .hero-media {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
  }

  .hero-slider {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
/* ===== DESKTOP HERO IMAGE SIZE ===== */

@media (min-width: 761px) {
  .hero-media {
    aspect-ratio: auto;
    height: 460px;
    max-height: 460px;
  }

  .hero-slider {
    aspect-ratio: auto;
    height: 100%;
  }

  .hero-slider img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}