:root {
  --navy: #071a33;
  --navy-soft: #0d2646;
  --navy-ink: #102f57;
  --gold: #d9c500;
  --gold-soft: #f1df72;
  --light: #f7f9fc;
  --white: #ffffff;
  --text: #e9eff8;
  --muted: #b7c3d6;
  --line: rgba(255,255,255,0.10);
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.09);
  --shadow: 0 24px 60px rgba(1, 10, 24, 0.38);
  --shadow-soft: 0 14px 30px rgba(1, 10, 24, 0.20);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1220px;
    --primary-dark: #0b1f3a;
  --primary: #16345f;
  --primary-light: #f4f7fb;

  --accent-gold: #b8860b;
  --accent-gold-soft: #d4af37;
  --accent-gold-line: rgba(184, 134, 11, 0.34);

  --white-surface: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;

  --text-main: #ecf3ff;
  --text-body: #b7c3d6;
  --text-muted: #93a3b8;

  --glass-border: rgba(255, 255, 255, 0.10);  --primary-dark: #0b1f3a;
  --primary: #16345f;
  --primary-light: #f4f7fb;

  --accent-gold: #b8860b;
  --accent-gold-soft: #d4af37;
  --accent-gold-line: rgba(184, 134, 11, 0.34);

  --white-surface: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;

  --text-main: #ecf3ff;
  --text-body: #b7c3d6;
  --text-muted: #93a3b8;

  --glass-border: rgba(255, 255, 255, 0.10);
  body.theme-light p {
  color: var(--text-body);
}

body.theme-light h1,
body.theme-light h2,
body.theme-light h3 {
  color: var(--text-main);
}
}


body.theme-light h1,
body.theme-light h2,
body.theme-light h3 {
  color: var(--text-main);
}
  
body.theme-light {
  background: #f4f7fb;
  color: var(--text-main);
}

body.theme-light p,
body.theme-light li,
body.theme-light .section-heading p,
body.theme-light .glass-card p,
body.theme-light .project-copy p,
body.theme-light .contact-item p {
  color: var(--text-body);
}

body.theme-light h1,
body.theme-light h2,
body.theme-light h3,
body.theme-light h4,
body.theme-light .brand-name,
body.theme-light .nav-menu a {
  color: var(--text-main);
}

body.theme-light .glass-card,
body.theme-light .project-card,
body.theme-light .contact-item,
body.theme-light .modal-panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: 0 12px 32px rgba(16, 35, 63, 0.08);
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(217,197,0,0.10), transparent 18%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 58%, var(--navy-ink) 100%);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.25s ease, color 0.25s ease;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-shell { overflow-x: clip; }
.section, .site-header, .site-footer {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}
.section { padding: 5rem 0; }
.section-panel {
  position: relative;
}
.section-panel::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem;
  border-radius: 34px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--line);
  z-index: -1;
}

