/* CNI Modern Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #0f172a;
  --secondary: #1e293b;
  --accent: #ea580c;
  --accent-light: #f97316;
  --white: #ffffff;
  --light: #f8fafc;
  --border: #e2e8f0;
  --text: #1e293b;
  --text-muted: #64748b;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 70px;
  display: flex; align-items: center;
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo-img {
  height: 48px; width: auto; display: block; object-fit: contain;
  filter: none;
  transition: filter 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.35));
}
.nav-logo-mark { display: none; }
.nav-logo-text { display: none; }
.nav-logo-sub { display: none; }
.nav-logo-name {
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
}
.nav-logo-line1 {
  font-size: 13px; font-weight: 800; letter-spacing: 0.13em;
  color: white; line-height: 1.2; text-transform: uppercase;
}
.nav-logo-line2 {
  font-size: 13px; font-weight: 800; letter-spacing: 0.13em;
  line-height: 1.2; text-transform: uppercase;
}
.nav-logo-line2 .wht { color: white; }
.nav-logo-line2 .org { color: var(--accent-light); }

.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links > a, .nav-dropdown > a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 13px; border-radius: 8px;
  transition: all 0.18s; white-space: nowrap;
}
.nav-links > a:hover, .nav-dropdown > a:hover {
  color: white; background: rgba(255,255,255,0.09);
}
.nav-links .nav-cta {
  background: var(--accent); color: white !important;
  padding: 8px 20px; margin-left: 8px; border-radius: 10px;
}
.nav-links .nav-cta:hover {
  background: var(--accent-light); transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(234,88,12,0.35);
}

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #1a2744; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 8px; min-width: 240px;
  opacity: 0; pointer-events: none;
  transition: all 0.2s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 500;
  text-decoration: none; transition: all 0.15s;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.09); color: white; }

/* Second-level flyout menus */
.nav-flyout-item { position: relative; }
.nav-flyout-trigger { display: flex !important; align-items: center; justify-content: space-between; gap: 20px; }
.nav-flyout-menu {
  position: absolute; left: calc(100% + 6px); top: -8px;
  min-width: 210px; background: #0d1526;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 8px;
  opacity: 0; pointer-events: none; transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5); z-index: 202;
}
.nav-flyout-item:hover .nav-flyout-menu { opacity: 1; pointer-events: all; transform: translateX(0); }
.nav-flyout-menu a {
  display: block; padding: 9px 12px; border-radius: 7px;
  color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 500;
  text-decoration: none; transition: all 0.15s; white-space: nowrap;
}
.nav-flyout-menu a:hover { background: rgba(255,255,255,0.09); color: white; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: white; border-radius: 2px; transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #070e1c 0%, #0f172a 45%, #1a1f3a 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 2rem 80px;
}
.hero::after {
  content: '';
  position: absolute; inset: -10px;
  background: url('images/hero_graphics/hero_home.png') center center / cover no-repeat;
  filter: brightness(0.32);
  z-index: 0;
}
.hero-shine {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.hero-shine::after,
.hero-shine::before {
  content: '';
  position: absolute;
  top: -40%; left: -60%;
  height: 180%;
  background: linear-gradient(
    108deg,
    transparent 25%,
    rgba(180,220,255,0.03) 39%,
    rgba(210,240,255,0.11) 50%,
    rgba(180,220,255,0.03) 61%,
    transparent 75%
  );
  animation: heroShine 8s linear infinite;
}
.hero-shine::after  { width: 32%; }
.hero-shine::before { width: 18%; animation-delay: 0.45s; opacity: 0.7; }
@keyframes heroShine {
  0%    { transform: translateX(0);    opacity: 0; }
  3%    { opacity: 1; }
  22%   { opacity: 1; }
  27%   { transform: translateX(530%); opacity: 0; }
  27.5% { transform: translateX(0);   opacity: 0; }
  100%  { transform: translateX(0);   opacity: 0; }
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(234,88,12,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 70%, rgba(59,130,246,0.08) 0%, transparent 50%);
  z-index: 1;
}
.hero-grid-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-grid-bg::after {
  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: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(234,88,12,0.12); border: 1px solid rgba(234,88,12,0.3);
  color: #fb923c; padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.03em;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: #fb923c;
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-left h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700; color: white;
  line-height: 1.15; margin-bottom: 24px;
  letter-spacing: -0.015em;
}
.hero-left h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-light), #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-slogan {
  display: inline-block;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fb923c;
  border-left: 3px solid #fb923c; padding-left: 10px;
  margin-bottom: 20px;
}
.hero-left p {
  font-size: 1.0625rem; color: rgba(255,255,255,0.65);
  max-width: 520px; margin-bottom: 40px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hero-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 24px;
  transition: all 0.3s;
}
.hero-stat-card:hover {
  background: rgba(234,88,12,0.08);
  border-color: rgba(234,88,12,0.25);
  transform: translateY(-3px);
}
.hero-stat-card:first-child { grid-column: 1 / -1; }
.hero-stat-num {
  font-size: 2.8rem; font-weight: 900; color: white;
  line-height: 1; letter-spacing: -0.03em;
}
.hero-stat-num em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-light), #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-top: 6px; font-weight: 500;
}
.hero-stat-icon {
  width: 40px; height: 40px;
  background: rgba(234,88,12,0.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light); margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px;
  font-size: 14px; font-weight: 600; font-family: var(--font);
  text-decoration: none; transition: all 0.2s;
  cursor: pointer; border: none; letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--accent); color: white;
  box-shadow: 0 4px 14px rgba(234,88,12,0.3);
}
.btn-primary:hover {
  background: var(--accent-light); transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(234,88,12,0.4);
}
.btn-ghost {
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12); color: white;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent); color: white;
  box-shadow: 0 4px 14px rgba(234,88,12,0.3);
}

