/* ================================================================
   PT Nasional Siber Indonesia — Company Profile
   Dark Navy theme · Gold–Orange–Red accent
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Backgrounds */
  --bg:        #0d1b2e;
  --bg-alt:    #112236;
  --bg-dark:   #091525;
  --bg-dark2:  #060f1a;
  --card:      #152840;

  /* Gold / Orange / Red accent */
  --gold:    #c9951e;
  --orange:  #d96a10;
  --red:     #c02818;
  --grad:    linear-gradient(135deg, #c9951e 0%, #d96a10 55%, #c02818 100%);
  --grad-90: linear-gradient(90deg,  #c9951e,  #d96a10,  #c02818);

  /* Text */
  --text-1:  #eef2f8;
  --text-2:  #90aac8;
  --text-3:  #506880;

  /* Borders / shadows */
  --border:  rgba(255, 255, 255, 0.12);
  --shadow:  0 2px 12px rgba(0, 0, 0, 0.2);
  --shadow-h:0 8px 32px rgba(0, 0, 0, 0.35);

  /* Typography */
  --sans:    'Plus Jakarta Sans', system-ui, sans-serif;
  --mono:    'DM Mono', 'Courier New', monospace;

  /* Sizes */
  --radius:  10px;
  --rl:      14px;
  --wrap:    1200px;
  --pad:     96px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */

h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 14px;
}

.gold-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  padding: 5px 13px;
  border: 1px solid rgba(217, 106, 16, 0.22);
  border-radius: 100px;
  background: rgba(217, 106, 16, 0.06);
}

.section-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.section-label--light {
  color: #d4a820;
  border-color: rgba(212,168,32,0.3);
  background: rgba(212,168,32,0.08);
}
.section-label--light::before { background: #d4a820; }

.section-desc {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 580px;
}

.section-header { margin-bottom: 52px; }

/* ================================================================
   BUTTONS
   ================================================================ */

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  background: var(--grad);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(201,149,30,0.28);
  transition: box-shadow .18s, transform .18s, filter .18s;
}
.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,149,30,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  background: transparent;
  color: var(--text-1);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color .18s, background .18s, transform .18s;
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(217,106,16,0.04);
  transform: translateY(-2px);
}

/* ================================================================
   SECTIONS
   ================================================================ */

.section { padding: var(--pad) 0; }
.section-alt { background: var(--bg-alt); }

/* ================================================================
   NAVBAR
   ================================================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 68px;
  background: rgba(13, 27, 46, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

.nav-container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* white bg → multiply makes white invisible, gold stays gold */
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color .15s;
}
.nav-links a:hover { color: var(--text-1); }

.nav-cta {
  padding: 8px 20px !important;
  background: var(--grad) !important;
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  box-shadow: 0 2px 10px rgba(201,149,30,0.22);
  transition: filter .15s, transform .15s !important;
}
.nav-cta:hover { filter: brightness(1.08); transform: translateY(-1px) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ================================================================
   HERO
   ================================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 110px 32px 80px;
  max-width: var(--wrap);
  margin: 0 auto;
}

/* Subtle background decoration */
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--bg);
}

.hero-hex-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}

.hero-glow { display: none; }

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  display: block;
}

.hero-title {
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-1);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-desc em { font-style: normal; color: var(--orange); font-weight: 600; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 18px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--rl);
}

.hstat strong {
  display: block;
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  background: var(--grad-90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}

.hstat span {
  font-size: 10.5px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hstat-div { width: 1px; height: 32px; background: var(--border); }

/* Hero visual — logo */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-hero-wrap {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-hero-img {
  width: 600px;
  height: auto;
  animation: logo-float 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,149,30,0.12);
  animation: ring-pulse 5s ease-in-out infinite;
}
.logo-ring-1 { width: 250px; height: 250px; animation-delay: 0s; }
.logo-ring-2 { width: 300px; height: 300px; animation-delay: 1.8s; }
.logo-ring-3 { width: 350px; height: 350px; animation-delay: 3.6s; }

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  grid-column: span 2;
}

.scroll-mouse {
  display: block;
  width: 22px; height: 36px;
  border: 2px solid var(--border);
  border-radius: 11px;
  position: relative;
}

.scroll-wheel {
  display: block;
  width: 3px; height: 7px;
  background: var(--grad);
  border-radius: 2px;
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  animation: scroll-anim 2s ease-in-out infinite;
}

/* ================================================================
   TENTANG KAMI
   ================================================================ */

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

.about-text h2 { margin-bottom: 18px; }

.about-text p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.78;
  margin-bottom: 14px;
}
.about-text strong { color: var(--text-1); font-weight: 600; }

.about-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }

.badge {
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  background: rgba(217,106,16,0.07);
  border: 1px solid rgba(217,106,16,0.2);
  padding: 5px 13px;
  border-radius: 100px;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.about-card:hover {
  box-shadow: var(--shadow-h);
  transform: translateY(-3px);
  border-color: rgba(217,106,16,0.2);
}

.about-card-icon {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,149,30,0.08);
  border: 1px solid rgba(201,149,30,0.16);
  border-radius: 11px;
  margin-bottom: 12px;
}