.site-header { padding-top: 1rem; }
.nav {
  position: sticky;
  top: 1rem;
  z-index: 100;
  display: flex;
  align-items: right;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 0.95rem 1.2rem;
  background: rgba(6, 22, 44, 0.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
body.theme-light .nav { background: rgba(255,255,255,0.82); }
.brand { display: flex; align-items: center; gap: 0.85rem; min-width: 0; }
.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(217,197,0,0.22);
}
.brand-copy { min-width: 0; }
.brand-name { display: block; font-weight: 800; color: var(--gold); }
.brand-tag { display: block; font-size: 0.78rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-menu { display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.nav-menu a:not(.btn), .theme-toggle {
  color: var(--text);
  font-weight: 600;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-menu a.nav-active {
  color: var(--gold);
  position: relative;
}
.nav-menu a.nav-active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 12px;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 7rem);
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
}
.hero h1,
.section-heading h2,
.vision-copy h2 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.045em;
}
.hero h1 { font-size: clamp(2.8rem, 5.2vw, 4.8rem); max-width: 12ch; }
.hero-title {
  margin: 0 0 16px;
  line-height: 0.98;
}

.hero-title-line {
  display: block;
}

.hero-title-line-1 {
  color: #ffffff;
}

.hero-title-line-2 {
  color: #d7ea1a;
}

.hero-highlight {
  color: #d7ea1a;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 22px;
}
.hero-lead,
.section-heading p,
.glass-card p,
.project-copy p,
.vision-copy p,
.contact-item p,
.contact-item a,
.modal-description,
.site-footer p,
.site-footer a { color: var(--muted); }
.hero-lead { max-width: 62ch; line-height: 1.75; margin: 1.2rem 0 1.5rem; font-size: 1.02rem; }
.hero-actions,
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-trust { margin-top: 1.35rem; }
.hero-trust div {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
}
.hero-trust i { color: var(--gold); }

.hero-visual,
.glass-card,
.project-card,
.contact-visual,
.contact-card-panel,
.logo-slot,
.industry-card,
.vision-media,
.modal-panel {
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.clients-slider {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  position: relative;
}

.clients-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scrollClients 20s linear infinite;
}

.client {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  padding: 18px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  white-space: nowrap;
}

/* animation */

@keyframes scrollClients {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}
.hero-visual, .vision-media, .contact-visual { padding: 1rem; position: relative; overflow: hidden; }
.hero-main-image, .vision-media img, .contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.hero-main-image { min-height: 560px; }
.hero-float {
  position: absolute;
  padding: 0.8rem 1rem;
  background: rgba(7,26,51,0.82);
  border: 1px solid rgba(217,197,0,0.26);
  color: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  max-width: 210px;
}
body.theme-light .hero-float { background: rgba(255,255,255,0.92); color: #071a33; }
.hero-float-a { left: 1.3rem; bottom: 1.4rem; }
.hero-float-b { right: 1.3rem; top: 1.4rem; }

.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading h2, .vision-copy h2 { font-size: clamp(2rem, 4vw, 3.2rem); }

.cards-grid, .projects-grid, .logo-wall, .industry-grid, .vision-layout, .contact-layout {
  display: grid;
  gap: 1.25rem;
}
.services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.projects-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.logo-wall { grid-template-columns: repeat(6, minmax(0, 1fr)); margin-bottom: 1.4rem; }
.industry-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vision-layout { grid-template-columns: 0.98fr 1.02fr; align-items: center; }
.contact-layout { grid-template-columns: 0.92fr 1.08fr; align-items: start; }

.glass-card, .project-card, .contact-card-panel { padding: 1.45rem; position: relative; overflow: hidden; }
.glass-card::before, .project-card::before, .contact-card-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(217,197,0,0.08), transparent 28%, transparent 72%, rgba(217,197,0,0.06));
  pointer-events: none;
}
.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.icon-badge {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(217,197,0,0.10);
  border: 1px solid rgba(217,197,0,0.24);
  color: var(--gold);
  font-size: 1.15rem;
}
.price-chip, .project-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}
.glass-card h3, .project-copy h3, .contact-item h3, .site-footer h3, .site-footer h4 { margin: 0 0 0.8rem; }
.glass-card h3, .project-copy h3 { font-size: 1.28rem; }
.mini-list, .vision-list, .modal-columns ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
}
.mini-list li, .vision-list li, .modal-columns li {
  position: relative;
  padding-left: 1rem;
  margin: 0.55rem 0;
  color: var(--text);
}
.mini-list li::before, .vision-list li::before, .modal-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.featured-card { border-color: rgba(217,197,0,0.24); }

.project-media { overflow: hidden; border-radius: 22px; margin-bottom: 1rem; }
.project-media img { width: 100%; height: 260px; object-fit: cover; display: block; }
.logo-slot {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.logo-slot img { max-width: 100%; max-height: 58px; object-fit: contain; filter: grayscale(1) brightness(1.2); }
.logo-slot:hover img { filter: grayscale(0) brightness(1); }
.logo-fallback { display: none; color: var(--muted); font-weight: 700; }
.industry-card { padding: 1.2rem; text-align: center; }
.industry-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.85rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--gold);
  background: rgba(217,197,0,0.10);
  border: 1px solid rgba(217,197,0,0.25);
  font-size: 1.2rem;
}
.industry-card h3 { margin: 0; font-size: 1.02rem; }

.vision-copy p { line-height: 1.75; }
.vision-list { margin-top: 1rem; }
.vision-media img { min-height: 460px; }

.contact-visual img { min-height: 620px; }
.contact-card-panel { padding: 1.4rem; }
.contact-list { display: grid; gap: 0.9rem; margin-bottom: 1.2rem; }
.contact-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.contact-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(217,197,0,0.10);
  border: 1px solid rgba(217,197,0,0.24);
  color: var(--gold);
  font-size: 1.15rem;
}
.contact-item p { margin: 0; line-height: 1.65; }
.contact-form { margin-top: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row.single { grid-template-columns: 1fr; }
.contact-form label span {
  display: block;
  margin-bottom: 0.48rem;
  font-weight: 600;
  color: var(--text);
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  padding: 0.92rem 1rem;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: rgba(217,197,0,0.46);
  box-shadow: 0 0 0 4px rgba(217,197,0,0.10);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.92rem 1.28rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 220, 120, 0.42),
    transparent
  );
  transform: skewX(-24deg);
  transition: left 260ms ease;
}