/* ===== SECTIONS ===== */
section { padding: 100px 2rem; }
.container { max-width: 1280px; margin: 0 auto; }

.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(234,88,12,0.08); color: var(--accent);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; padding: 5px 14px; border-radius: 100px;
  margin-bottom: 14px; border: 1px solid rgba(234,88,12,0.15);
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800;
  color: var(--primary); line-height: 1.18; margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: normal; color: var(--accent);
}
.section-sub {
  font-size: 1.0625rem; color: var(--text-muted);
  max-width: 580px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===== ABOUT ===== */
.about { background: var(--light); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; margin-top: 64px;
}
.about-text p {
  color: var(--text-muted); font-size: 15px; line-height: 1.8;
  margin-bottom: 16px;
}
.about-text p strong { color: inherit; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.about-feature {
  display: flex; gap: 14px; align-items: flex-start;
  background: white; padding: 18px 20px; border-radius: 12px;
  border: 1px solid var(--border); transition: all 0.25s;
}
.about-feature:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.about-feature-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(234,88,12,0.1); display: flex;
  align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.about-feature-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.about-feature-text p { font-size: 13px; color: var(--text-muted); }
.about-visual {
  background: linear-gradient(145deg, var(--primary) 0%, #1a2744 100%);
  border-radius: 24px; padding: 48px; position: relative; overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute; top: -30%; right: -30%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(234,88,12,0.25) 0%, transparent 65%);
}
.about-visual::after {
  content: '';
  position: absolute; bottom: -20%; left: -20%;
  width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 65%);
}
.about-visual-inner { position: relative; z-index: 1; }
.about-visual h3 {
  font-size: 1.4rem; font-weight: 800; color: white;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.about-visual p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.75; margin-bottom: 24px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8); font-size: 14px;
}
.about-list li::before {
  content: '';
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(234,88,12,0.2); border: 1px solid rgba(234,88,12,0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services { background: white; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.service-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-5px);
  border-color: rgba(234,88,12,0.25);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(234,88,12,0.08); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--accent); color: white;
}
.service-card h3 {
  font-size: 15px; font-weight: 700;
  margin-bottom: 10px; color: var(--primary);
}
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ===== PRODUCTS (dark) ===== */
.products { background: var(--primary); }
.products .section-tag {
  background: rgba(234,88,12,0.15);
  border-color: rgba(234,88,12,0.2);
}
.products .section-title { color: white; }
.products .section-sub { color: rgba(255,255,255,0.55); }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; margin-top: 52px;
}
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.3s;
}
.product-card:hover {
  background: rgba(234,88,12,0.08);
  border-color: rgba(234,88,12,0.35);
  transform: translateY(-4px);
}
.product-tag {
  display: inline-block;
  background: rgba(234,88,12,0.15); color: #fb923c;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 100px;
  margin-bottom: 14px;
}
.product-card h3 {
  color: white; font-size: 15px; font-weight: 700;
  margin-bottom: 10px;
}
.product-card p { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.65; }
.product-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(234,88,12,0.15); color: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