.about-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 7px;
}

.about-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ================================================================
   VISI & MISI
   ================================================================ */

.vm-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: start;
}

.vm-vision-inner {
  background: var(--bg-dark);
  border-radius: var(--rl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.vm-vision-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
}

.vm-icon-wrap {
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,149,30,0.1);
  border: 1px solid rgba(201,149,30,0.22);
  border-radius: 13px;
  margin-bottom: 16px;
}

.vm-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.vm-vision-inner blockquote {
  font-size: 15.5px;
  color: #d0daea;
  line-height: 1.78;
  font-style: italic;
  font-weight: 400;
}

.vm-missions { padding-top: 2px; }

.mission-list {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  border-top: 1px solid var(--border);
}

.mission-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.mission-item:hover { padding-left: 8px; }

.mission-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--orange);
  font-weight: 500;
  width: 26px;
  flex-shrink: 0;
  padding-top: 2px;
}

.mission-body h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 5px;
}

.mission-body p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ================================================================
   LAYANAN
   ================================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-h);
  border-color: rgba(217,106,16,0.25);
}

.service-card-header {
  padding: 26px 26px 18px;
  border-bottom: 1px solid var(--border);
}

.svc-defense  { background: linear-gradient(135deg, #102040 0%, #162e54 100%); }
.svc-offensive{ background: linear-gradient(135deg, #28100a 0%, #3a1810 100%); }
.svc-industrial{background: linear-gradient(135deg, #221a08 0%, #302612 100%); }
.svc-intel    { background: linear-gradient(135deg, #140e30 0%, #1e1448 100%); }
.svc-identity { background: linear-gradient(135deg, #0a2018 0%, #103028 100%); }
.svc-training { background: linear-gradient(135deg, #0e1e30 0%, #162a42 100%); }

.svc-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,149,30,0.1);
  border: 1px solid rgba(201,149,30,0.2);
  border-radius: 12px;
  color: var(--orange);
  margin-bottom: 14px;
}

.service-card-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.3;
}

.service-card-body { padding: 18px 26px 26px; }

.service-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card-body ul li {
  font-size: 13.5px;
  color: var(--text-2);
  padding-left: 15px;
  position: relative;
  line-height: 1.5;
}

.service-card-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--grad);
}

/* ================================================================
   SEKTOR
   ================================================================ */

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sector-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  text-align: center;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  box-shadow: var(--shadow);
  transition: border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.sector-item:hover {
  border-color: rgba(217,106,16,0.3);
  color: var(--text-1);
  transform: translateY(-3px);
  box-shadow: var(--shadow-h);
}

.sector-icon {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,149,30,0.08);
  border: 1px solid rgba(201,149,30,0.15);
  border-radius: 11px;
  color: var(--orange);
}

/* ================================================================
   KEUNGGULAN
   ================================================================ */

.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.advantage-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.advantage-card:hover {
  box-shadow: var(--shadow-h);
  transform: translateY(-3px);
  border-color: rgba(217,106,16,0.2);
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.advantage-card:hover::before { transform: scaleX(1); }

.adv-number {
  font-family: var(--mono);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 58px;
  padding-top: 3px;
}

.adv-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 9px;
  line-height: 1.3;
}

.adv-content p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7;
}

.adv-accent { display: none; }

/* ================================================================
   NILAI-NILAI
   ================================================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.value-card:hover { box-shadow: var(--shadow-h); transform: translateY(-4px); }
.value-card:hover::after { transform: scaleX(1); }

.value-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,149,30,0.08);
  border: 1px solid rgba(201,149,30,0.15);
  border-radius: 14px;
  margin: 0 auto 14px;
}

.value-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 9px;
}

.value-card p {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.62;
}

/* ================================================================
   BERITA & ARTIKEL
   ================================================================ */

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.news-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-h);
  border-color: rgba(217,106,16,0.2);
}

.news-thumb {
  height: 120px;
  background: var(--thumb-color, var(--bg-alt));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-thumb--len {
  background: linear-gradient(135deg, #0a1f10 0%, #122e18 100%);
}

.news-thumb--pt {
  background: linear-gradient(135deg, #0d1628 0%, #152240 100%);
}

.news-source-badge {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(212,168,32,0.8);
  border: 1px solid rgba(212,168,32,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.news-cat--len {
  color: #4ade80;
  background: rgba(74,222,128,0.08);
  border-color: rgba(74,222,128,0.2);
}

.news-cat--pt {
  color: #60a5fa;
  background: rgba(96,165,250,0.08);
  border-color: rgba(96,165,250,0.2);
}

.news-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 1px, transparent 1px, transparent 40px);
}

.news-thumb-icon { position: relative; z-index: 1; }

.news-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.news-cat {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(217,106,16,0.07);
  border: 1px solid rgba(217,106,16,0.16);
  padding: 3px 9px;
  border-radius: 4px;
}

.news-date {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}

.news-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.4;
  margin-bottom: 9px;
}

.news-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.news-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  transition: gap .15s;
  margin-top: auto;
}
.news-read-btn:hover { gap: 9px; }
.news-read-btn::after { content: '→'; }

/* ================================================================
   MITRA
   ================================================================ */

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.partner-card {
  display: flex;
  gap: 22px;
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.partner-card:hover {
  box-shadow: var(--shadow-h);
  transform: translateY(-3px);
  border-color: rgba(217,106,16,0.25);
}

.partner-logo-area { flex-shrink: 0; }

.partner-emblem {
  width: 68px; height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pt-emblem  { background: var(--grad); color: #fff; }
.len-emblem {
  background: var(--bg-alt);
  border: 1.5px solid rgba(217,106,16,0.22);
  color: var(--orange);
}

.partner-info h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 7px;
}

.partner-info p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 14px;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  transition: gap .15s;
}
.partner-link:hover { gap: 9px; }

/* ================================================================
   KONTAK (dark section)
   ================================================================ */

.section-contact {
  background: var(--bg-dark);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  color: #fff;
  margin-bottom: 14px;
}

.contact-info > p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.72;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 18px; }

.contact-detail {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.cd-icon {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,149,30,0.1);
  border: 1px solid rgba(201,149,30,0.2);
  border-radius: 9px;
  color: var(--gold);
  flex-shrink: 0;
}

.cd-label {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2px;
}

.cd-val { font-size: 13.5px; color: rgba(255,255,255,0.65); min-height: 18px; }

.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}

.req { color: var(--orange); }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-1);
  outline: none;
  transition: border-color .18s, box-shadow .18s, background .18s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }
.form-field select option { background: var(--card); }
.form-field textarea { resize: vertical; min-height: 105px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--card);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217,106,16,0.1);
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%237a8fa8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-color: var(--bg-alt);
  padding-right: 34px;
}
.form-field select:focus { background-color: var(--card); }