.btn:hover::after {
  left: 140%;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #0b1730;
  box-shadow: 0 12px 28px rgba(217,197,0,0.24);
}
.btn-secondary {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-full { width: 100%; }

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.site-footer h3, .site-footer h4 { color: var(--gold); }
.site-footer a { display: block; margin: 0.5rem 0; }

/* --- MODERN TWO-STATE MODAL SYSTEM --- */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.2rem;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 20, 0.85);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  background: #1a1e2e;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  border-radius: 24px;
  border: 1px solid rgba(212, 184, 74, 0.2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 184, 74, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.98);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.is-open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(212, 184, 74, 0.1);
  border-color: #d4b84a;
  color: #d4b84a;
  transform: rotate(90deg);
}

/* --- State Manager --- */
.modal-state-container {
  display: flex;
  width: 200%;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  overflow: hidden;
}

.modal-state {
  width: 50%;
  padding: 3rem;
  flex-shrink: 0;
  max-height: 90vh;
  overflow-y: auto;
}

.modal.show-form .modal-state-container {
  transform: translateX(-50%);
}

/* --- Detail View (State 1) --- */
.modal-service-header {
  margin-bottom: 2rem;
}

.modal-service-icon {
  width: 64px;
  height: 64px;
  background: rgba(212, 184, 74, 0.1);
  border: 1px solid rgba(212, 184, 74, 0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4b84a;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.service-label {
  display: block;
  color: #d4b84a;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.modal-title {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 800;
  margin: 0 0 1rem;
}

.modal-desc {
  color: rgba(200, 205, 220, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 60ch;
  margin-bottom: 2.5rem;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.modal-grid-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.8rem;
}

.modal-grid-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-grid-col li {
  color: rgba(200, 205, 220, 0.8);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.modal-grid-col li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #d4b84a;
  font-size: 0.8rem;
}

/* --- Quote Form (State 2) --- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(200, 205, 220, 0.6);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

.back-link:hover {
  color: #d4b84a;
}

.service-tag {
  display: inline-block;
  background: rgba(212, 184, 74, 0.1);
  color: #d4b84a;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.form-title {
  font-size: 2rem;
  color: #fff;
  margin: 0 0 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-title i {
  color: #d4b84a;
  font-size: 1.4rem;
}

.quote-form-group {
  margin-bottom: 1.5rem;
}

.quote-form-group label {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.quote-form-group input,
.quote-form-group textarea {
  width: 100%;
  background: #0d111b;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1rem;
  color: #fff;
  transition: all 0.3s;
}

.quote-form-group input:focus,
.quote-form-group textarea:focus {
  border-color: #d4b84a;
  background: rgba(212, 184, 74, 0.05);
  outline: none;
  box-shadow: 0 0 0 4px rgba(212, 184, 74, 0.1);
}

.submit-success {
  text-align: center;
  padding: 3rem 0;
  display: none;
}

.submit-success i {
  font-size: 4rem;
  color: #d4b84a;
  margin-bottom: 1.5rem;
  display: block;
}

.submit-success h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.submit-success p {
  color: rgba(200, 205, 220, 0.7);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .modal-state {
    padding: 2rem;
  }
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .modal-title {
    font-size: 1.8rem;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

@media (max-width: 1100px) {
  .products-grid, .projects-grid, .logo-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero, .vision-layout, .contact-layout, .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 840px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--navy-soft);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .services-grid, .products-grid, .projects-grid, .logo-wall, .industry-grid, .form-row, .modal-columns, .site-footer { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero h1 { max-width: none; }
  .hero-main-image, .contact-visual img, .vision-media img { min-height: 380px; }
  .hero-float { position: static; max-width: none; margin-top: 1rem; }
}

.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #ffffff;
  font-size: 1.65rem;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.28);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.36);
}
.interactive-card {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
  overflow: hidden;
}

.interactive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      280px circle at var(--mx, 50%) var(--my, 50%),
      rgba(212, 175, 55, 0.22),
      transparent 40%
    );
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
  z-index: 1;
}

.interactive-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  padding: 1px;
  background:
    linear-gradient(
      120deg,
      transparent 10%,
      rgba(212, 175, 55, 0.95) 35%,
      rgba(255, 220, 120, 1) 50%,
      rgba(212, 175, 55, 0.95) 65%,
      transparent 90%
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transform: translateX(-35%);
  transition:
    opacity 160ms ease,
    transform 260ms ease;
  pointer-events: none;
  z-index: 2;
}

.interactive-card:hover::before {
  opacity: 1;
}

.interactive-card:hover::after {
  opacity: 1;
  transform: translateX(0%);
}

.interactive-card:hover {
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(212, 175, 55, 0.24),
    0 0 24px rgba(212, 175, 55, 0.12);
}

.interactive-card > * {
  position: relative;
  z-index: 3;
}
@media (max-width: 560px) {
  .section, .site-header, .site-footer { width: min(var(--max-width), calc(100% - 1rem)); }
  .section { padding: 4rem 0; }
  .nav { padding: 0.85rem 1rem; }
  .brand-tag { display: none; }
}