/* ===== PARTNERS ===== */
.partners { background: var(--light); }
.partners-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 52px;
}
.partner-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  position: relative; transition: all 0.25s;
}
.partner-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-3px);
  border-color: rgba(234,88,12,0.2);
}
.partner-card-flag {
  position: absolute; top: 12px; right: 14px;
  font-size: 20px; line-height: 1; z-index: 3;
}
.partner-card-img {
  width: 100%; height: 110px; object-fit: cover; display: block;
}
.partner-card-img-fade {
  position: absolute; left: 0; right: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(255,255,255,0.95) 100%);
}
.partner-card-body { padding: 20px 24px 24px; }
.partner-card-logo {
  height: 36px; width: auto; object-fit: contain; margin-bottom: 12px; display: block;
}
.partner-flag { display: none; }
.partner-name {
  font-size: 15px; font-weight: 700;
  color: var(--primary); margin-bottom: 4px;
}
.partner-country {
  font-size: 11px; color: var(--accent); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px;
}
.partner-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== NEWS ===== */
.news { background: white; }
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 52px;
}
.news-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.25s;
}
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.news-card-top {
  padding: 20px; background: var(--primary);
  position: relative; overflow: hidden;
}
.news-card-top::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 40%; background: rgba(234,88,12,0.12);
}
.news-category {
  display: inline-block;
  background: var(--accent); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
  margin-bottom: 8px; position: relative; z-index: 1;
}
.news-card-top h3 {
  color: white; font-size: 15px; font-weight: 700;
  line-height: 1.4; position: relative; z-index: 1;
}
.news-card-body { padding: 20px; }
.news-card-body p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.news-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-size: 13px; font-weight: 600;
  text-decoration: none; margin-top: 14px; transition: gap 0.2s;
}
.news-link:hover { gap: 10px; }

/* ===== CONTACT ===== */
.contact { background: var(--light); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; margin-top: 64px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; padding: 22px; border-radius: var(--radius);
  border: 1px solid var(--border); transition: all 0.2s;
}
.contact-item:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.contact-icon {
  width: 44px; height: 44px; background: rgba(234,88,12,0.08);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: var(--accent); flex-shrink: 0;
}
.contact-text h4 {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px;
}
.contact-text p { font-size: 14px; color: var(--primary); font-weight: 500; }
.contact-text a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
.contact-text a:hover { color: var(--accent-light); }

.contact-form {
  background: white; padding: 44px; border-radius: 20px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.contact-form h3 {
  font-size: 1.5rem; font-weight: 800; color: var(--primary);
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.contact-form p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.07em; margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--font); font-size: 14px;
  color: var(--text); background: white;
  transition: all 0.2s; outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234,88,12,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
footer {
  background: #070e1c; color: rgba(255,255,255,0.6);
  padding: 80px 2rem 36px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px; line-height: 1.75;
  max-width: 280px; color: rgba(255,255,255,0.5);
}
.footer-col h4 {
  color: white; font-size: 13px; font-weight: 700;
  margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.07em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 14px; transition: color 0.2s; display: inline-flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: all 0.2s;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: white; }
.footer-bottom {
  padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== PAGE HEADER (subpages) ===== */
.page-header {
  background: linear-gradient(145deg, #070e1c 0%, #0f172a 60%, #1a2744 100%);
  padding: 150px 2rem 90px; position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 45%, rgba(234,88,12,0.18) 0%, transparent 55%);
}
.page-header-inner {
  max-width: 1280px; margin: 0 auto; position: relative; z-index: 1;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }
.breadcrumb-cur { color: var(--accent-light); font-weight: 600; }
.page-header h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 700;
  color: white; line-height: 1.15; margin-bottom: 18px;
  letter-spacing: -0.015em;
}
.page-header p {
  font-size: 1.0625rem; color: rgba(255,255,255,0.6);
  max-width: 620px; line-height: 1.75;
}

/* ===== PAGE CONTENT ===== */
.page-content { padding: 80px 2rem; }
.page-content-inner { max-width: 1280px; margin: 0 auto; }
.content-prose {
  max-width: 780px;
  font-size: 15px; color: var(--text-muted); line-height: 1.8;
}
.content-prose h2 {
  font-size: 1.5rem; font-weight: 800; color: var(--primary);
  margin: 40px 0 16px; letter-spacing: -0.01em;
}
.content-prose h3 {
  font-size: 1.125rem; font-weight: 700; color: var(--primary);
  margin: 28px 0 12px;
}
.content-prose p { margin-bottom: 16px; }
.content-prose ul, .content-prose ol {
  margin: 16px 0 24px 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.content-prose li { color: var(--text-muted); }
.content-prose strong { color: var(--primary); font-weight: 700; }

/* ===== TWO-COL CONTENT ===== */
.content-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 48px;
}
.content-card {
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; transition: all 0.25s;
}
.content-card:hover { box-shadow: var(--shadow-lg); }
.content-card h3 {
  font-size: 1.0625rem; font-weight: 700; color: var(--primary);
  margin-bottom: 12px;
}
.content-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== TEAM ===== */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px; margin-top: 52px;
}
.team-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; text-align: center;
  transition: all 0.25s;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: white;
  margin: 0 auto 16px;
}
.team-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.team-card .role {
  font-size: 12px; color: var(--accent); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px;
}
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.data-table th {
  background: var(--primary); color: white;
  padding: 12px 16px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; text-align: left;
}
.data-table th:first-child { border-radius: 10px 0 0 0; }
.data-table th:last-child { border-radius: 0 10px 0 0; }
.data-table td {
  padding: 14px 16px; font-size: 14px;
  border-bottom: 1px solid var(--border); color: var(--text-muted);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--light); }