.btn-submit { width: 100%; margin-top: 4px; }

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 13px;
  padding: 13px 16px;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius);
  font-size: 13.5px;
  color: #16a34a;
  line-height: 1.5;
}

/* ================================================================
   FOOTER
   ================================================================ */

.footer {
  background: var(--bg-dark2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 60px;
  margin-bottom: 44px;
}

/* dark footer → invert to white silhouette, no white box */
.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-tagline {
  font-size: 12.5px;
  color: rgba(255,255,255,0.28);
  margin-top: 8px;
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-col h5 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 14px;
  font-family: var(--mono);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.38); transition: color .15s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.22);
}

.footer-sub { opacity: 0.7; }

/* ================================================================
   REVEAL
   ================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay   { transition-delay: 0.13s; }

/* ================================================================
   KEYFRAMES
   ================================================================ */

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 0.12; transform: scale(1.04); }
}

@keyframes scroll-anim {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1200px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  :root { --pad: 72px; }

  .hero            { grid-template-columns: 1fr; min-height: auto; padding-top: 96px; }
  .hero-visual     { display: none; }
  .hero-scroll     { display: none; }

  .about-grid      { grid-template-columns: 1fr; gap: 40px; }
  .vm-grid         { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .sector-grid     { grid-template-columns: repeat(3, 1fr); }
  .advantage-grid  { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: repeat(3, 1fr); }
  .news-grid       { grid-template-columns: repeat(2, 1fr); }
  .partner-grid    { grid-template-columns: 1fr; }
  .contact-wrap    { grid-template-columns: 1fr; gap: 48px; }
  .footer-top      { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --pad: 56px; }

  .container { padding: 0 18px; }

  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: rgba(13, 27, 46, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 16px;
    display: none;
    z-index: 490;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 17px; padding: 13px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-cta { text-align: center; margin-top: 10px; }
  .nav-burger { display: flex; }

  .hero { padding: 88px 18px 56px; }
  .hero-stats { flex-direction: column; gap: 14px; }
  .hstat-div  { width: 36px; height: 1px; }

  .services-grid   { grid-template-columns: 1fr; }
  .sector-grid     { grid-template-columns: repeat(2, 1fr); }
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .news-grid       { grid-template-columns: 1fr; }
  .about-cards     { grid-template-columns: 1fr; }
  .form-row-2      { grid-template-columns: 1fr; }
  .footer-links    { grid-template-columns: 1fr 1fr; }
  .footer-bottom   { flex-direction: column; align-items: flex-start; }
  .advantage-card  { flex-direction: column; gap: 14px; }
  .adv-number      { font-size: 30px; width: auto; }
  .partner-card    { flex-direction: column; gap: 14px; }
}

@media (max-width: 480px) {
  h2             { font-size: 24px; }
  .sector-grid   { grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: 1fr; }
  .footer-links  { grid-template-columns: 1fr; }
}
