/* ═══════════════════════════════════════════════════════
   PRIME PACKAGING — Minimalist Design System
   Palette: White · #0f0f0f · #1d4ed8 · #f7f7f7 · #e5e7eb
   Font: Inter
════════════════════════════════════════════════════════ */

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #0f172a;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Tokens ── */
:root {
  --ink: #0f0f0f;
  --ink-light: #475569;
  --ink-faint: #94a3b8;
  --blue: #1d4ed8;
  --blue-dark: #1e40af;
  --surface: #f7f7f7;
  --border: #e5e7eb;
  --white: #ffffff;
  --radius: 0.625rem;
  --nav-h: 4.25rem;
  --max-w: 1200px;
  --section-py: 6rem;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Layout Utility ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.section-body {
  font-size: 1.05rem;
  color: var(--ink-light);
  max-width: 540px;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.25);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-light);
  border-color: var(--border);
}
.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.btn-submit {
  width: 100%;
  justify-content: center;
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 1px 0 var(--border),
    0 4px 24px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo h2 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo a {
  text-decoration: none;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo-name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  white-space: nowrap;
}

.nav-logo-name strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue, #1d4ed8);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.nav-link {
  display: block;
  padding: 0.4rem 0.875rem;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  background: var(--surface);
}

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  border-radius: var(--radius);
  margin-left: 0.5rem;
}
.nav-cta:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background var(--transition);
}
.nav-toggle:hover {
  background: var(--surface);
}

.bar {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: #0c0c0e;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Subtle grid overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Glow orb */
.hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(29, 78, 216, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero-slider {
  width: 100%;
}

.slide {
  display: none;
}
.slide.active {
  display: flex;
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #f8fafc;
  margin-bottom: 1.75rem;
  max-width: 720px;
  animation: fadeUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero-content h1 em {
  font-style: normal;
  color: #60a5fa;
}

.hero-content p {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #475569;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeUp 1s ease 0.8s forwards;
  opacity: 0;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, #475569, transparent);
}

/* ════════════════════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════════════════════ */
.stats-strip {
  background: #0c0c0e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2.5rem 0;
}

.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0.75rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════
   CLIENT SHOWCASE
════════════════════════════════════════════════════════ */
.client-showcase {
  padding: 3.5rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.client-showcase-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 2rem;
}

.client-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
}

.client-slider::before,
.client-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.client-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}
.client-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}

.client-slides-container {
  display: flex;
  animation: slideLoop 28s linear infinite;
  will-change: transform;
}

.client-slide {
  min-width: 180px;
  flex-shrink: 0;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-slide img {
  max-height: 48px;
  max-width: 140px;
  object-fit: contain;
}

/* ════════════════════════════════════════════════════════
   PRODUCTS SECTION
════════════════════════════════════════════════════════ */
.products {
  padding: var(--section-py) 0;
  background: var(--white);
}

.products-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.products-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.products-header p {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.catalog-downloads {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.products-gallery,
.products-gallery-extended {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.product-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.product-item:hover {
  border-color: #bfdbfe;
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.08);
  transform: translateY(-2px);
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-item:hover .product-image img {
  transform: scale(1.04);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 14, 0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-item:hover .product-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  padding: 1rem;
}

.overlay-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

.view-btn {
  background: transparent;
  color: #f8fafc;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.view-btn:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.view-btn i {
  margin-right: 6px;
}

.products-actions {
  text-align: center;
  padding-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

/* Product Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(12, 12, 14, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-content {
  background: var(--white);
  border-radius: 1rem;
  width: 100%;
  max-width: 760px;
  overflow: hidden;
  animation: fadeUp 0.28s ease;
  border: 1px solid var(--border);
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--transition);
}
.close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.modal-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
}

.modal-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.modal-info p {
  color: var(--ink-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.modal-actions .btn {
  flex: 1;
  min-width: 130px;
}

/* ════════════════════════════════════════════════════════
   CERTIFICATIONS
════════════════════════════════════════════════════════ */
.certifications {
  padding: var(--section-py) 0;
  background: #0f172a;
  border-top: none;
  border-bottom: none;
}

.certifications .section-label {
  color: #60a5fa;
}

.certifications h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 3.5rem;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.cert-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: all var(--transition);
}

.cert-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.35);
  transform: translateY(-2px);
}

.cert-placeholder i {
  font-size: 2.25rem;
  color: #60a5fa;
  margin-bottom: 1rem;
  display: block;
}

.cert-placeholder p {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* ════════════════════════════════════════════════════════
   LEADERSHIP / CEO
════════════════════════════════════════════════════════ */
.leadership,
.ceo-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.leadership-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.leadership-item.reverse {
  direction: rtl;
}
.leadership-item.reverse > * {
  direction: ltr;
}

.leader-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 180px;
  height: 180px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.image-placeholder i {
  font-size: 3.5rem;
  color: var(--ink-faint);
}

.leadership-content {
  padding: 2rem 0;
}

.quote {
  margin-bottom: 2rem;
}
.quote i {
  font-size: 1.75rem;
  color: var(--blue);
  margin-bottom: 0.875rem;
  display: block;
}
.quote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.leader-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}
.leader-info p {
  font-size: 0.875rem;
  color: var(--ink-faint);
}

/* ════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════ */
.about {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.about-text p {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

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

.about-text .btn {
  margin-top: 1.25rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--transition);
}

.feature-item:hover {
  border-color: #bfdbfe;
  transform: translateX(4px);
}

.feature-item i {
  font-size: 1.375rem;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════ */
.services {
  padding: var(--section-py) 0;
  background: var(--white);
}

.services h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-item {
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: all var(--transition);
}

.service-item:hover {
  border-color: #bfdbfe;
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.08);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.375rem;
}

.service-icon i {
  font-size: 1.3rem;
  color: var(--blue);
}

.service-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
}

.service-content p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════
   NEWS
════════════════════════════════════════════════════════ */
.news {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.news h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 3.5rem;
}

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

.news-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}

.news-item:hover {
  border-color: #bfdbfe;
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.08);
  transform: translateY(-2px);
}

.news-image {
  height: 180px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.news-image i {
  font-size: 2.5rem;
  color: #93c5fd;
}

.news-content {
  padding: 1.75rem;
}

.news-date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.625rem;
}

.news-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.news-content p {
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 1.125rem;
}

.news-link {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--transition);
}
.news-link:hover {
  gap: 0.625rem;
}

/* ════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════ */
.contact {
  padding: var(--section-py) 0;
  background: #0c0c0e;
  border-top: none;
}

.contact .section-label {
  color: #60a5fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.875rem;
}

.contact-details p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

.contact-details i {
  color: #60a5fa;
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-faint);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.footer {
  background: #0c0c0e;
  color: #f8fafc;
  padding: 5rem 0 2.5rem;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-about h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-contact p {
  font-size: 0.825rem;
  color: #475569;
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}
.footer-contact p:hover {
  color: #93c5fd;
}

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: #475569;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: #f8fafc;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all var(--transition);
  border: 1px solid #334155;
}
.social-link:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copyright p {
  font-size: 0.8rem;
  color: #475569;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: #475569;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover {
  color: #94a3b8;
}

/* ════════════════════════════════════════════════════════
   SCROLL TO TOP
════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 999;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.scroll-top:hover {
  background: var(--blue);
  transform: translateY(-2px);
}
.scroll-top.show {
  display: flex;
}