.data-table tr:hover td { background: rgba(234,88,12,0.04); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }
.faq-item {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-question {
  padding: 22px 24px; font-size: 15px; font-weight: 700;
  color: var(--primary); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none; transition: background 0.2s;
}
.faq-question:hover { background: var(--light); }
.faq-question .faq-arrow {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(234,88,12,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px; font-size: 14px; color: var(--text-muted);
  line-height: 1.7; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 22px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), #1a2744);
  padding: 80px 2rem; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(234,88,12,0.2) 0%, transparent 60%);
}
.cta-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; position: relative; z-index: 1; flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800;
  color: white; letter-spacing: -0.02em;
}
.cta-inner p { color: rgba(255,255,255,0.6); font-size: 15px; margin-top: 8px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  bottom: 0; /* fill screen so it scrolls */
  background: #0f172a; border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 16px 32px; z-index: 999;
  flex-direction: column; gap: 2px;
  overflow-y: auto; /* scroll when content exceeds screen */
}
.mobile-menu.open { display: flex; }
/* Direct top-level links (Partners, News) */
.mobile-menu > a {
  display: block; color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 15px; font-weight: 500; padding: 12px 14px;
  border-radius: 10px; transition: background 0.2s;
}
.mobile-menu > a:hover { background: rgba(255,255,255,0.07); color: white; }
.mobile-menu .mobile-divider {
  height: 1px; background: rgba(255,255,255,0.1);
  margin: 6px 0;
}
/* Accordion sections */
.mmenu-section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; margin: 2px 0;
}
.mmenu-hdr {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 14px; color: rgba(255,255,255,0.85); font-size: 15px;
  font-weight: 600; cursor: pointer; border-radius: 12px;
  transition: background 0.2s; user-select: none;
}
.mmenu-hdr:hover { background: rgba(255,255,255,0.06); }
.mmenu-hdr.active {
  background: rgba(234,88,12,0.12);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px 12px 0 0;
}
.mmenu-arrow {
  flex-shrink: 0; transition: transform 0.25s;
  color: rgba(255,255,255,0.4); margin-left: 8px;
}
.mmenu-hdr.active .mmenu-arrow { transform: rotate(180deg); color: rgba(234,88,12,0.8); }
/* Accordion body — hidden by default */
.mmenu-body { display: none; padding: 6px 8px 10px; }
.mmenu-body.open { display: block; }
/* Sub-section label */
.mmenu-sub-label {
  padding: 10px 8px 5px 8px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  color: rgba(234,88,12,0.9);
}
/* Links inside accordion body */
.mmenu-body a {
  display: block; padding: 9px 10px 9px 16px;
  color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
  text-decoration: none; border-radius: 8px; transition: all 0.15s;
  border-left: 2px solid transparent;
}
.mmenu-body a:hover {
  color: white; background: rgba(255,255,255,0.07);
  border-left-color: rgba(234,88,12,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { max-width: 500px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .hero-right { grid-template-columns: 1fr 1fr; }
  .page-content { padding: 60px 1.25rem; }
}
@media (max-width: 640px) {
  section { padding: 60px 1rem; }
  .page-header { padding: 110px 1.25rem 64px; }
  .page-content { padding: 52px 1rem; }
  .hero { padding: 100px 1rem 60px; }
  .news-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .data-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  #prod-wrap { padding: 0 40px !important; }
}
@media (max-width: 480px) {
  .hero-right { grid-template-columns: 1fr; }
  .hero-stat-card:first-child { grid-column: 1; }
  .partners-grid { grid-template-columns: 1fr; }
  section { padding: 52px 1rem; }
  .page-header { padding: 96px 1rem 52px; }
  .page-content { padding: 40px 1rem; }
  .page-header p { font-size: 0.9rem; }
  .section-sub { font-size: 0.875rem; }
  nav { padding: 0 1rem; }
  #prod-wrap { padding: 0 36px !important; }
}
@media (max-width: 360px) {
  section { padding: 44px 0.875rem; }
  nav { padding: 0 0.75rem; }
  .page-header { padding: 84px 0.875rem 44px; }
  .hero { padding: 84px 0.875rem 44px; }
  .page-content { padding: 32px 0.875rem; }
  .section-title { font-size: clamp(1.3rem, 6vw, 1.9rem); }
  .mobile-menu { font-size: 14px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ===== UTILITIES ===== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
