@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,600&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --font-body: "Poppins", sans-serif;
  --font-heading: "Poppins", sans-serif;
  --font-accent: "Orbitron", sans-serif;
  --bg-primary: #070b14;
  --bg-secondary: #0d1321;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --accent-cyan: #00e5ff;
  --accent-blue: #1b5982;
  --accent-deep: #0f3765;
  --accent-gold: #ffd700;
  --accent-purple: #833AB4;
  --accent-red: #e31d1e;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --glow-cyan: 0 0 20px rgba(0, 229, 255, 0.3);
  --glow-cyan-strong: 0 0 40px rgba(0, 229, 255, 0.5), 0 0 80px rgba(0, 229, 255, 0.2);
  --glow-blue: 0 0 20px rgba(27, 89, 130, 0.4);
  --glow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
  --border-glow: 1px solid rgba(0, 229, 255, 0.15);
  --glass-bg: rgba(13, 19, 33, 0.7);
  --glass-border: rgba(0, 229, 255, 0.1);
  --gradient-main: linear-gradient(135deg, #00e5ff 0%, #1b5982 50%, #833AB4 100%);
  --gradient-hero: linear-gradient(135deg, #00e5ff 0%, #0099ff 50%, #a011ff 100%);
  --gradient-card: linear-gradient(145deg, rgba(0, 229, 255, 0.08), rgba(27, 89, 130, 0.05));
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

a { color: var(--accent-cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: #fff; text-shadow: 0 0 10px var(--accent-cyan); }

img { max-width: 100%; height: auto; }

sup a.footnote { 
  color: var(--accent-cyan); 
  font-size: 0.7em; 
  text-decoration: none;
  opacity: 0.7;
}
sup a.footnote:hover { opacity: 1; }

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 229, 255, 0.2), inset 0 0 20px rgba(0, 229, 255, 0.05); }
  50% { box-shadow: 0 0 40px rgba(0, 229, 255, 0.4), inset 0 0 40px rgba(0, 229, 255, 0.1); }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(0, 229, 255, 0.15); }
  50% { border-color: rgba(0, 229, 255, 0.5); }
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(0, 229, 255, 0.3); }
  50% { text-shadow: 0 0 30px rgba(0, 229, 255, 0.6), 0 0 60px rgba(0, 229, 255, 0.3); }
}

@keyframes goldGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
  50% { text-shadow: 0 0 25px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.2); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

@keyframes tickerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes counterUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== ANIMATION CLASSES ===== */
.anim { opacity: 0; transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.anim.anim-visible { opacity: 1; }
.anim-up { transform: translateY(60px); }
.anim-up.anim-visible { transform: translateY(0); }
.anim-left { transform: translateX(-60px); }
.anim-left.anim-visible { transform: translateX(0); }
.anim-right { transform: translateX(60px); }
.anim-right.anim-visible { transform: translateX(0); }
.anim-scale { transform: scale(0.9); }
.anim-scale.anim-visible { transform: scale(1); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }
.anim-delay-6 { transition-delay: 0.6s; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1300px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.text-center { text-align: center; }
.relative { position: relative; }
.z-2 { z-index: 2; }

/* ===== PARTICLES BACKGROUND ===== */
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--accent-cyan);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

/* ===== SECTION BASE ===== */
.v2-section {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

.v2-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0.5;
}

.v2-fin-highlights::before,
.v2-exec-order::before,
.v2-problem-solution::before {
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.section-title span {
  background: var(--gradient-main);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* ===== HEADER ===== */
.v2-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: var(--transition);
}

.v2-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v2-header .logo img {
  max-width: 200px;
  filter: brightness(1.1);
}

.v2-header .paid-label {
  font-size: 11px;
  font-weight: 700;
  background: var(--accent-blue);
  color: #fff;
  padding: 3px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.v2-header .paid-label a {
  color: #fff;
}

.stock-ticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(27, 89, 130, 0.3));
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  animation: glowPulse 3s ease-in-out infinite;
  cursor: default;
}

.stock-ticker .nasdaq-label {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 1.5rem;
}

.stock-ticker .ticker-symbol {
  color: var(--accent-cyan);
  font-size: 1.9rem;
  animation: textGlow 3s ease-in-out infinite;
}

/* ===== HERO SECTION ===== */
.v2-hero {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 0 0 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(27, 89, 130, 0.1) 0%, transparent 50%),
              var(--bg-primary);
}

.v2-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}
.hero-grid-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
#head-ct {
background-color:rgba(0,0,0,0.6); color:#ffffffcc; font-size:12px; padding:10px; text-align:center; position:absolute; bottom:0px; left:0px; width:100%; box-sizing:border-box; z-index:99999; line-height:14px !important;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 0px;
  animation: fadeIn 1s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  animation: slideUp 1s ease 0.4s both;
}

.hero-title .highlight {
  background: var(--gradient-hero);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 50px;
  animation: slideUp 1s ease 0.6s both;
}

.hero-subtitle strong {
  color: #fff;
}

/* ===== FINANCIAL HIGHLIGHTS SECTION ===== */
.v2-fin-highlights {
  background: #ffffff;
}

.v2-fin-highlights .section-title {
  color: #1a1a2e;
}

.v2-fin-highlights .section-title span {
  background: linear-gradient(135deg, #1b5982, #0f3765);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== FINANCIAL HIGHLIGHTS GRID ===== */
.fin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.fin-card {
  background: #f4f7fb;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid #e0e7ef;
  border-radius: var(--radius);
  padding: 30px 25px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.fin-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  background-size: 200% auto;
  animation: gradientShift 4s ease infinite;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.fin-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.fin-card:hover {
  background: #eaf0f8;
  border-color: rgba(27, 89, 130, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(27, 89, 130, 0.12);
}

.fin-card:hover::before {
  opacity: 1;
}

.fin-card .fin-num {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-blue);
  opacity: 0.5;
  margin-bottom: 12px;
  display: block;
}

.fin-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.4;
  color: #1a1a2e;
  margin-bottom: 12px;
  font-weight: 600;
}

.fin-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a5568;
}

.fin-card p strong {
  color: #1b5982;
  font-weight: 700;
  animation: none;
}

/* ===== QUOTE / TESTIMONIAL ===== */
.v2-quote {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0, 229, 255, 0.05);
  border-bottom: 1px solid rgba(0, 229, 255, 0.05);
}

.quote-box {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.quote-box::before {
  content: '"';
  position: absolute;
  top: -20px; left: 30px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--accent-cyan);
  opacity: 0.2;
  line-height: 1;
}

.quote-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-style: italic;
}

.quote-box p strong {
  color: #fff;
  font-style: normal;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.quote-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(0, 229, 255, 0.3);
}

.quote-author .author-info strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.quote-author .author-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== AWARD SECTION ===== */
.v2-award {
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 60%),
              var(--bg-primary);
}

.award-box {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.award-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.award-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.award-box h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 400;
}

.award-box .award-quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: left;
}

/* ===== EXECUTIVE ORDER SECTION ===== */
.v2-exec-order {
  background: #ffffff;
}

.v2-exec-order .section-subtitle {
  color: #1a1a2e;
}

.exec-order-intro {
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 40px;
  background: #f4f7fb;
  border: 1px solid #e0e7ef;
  border-left: 4px solid var(--accent-blue);
  border-radius: var(--radius);
}

.exec-order-intro h2 {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 400;
  color: #4a5568;
}

.exec-order-intro h2 strong {
  color: #1a1a2e;
}

.exec-order-intro h2 em {
  color: var(--accent-blue);
}

/* ===== KEY GOALS — TIMELINE ===== */
.goals-tagline {
  max-width: 900px;
  margin: 40px auto 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a5568;
}

.goals-tagline strong {
  color: #1a1a2e;
}

.goals-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0 10px 60px;
}

.goals-timeline-line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #1b5982 10%, #1b5982 90%, transparent);
  border-radius: 2px;
}

.goal-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.goal-step:last-child {
  margin-bottom: 0;
}

.goal-step:hover {
  border-color: #1b5982;
  box-shadow: 0 8px 30px rgba(27, 89, 130, 0.1);
  transform: translateX(6px);
}

.goal-step-marker {
  position: absolute;
  left: -46px;
  top: 28px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1b5982;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 5px #ffffff, 0 0 0 7px #1b5982;
}

.goal-step-num {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.goal-step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1b5982;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.goal-step-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* Alternating accent on hover */
.goal-step:nth-child(even):hover {
  border-color: #0f3765;
}

.goal-step:nth-child(even) .goal-step-marker {
  background: #0f3765;
  box-shadow: 0 0 0 5px #ffffff, 0 0 0 7px #0f3765;
}

@media (max-width: 768px) {
  .goals-timeline {
    padding: 10px 0 10px 45px;
  }
  .goals-timeline-line {
    left: 18px;
  }
  .goal-step-marker {
    left: -36px;
    width: 26px;
    height: 26px;
    box-shadow: 0 0 0 4px #ffffff, 0 0 0 6px #1b5982;
  }
  .goal-step-num {
    font-size: 0.55rem;
  }
  .goal-step {
    padding: 20px;
    gap: 16px;
  }
}

/* ===== AI DIVISION + POLICIES ===== */
.v2-ai-division {
  background: var(--bg-primary);
}

/* Banner */
.ai-div-banner {
  text-align: center;
  padding: 50px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0d1b30 0%, #162544 50%, #0f1e38 100%);
  border: 1px solid rgba(0, 229, 255, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

.ai-div-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(0, 229, 255, 0.04) 60deg, transparent 120deg, rgba(131, 58, 180, 0.03) 200deg, transparent 300deg);
  animation: rotateGlow 20s linear infinite;
  pointer-events: none;
}

.ai-div-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.ai-div-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.ai-div-banner h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
  margin: 0 auto 20px;
  max-width: 750px;
  position: relative;
  z-index: 1;
}

.ai-div-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent-cyan);
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.ai-div-location svg {
  opacity: 0.7;
}

/* Subtitle */
.ai-div-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Policy Strip — 4 column cards */
.ai-policy-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ai-policy-card {
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(0, 229, 255, 0.06);
}

.ai-policy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  opacity: 1;
  transition: opacity 0.4s;
}

.ai-policy-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
  transform: translateY(0);
  box-shadow: none;
}

.ai-policy-card:hover::before {
  opacity: 0;
}

.ai-policy-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 14px;
  color: var(--accent-cyan);
  transition: all 0.4s;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.ai-policy-card:hover .ai-policy-icon {
  background: rgba(0, 229, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.15);
  transform: scale(1);
  box-shadow: none;
}

.ai-policy-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
}

.ai-policy-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 1024px) {
  .ai-policy-strip { grid-template-columns: repeat(2, 1fr); }
  .ai-div-banner h2 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .ai-policy-strip { grid-template-columns: 1fr; }
  .ai-div-banner { padding: 35px 24px; }
  .ai-div-banner h2 { font-size: 1.25rem; }
}

/* ===== HIGHLIGHT BOX ===== */
.v2-highlight-box {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 30px 35px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.06), rgba(131, 58, 180, 0.06));
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius);
  position: relative;
}

.v2-highlight-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.3), transparent, rgba(131, 58, 180, 0.3));
  z-index: -1;
  opacity: 0.3;
}

.v2-highlight-box h3 {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
}

.v2-highlight-box h3 strong {
  color: #fff;
}

/* ===== PROBLEM / SOLUTION ===== */
.v2-problem-solution {
  background: #ffffff;
}

.v2-problem-solution .section-title {
  color: #1a1a2e;
}

.v2-problem-solution .section-title span {
  background: linear-gradient(135deg, #1b5982, #0f3765);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.ps-card {
  padding: 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.ps-card.problem {
  background: #fef5f5;
  border: 1px solid #f0d0d0;
  border-top: 4px solid #c0392b;
}

.ps-card.solution {
  background: #f0faf4;
  border: 1px solid #c6e9d2;
  border-top: 4px solid #27ae60;
}

.ps-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ps-card.problem h4 { color: #c0392b; }
.ps-card.solution h4 { color: #27ae60; }

.ps-card p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 15px;
}

.ps-card p strong { color: #1a1a2e; }

/* ===== DEFENSE VALIDATION ===== */
.v2-defense {
  background: radial-gradient(ellipse at 80% 20%, rgba(131, 58, 180, 0.06) 0%, transparent 50%),
              var(--bg-secondary);
}

.defense-content {
  max-width: 1000px;
  margin: 0 auto;
}

.defense-content > p, .defense-content > div > p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.defense-content strong { color: #fff; }

.press-release-box {
  margin-top: 40px;
  padding: 35px;
  background: var(--bg-card);
  border: 1px solid rgba(131, 58, 180, 0.15);
  border-left: 4px solid var(--accent-purple);
  border-radius: var(--radius);
}

.press-release-box h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 400;
}

.press-release-box .pr-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}

.defense-stat {
  margin-top: 40px;
  padding: 25px 30px;
  background: rgba(255, 215, 0, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-sm);
  text-align: center;
}

.defense-stat p {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.defense-stat strong {
  color: var(--accent-gold);
  animation: goldGlow 4s ease-in-out infinite;
}

/* ===== DEFENSE GO-TO-MARKET STRATEGY ===== */
.v2-defense-gtm {
  background: #ffffff;
}

.v2-defense-gtm::before {
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.gtm-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.gtm-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gtm-title span {
  display: block;
  background: linear-gradient(135deg, #1b5982, #0f3765);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gtm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gtm-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: #f7f9fc;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  transition: all 0.35s ease;
}

.gtm-list li:hover {
  background: #eef3f9;
  border-color: #c0d4e8;
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(27, 89, 130, 0.08);
}

.gtm-bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background: #1b5982;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(27, 89, 130, 0.15);
}

.gtm-list li:hover .gtm-bullet {
  background: #0f3765;
  box-shadow: 0 0 0 4px rgba(15, 55, 101, 0.2);
}

.gtm-list li p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

.gtm-list li p strong {
  color: #1a1a2e;
}

.gtm-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.gtm-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 89, 130, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.gtm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 450px;
}

@media (max-width: 1024px) {
  .gtm-layout { grid-template-columns: 1fr; gap: 30px; }
  .gtm-image img { min-height: 300px; }
}

@media (max-width: 768px) {
  .gtm-title { font-size: 1.3rem; }
  .gtm-list li { padding: 12px 14px; }
}

/* ===== MARKET OPPORTUNITY ===== */
.v2-market {
  background: radial-gradient(ellipse at 30% 70%, rgba(0, 229, 255, 0.04) 0%, transparent 50%),
              var(--bg-primary);
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.market-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.market-text strong {
  color: #edead8;
}

.market-visual {
  display: flex;
  justify-content: center;
}

.market-visual img {
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.market-cta {
  margin-top: 40px;
  text-align: center;
  padding: 18px 30px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(27, 89, 130, 0.2));
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-sm);
}

.market-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent-cyan);
  font-weight: 400;
  animation: textGlow 4s ease-in-out infinite;
}

/* ===== NOTE BOX ===== */
.note-box {
  margin-top: 30px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-blue);
}

.note-box strong { color: var(--text-secondary); }

/* ===== ACQUISITIONS ===== */
.v2-acquisitions {
  background: #ffffff;
}

.v2-acquisitions::before {
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

/* --- Acquisitions Header --- */
.acq-header {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 48px;
}

.acq-counter {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #1b5982, #0e3d5c);
  border-radius: 16px;
  padding: 24px 32px;
  color: #fff;
}

.acq-count {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: #00e5ff;
}

.acq-count-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  line-height: 1.4;
}

.acq-header-text .label-tag {
  color: #1b5982;
  background: rgba(27, 89, 130, 0.08);
  border-color: rgba(27, 89, 130, 0.2);
  margin-bottom: 12px;
}

.acq-header-text .section-subtitle {
  color: #1a1a2e;
  font-size: 1.35rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Acquisitions Quote --- */
.acq-quote {
  display: flex;
  gap: 20px;
  background: #f7f9fc;
  border: 1px solid #e0e7ef;
  border-left: 4px solid #1b5982;
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 48px;
  position: relative;
}

.acq-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.8;
  color: #1b5982;
  opacity: 0.2;
  flex-shrink: 0;
}

.acq-quote-body p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 20px;
}

.acq-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid #e0e7ef;
}

.acq-quote-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(27, 89, 130, 0.3);
  object-fit: cover;
}

.acq-quote-author strong {
  display: block;
  color: #1a1a2e;
  font-size: 0.9rem;
}

.acq-quote-author span {
  color: #64748b;
  font-size: 0.8rem;
}

/* --- Acquisition Grid Cards --- */
.acq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.acq-card {
  background: #f7f9fc;
  border: 1px solid rgba(27, 89, 130, 0.3);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(27, 89, 130, 0.12);
}

.acq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1b5982, #00e5ff);
  opacity: 1;
  transition: opacity 0.35s ease;
}

.acq-card:hover {
  transform: translateY(0);
  box-shadow: none;
  border-color: #e0e7ef;
}

.acq-card:hover::before {
  opacity: 0;
}

.acq-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(27, 89, 130, 0.1), rgba(0, 229, 255, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b5982;
  flex-shrink: 0;
}

.acq-card p {
  color: #4a5568;
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.acq-card-tag {
  display: inline-block;
  background: rgba(27, 89, 130, 0.07);
  color: #1b5982;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

/* ===== GREETING INVESTORS ===== */
.v2-investors {
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
              var(--bg-primary);
}

.investors-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.investors-img img {
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.investors-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.investors-text p strong { color: #fff; }

/* ===== TOP REASONS ===== */
.v2-reasons {
  background: radial-gradient(ellipse at 30% 20%, rgba(0, 229, 255, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(131, 58, 180, 0.04) 0%, transparent 50%),
              var(--bg-secondary);
  overflow: hidden;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px auto 0;
}

.reason-card {
  position: relative;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: var(--radius);
  transition: var(--transition);
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  opacity: 1;
  transition: opacity 0.4s;
}

.reason-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.06), transparent 70%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s;
}

.reason-card:hover {
  background: rgba(0, 229, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 229, 255, 0.08);
}

/* Wide cards span 2 columns (used for rows of 2) */
.reason-card.reason-wide {
  grid-column: span 1;
}

.reasons-grid > .reason-wide:nth-child(4) {
  grid-column: 1 / 2;
}
.reasons-grid > .reason-wide:nth-child(5) {
  grid-column: 2 / 4;
}
.reasons-grid > .reason-wide:nth-child(9) {
  grid-column: 1 / 2;
}
.reasons-grid > .reason-wide:nth-child(10) {
  grid-column: 2 / 4;
}

/* Card number badge */
.reason-card-num {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(27, 89, 130, 0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

/* Category badge */
.reason-card-badge {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 20px;
  margin-bottom: 16px;
}

.reason-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
}

.reason-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

/* Highlighted key metrics */
.reason-highlight {
  color: var(--accent-cyan);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
}

/* Featured cards — first row accent */
.reason-card.reason-featured {
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.04), rgba(27, 89, 130, 0.03));
  border-color: rgba(0, 229, 255, 0.18);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 229, 255, 0.04);
}

.reason-card.reason-featured:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(0, 229, 255, 0.1);
}

.reason-card.reason-featured .reason-card-num {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 1024px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid > .reason-wide:nth-child(4),
  .reasons-grid > .reason-wide:nth-child(5),
  .reasons-grid > .reason-wide:nth-child(9),
  .reasons-grid > .reason-wide:nth-child(10) { grid-column: span 1; }
}

@media (max-width: 768px) {
  .reasons-grid { grid-template-columns: 1fr; gap: 14px; }
  .reasons-grid > .reason-wide:nth-child(4),
  .reasons-grid > .reason-wide:nth-child(5),
  .reasons-grid > .reason-wide:nth-child(9),
  .reasons-grid > .reason-wide:nth-child(10) { grid-column: span 1; }
  .reason-card { padding: 24px 20px; }
}

/* ===== INVESTMENT HIGHLIGHTS ===== */
.v2-investment-highlights {
  background: #ffffff;
}

.v2-investment-highlights::before {
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.ih-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ih-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}

.ih-underline {
  width: 60px;
  height: 4px;
  background: #1b5982;
  border-radius: 2px;
  margin-bottom: 36px;
}

.ih-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ih-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ih-bullet {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #1b5982;
  margin-top: 8px;
}

.ih-item p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.ih-item p strong {
  color: #1a1a2e;
  font-weight: 700;
}

.ih-accent {
  color: #1b5982 !important;
}

/* Image collage */
.ih-images {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.ih-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  min-height: 420px;
}

/* ===== COMPANY OVERVIEW ===== */
.v2-overview {
  background: var(--bg-primary);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.overview-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.overview-text p strong { color: #fff; }

.overview-visual {
  position: relative;
}

.overview-visual img {
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.label-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ===== OUR OFFERINGS ===== */
.v2-offerings {
  padding: 0;
  position: relative;
}

.v2-offerings::before {
  display: none;
}

.offerings-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

/* Left Panel */
.offerings-left {
  background: #ffffff;
  padding: 70px 60px;
  position: relative;
  display: flex;
  align-items: center;
}

.offerings-left-inner {
  max-width: 480px;
  margin-left: auto;
  padding-right: 80px;
}

.offerings-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
  text-decoration: underline;
  text-decoration-color: #1b5982;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}

.offerings-underline {
  width: 60px;
  height: 4px;
  background: #1b5982;
  border-radius: 2px;
  margin-bottom: 44px;
}

.offering-block {
  margin-bottom: 36px;
}

.offering-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 14px;
}

.offering-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.offering-logo img {
  max-width: 220px;
  height: auto;
  display: block;
}

.brand-zena {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 2px;
}

.brand-drone {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 300;
  color: #e53e3e;
  letter-spacing: 2px;
}

.brand-icon {
  margin-left: 6px;
}

.brand-drone-service {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 3px;
}

.brand-service-sub {
  font-size: 0.85rem;
  color: #4a5568;
  margin-left: 4px;
}

.brand-service-sub strong {
  font-size: 1.1rem;
  color: #1a1a2e;
  letter-spacing: 1px;
}

.brand-icon-sm {
  margin-left: 4px;
}

.brand-byline {
  display: block;
  font-size: 0.7rem;
  color: #64748b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Center Logo Circle */
.offerings-center-logo {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.logo-zena {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 700;
  color: #1b5982;
  letter-spacing: 3px;
  line-height: 1.1;
}

.logo-tech {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a2e;
  letter-spacing: 4px;
  line-height: 1.1;
}

/* Right Panel */
.offerings-right {
  background: linear-gradient(135deg, #2b7a9e, #1b5982);
  padding: 70px 60px;
  display: flex;
  align-items: center;
}

.offerings-right-inner {
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offerings-right-inner img {
  width: 100%;
  height: auto;
  display: block;
}

.offering-label-light {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px;
}

.saas-screen {
  text-align: center;
  margin-bottom: 28px;
}

.saas-brands {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.saas-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.saas-badge {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.saas-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ===== ZENADRONE INFO ===== */
.v2-zenadrone {
  background: var(--bg-secondary);
}

.zenadrone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.zenadrone-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.zenadrone-text p strong { color: #fff; }

.zenadrone-img img {
  border-radius: var(--radius);
  animation: float 6s ease-in-out infinite;
}

/* ===== ZENADRONE PRODUCTS ===== */
.v2-zd-products {
  background: #ffffff;
}

.v2-zd-products::before {
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.zdp-heading {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  letter-spacing: 2px;
  margin: 0 0 10px;
  text-decoration: underline;
  text-decoration-color: #1b5982;
  text-underline-offset: 10px;
  text-decoration-thickness: 3px;
}

.zdp-heading span {
  color: #1b5982;
}

.zdp-heading-iq {
  margin-top: 80px;
}

/* --- ZenaDrone 1000 --- */
.zdp-1000 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.zdp-1000-card {
  background: #3d76a2;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
}

.zdp-1000-img {
  padding: 30px 40px 20px;
}

.zdp-1000-img img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  margin: 0 auto;
  
}

.zdp-1000-specs {
  padding: 0 30px;
}

.zdp-size {
  display: inline-block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.zdp-1000-specs h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}

.zdp-1000-specs p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin: 0 0 14px;
}

.zdp-price {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffd700;
}

.zdp-1000-details {
  padding: 10px 0;
}

.zdp-1000-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.zdp-1000-details li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
}

.zdp-1000-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1b5982;
}

.zdp-1000-details li strong {
  color: #1a1a2e;
}

/* --- IQ Series --- */
.zdp-iq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.zdp-iq-card {
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
}

.zdp-iq-img {
  border-radius: 4px;
  padding: 40px 30px;
  margin-bottom: 20px;
}

.zdp-iq-img-light {
  background: #3a7ca5;
}

.zdp-iq-img-muted {
  background: #c8ced6;
}

.zdp-iq-img img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

.zdp-iq-size {
  display: inline-block;
  font-size: 0.82rem;
  color: #64748b;
  font-style: italic;
  margin-bottom: 6px;
}

.zdp-iq-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px;
}

.zdp-iq-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #4a5568;
  max-width: 380px;
  margin: 0 auto;
  padding: 0 10px;
}

/* ===== IQ QUAD ===== */
.v2-iq-quad {
  background: #3a9bbf;
  padding-bottom: 0;
}

.v2-iq-quad::before {
  display: none;
}

.v2-iq-quad .zdp-heading {
  color: #fff;
  text-decoration-color: #fff;
  margin-bottom: 40px;
}

.v2-iq-quad .zdp-heading span {
  color: #1a1a2e;
}

.iq-quad-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 420px;
}

/* Left Panel */
.iq-quad-left {
  background: #3a9bbf;
  padding: 50px 40px 50px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.iq-quad-photo {
  max-width: 360px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.iq-quad-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.iq-quad-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

/* Center Logo */
.iq-quad-logo {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  z-index: 3;
  margin: 0 -30px;
}

.iq-quad-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Right Panel */
.iq-quad-right {
  background: #edf1f5;
  padding: 50px 60px 50px 60px;
  display: flex;
  align-items: center;
  min-height: 420px;
}

.iq-quad-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.iq-quad-features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
}

.iq-quad-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a1a2e;
}

.iq-quad-features li strong {
  color: #1a1a2e;
}

/* ===== IQ AQUA SECTION ===== */
.v2-iqaqua {
  background: radial-gradient(ellipse at 70% 30%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
              var(--bg-primary);
}

.iqaqua-content {
  max-width: 100%;
  margin: 0 auto;
}

.iqaqua-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.iqaqua-content strong { color: #fff; }

/* ===== REVENUE MODELS ===== */
.v2-revenue-models {
  position: relative;
  padding: 100px 0;
  background: url('../images/man-with-drone.jpg') center center / cover no-repeat fixed;
  overflow: hidden;
}

.v2-revenue-models::before {
  display: none;
}

.revenue-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 11, 20, 0.6), rgba(27, 89, 130, 0.45));
  z-index: 1;
}

.revenue-heading {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 50px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.revenue-heading span {
  color: #fff;
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.revenue-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.revenue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.97);
}

.revenue-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.5;
  margin: 0 0 22px;
}

.revenue-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.revenue-card li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4a5568;
}

.revenue-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1b5982;
}

/* ===== GEOGRAPHIC PRESENCE ===== */
.v2-geo {
  background: var(--bg-secondary);
}

.geo-text {
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 30px 35px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.geo-text h2 {
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-secondary);
}

.geo-map {
  text-align: center;
}

.geo-map img {
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===== DRONE TECHNOLOGY ===== */
.v2-dronetech {
  background: #ffffff;
}

.v2-dronetech::before {
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.v2-dronetech .section-title {
  color: #1a1a2e;
}

.v2-dronetech .section-title span {
  background: linear-gradient(135deg, #1b5982, #0f3765);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dronetech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.dronetech-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 18px;
}

.dronetech-text p strong { color: #1a1a2e; }

.dronetech-img img {
  border-radius: var(--radius);
}

/* ===== CURRENT CUSTOMER SECTORS ===== */
.v2-sectors {
  background: #ffffff;
}

.v2-sectors::before {
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.sectors-heading {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.3px;
  margin: 0;
}

.sectors-underline {
  width: 70px;
  height: 4px;
  background: #1b5982;
  border-radius: 2px;
  margin: 14px 0 50px;
}

.sector-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: stretch;
  background: #f7f9fc;
  border: 1px solid #e8edf3;
  border-radius: 4px;
  padding: 36px 40px;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.sector-row:last-child {
  margin-bottom: 0;
}

.sector-row:hover {
  border-color: #c0d4e8;
  box-shadow: 0 6px 24px rgba(27, 89, 130, 0.08);
}

.sector-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 6px 40px;
}

.sector-title-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.sector-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 89, 130, 0.08);
  border-radius: 8px;
  flex-shrink: 0;
}

.sector-title-row h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.sector-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
  align-self: start;
}

.sector-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: start;
}

.sector-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #4a5568;
}

.sector-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a1a2e;
}

.sector-img {
  width: 220px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  align-self: center;
}

.sector-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 160px;
}

/* ===== FUTURE CUSTOMER SECTORS ===== */
.v2-future-sectors {
  background: #f7f9fc;
}

.v2-future-sectors .sector-row {
  background: #ffffff;
  border-color: #e0e7ef;
}

.v2-future-sectors .sector-row:hover {
  border-color: #c0d4e8;
}

.sector-two-col {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
}

/* ===== DRONE AS A SERVICE ===== */
.v2-daas {
  background: #ffffff;
}

.v2-daas::before {
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.daas-heading {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.3px;
  margin: 0;
}

.daas-underline {
  width: 70px;
  height: 4px;
  background: #1b5982;
  border-radius: 2px;
  margin: 14px 0 28px;
}

.daas-tagline {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1a1a2e;
  margin: 0 0 8px;
}

.daas-tagline:last-of-type {
  margin-bottom: 40px;
}

.daas-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.daas-card {
  background: #f2f4f7;
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.35s ease;
}

.daas-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.daas-card-img {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  overflow: hidden;
  margin: auto;
}

.daas-card-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.daas-card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1a1a2e;
  font-weight: 600;
  margin: 0;
}

/* ===== IP PORTFOLIO OVERVIEW ===== */
.v2-ip-portfolio {
  background: var(--bg-secondary);
}

.v2-ip-portfolio::before {
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.ip-heading {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
  margin: 0;
}

.ip-underline {
  width: 70px;
  height: 4px;
  background: var(--accent-cyan);
  border-radius: 2px;
  margin: 14px 0 50px;
}

.ip-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ip-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ip-text h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 18px;
}

.ip-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ip-text li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.ip-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
}

.ip-diagrams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ip-diagram-card {
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.ip-diagram-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: var(--glow-cyan);
}

.ip-diagram-card img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
}

/* ===== REGULATORY APPROVAL STATUS ===== */
.v2-regulatory {
  background: #ffffff;
  padding: 80px 0;
}

.reg-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 1px;
}

.reg-underline {
  width: 60px;
  height: 3px;
  background: #1b5982;
  margin: 12px 0 40px;
  border-radius: 2px;
}

.reg-table {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27, 89, 130, 0.07);
}

.reg-header-row {
  background: #0d1a2e;
}

.reg-header-row .reg-cell {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  padding: 16px 28px;
}

.reg-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr 0.8fr;
  align-items: center;
  border-bottom: 1px solid #e8edf3;
  transition: background 0.25s ease;
}

.reg-row:not(.reg-header-row):hover {
  background: #f0f5fa;
}

.reg-cell {
  padding: 18px 28px;
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.5;
}

.reg-col-country {
  font-size: 0.93rem;
}

.reg-col-country strong {
  color: #1a1a2e;
  font-weight: 600;
}

.reg-col-body {
  text-align: center;
}

.reg-col-status {
  text-align: center;
}

/* Granted group with dashed border */
.reg-granted-group {
  border: 2px dashed #1b5982;
  border-radius: 8px;
  margin: 8px 12px;
  overflow: hidden;
  background: #f2f7fb;
}

.reg-granted-group .reg-row {
  border-bottom: 1px solid #d8e4ef;
}

.reg-granted-group .reg-row:last-child {
  border-bottom: none;
}

/* Status badges */
.reg-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.reg-granted {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.reg-progress {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #e65100;
  border: 1px solid #ffcc80;
}

.reg-notapplied {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  color: #616161;
  border: 1px solid #bdbdbd;
}

/* ===== PATH FORWARD ===== */
.v2-path-forward {
  background: var(--bg-primary);
  padding: 80px 0;
}

.pf-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pf-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.pf-underline {
  width: 60px;
  height: 3px;
  background: var(--accent-cyan);
  margin: 12px 0 36px;
  border-radius: 2px;
  box-shadow: var(--glow-cyan);
}

.pf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pf-bullet {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-cyan);
  margin-top: 7px;
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.15);
}

.pf-item p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.pf-item strong {
  color: var(--text-primary);
}

.pf-accent {
  color: var(--accent-cyan) !important;
}

.pf-images {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.1);
}

.pf-images img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ===== TEAM ===== */
.v2-team {
  background: #ffffff;
  padding: 80px 0;
}

.elt-heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 1px;
}

.elt-heading-sub {
  margin-top: 60px;
}

.elt-underline {
  width: 60px;
  height: 3px;
  background: #1b5982;
  margin: 12px 0 40px;
  border-radius: 2px;
}

.elt-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.elt-member {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid #e8edf3;
}

.elt-member:last-child {
  border-bottom: none;
}

.elt-photo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e0e7ef;
  box-shadow: 0 4px 16px rgba(27, 89, 130, 0.1);
}

.elt-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.elt-details {
  flex: 1;
  min-width: 0;
}

.elt-name-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.elt-name-row h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 0.5px;
  margin: 0;
  white-space: nowrap;
}

.elt-divider {
  color: #c0d4e8;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
}

.elt-name-row h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1b5982;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0;
}

.elt-bio {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.elt-bio li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.65;
}

.elt-bio li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1b5982;
}

/* ===== LATEST NEWS ===== */
.v2-news {
  background: #f7f9fc;
  padding: 80px 0;
}

.v2-news .section-title {
  color: #1a1a2e;
}

.v2-news .section-title span {
  color: #1a1a2e;
  -webkit-text-fill-color: #1a1a2e;
  background: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.news-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0e7ef;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 12px rgba(27, 89, 130, 0.06);
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1b5982, #0d9488);
  transition: height 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(27, 89, 130, 0.14);
  border-color: transparent;
}

.news-card:hover::before {
  height: 5px;
}

.news-card-logo {
  padding: 24px 28px 0;
  margin-bottom: 16px;
}

.news-card-logo img {
  height: 22px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.news-card:hover .news-card-logo img {
  opacity: 1;
}

.news-card-title {
  display: block;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1a1a2e;
  padding: 0 28px;
  margin: 0 0 auto;
  flex: 1;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.news-card-title:hover {
  color: #1b5982;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px 24px;
  margin-top: 20px;
  border-top: 1px solid #f0f3f8;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0d9488;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
}

.news-card-link:hover {
  color: #1b5982;
}

.news-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
  font-size: 1.1rem;
}

.news-card:hover .news-arrow {
  transform: translateX(4px);
}

.news-card-date {
  font-size: 0.8rem;
  color: #94a3b8;
  letter-spacing: 0.3px;
  font-weight: 500;
}

/* ===== SUMMARY ===== */
.v2-summary {
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 50%),
              var(--bg-secondary);
}

.summary-content {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.summary-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.summary-content p strong {
  color: #fff;
}

/* ===== CTA ===== */
.v2-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.4), rgba(131, 58, 180, 0.06));
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
  text-align: center;
  position: relative;
  z-index: 1;
}

.v2-cta h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.4;
  color: #fff;
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 600;
  animation: textGlow 4s ease-in-out infinite;
}

/* ===== TRADING VIEW ===== */
.v2-charts {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
}

.chart-full {
  width: 100%;
  margin-bottom: 30px;
}

.chart-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.chart-half > div {
  min-height: 500px;
}

.chart-half #tradingview_chart_v2 iframe {
    height: 500px !important;
    width: 100% !important;
}

/* ===== SOURCES ===== */
.v2-sources {
  position: relative;
  z-index: 1;
}

.v2-sources h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.v2-sources p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 8px;
  word-break: break-all;
}

.v2-sources p a {
  color: var(--accent-cyan);
  opacity: 0.7;
}

/* ===== DISCLAIMER ===== */
.v2-disclaimer {
  padding: 60px 20px;
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
}

.v2-disclaimer h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.v2-disclaimer p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.v2-footer {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(0, 229, 255, 0.05);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .fin-grid { grid-template-columns: repeat(2, 1fr); }
  .ps-grid { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: 1fr; }
  .investors-content { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .zenadrone-grid { grid-template-columns: 1fr; }
  .dronetech-grid { grid-template-columns: 1fr; }
  .chart-half { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
  .section-title { font-size: 1.8rem; }
  .acq-grid { grid-template-columns: repeat(2, 1fr); }
  .ih-layout { grid-template-columns: 1fr; gap: 40px; }
  .ih-images img { min-height: 320px; }
  .offerings-split { grid-template-columns: 1fr; }
  .offerings-left-inner { max-width: 100%; padding-right: 0; margin: 0; }
  .offerings-center-logo { position: relative; right: auto; top: auto; transform: none; margin: 30px auto 0; }
  .offerings-left { justify-content: center; flex-direction: column; align-items: center; }
  .offerings-right-inner { max-width: 100%; }
  .zdp-1000 { grid-template-columns: 1fr; gap: 30px; }
  .zdp-iq-grid { grid-template-columns: 1fr; gap: 24px; }
  .iq-quad-split { grid-template-columns: 1fr; }
  .iq-quad-logo { margin: -30px auto; position: relative; z-index: 3; }
  .iq-quad-right { min-height: auto; }
  .revenue-grid { grid-template-columns: 1fr; gap: 20px; }
  .sector-row { grid-template-columns: 1fr; }
  .sector-content { grid-template-columns: 1fr; }
  .sector-two-col { grid-template-columns: 1fr; }
  .sector-img { width: 100%; }
  .daas-cards { grid-template-columns: 1fr; }
  .ip-row { grid-template-columns: 1fr; gap: 30px; }
  .ip-diagrams { grid-template-columns: 1fr 1fr; }
  .reg-row { grid-template-columns: 1fr 1.4fr 0.8fr; }
  .reg-cell { padding: 14px 18px; }
  .pf-layout { grid-template-columns: 1fr; gap: 40px; }
  .pf-images img { min-height: 360px; }
  .elt-heading { font-size: 1.8rem; }
  .elt-photo { width: 100px; height: 100px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .v2-section { padding: 60px 0; }
  .fin-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-title { font-size: 1.4rem; }
  .section-subtitle { font-size: 1.2rem; }
  .v2-header .logo img { max-width: 140px; }
  .stock-ticker { 
    padding: 8px 14px; 
    font-size: 0.9rem; 
  }
  .stock-ticker .ticker-symbol { font-size: 1rem; }
  .quote-box { padding: 25px; }
  .award-box { padding: 30px; }
  .exec-order-intro { padding: 25px; }
  .ps-card { padding: 25px; }
  .press-release-box { padding: 25px; }
  .fin-card { padding: 22px 18px; }
  .v2-cta h2 { font-size: 1.3rem; }
  .v2-header .paid-label { font-size: 9px; padding: 2px 8px; }
  .acq-grid { grid-template-columns: 1fr; gap: 14px; }
  .acq-header { flex-direction: column; gap: 20px; }
  .acq-counter { padding: 18px 24px; }
  .acq-count { font-size: 2.5rem; }
  .acq-quote { flex-direction: column; gap: 10px; padding: 24px 20px; }
  .acq-quote-mark { font-size: 3rem; }
  .ih-title { font-size: 1.8rem; }
  .ih-layout { gap: 30px; }
  .ih-images img { min-height: 260px; }
  .offerings-left { padding: 50px 24px; }
  .offerings-right { padding: 50px 24px; }
  .offerings-title { font-size: 1.8rem; }
  .brand-zena, .brand-drone { font-size: 1.4rem; }
  .brand-drone-service { font-size: 1.2rem; }
  .logo-circle { width: 100px; height: 100px; }
  .logo-zena { font-size: 1.1rem; }
  .logo-tech { font-size: 0.85rem; }
  .zdp-heading { font-size: 1.3rem; letter-spacing: 1px; }
  .zdp-heading-iq { margin-top: 50px; }
  .zdp-1000-img { padding: 20px 24px 16px; }
  .zdp-1000-specs { padding: 0 20px; }
  .iq-quad-left { padding: 40px 24px 30px; }
  .iq-quad-right { padding: 40px 24px; min-height: auto; }
  .iq-quad-logo { width: 100px; height: 100px; }
  .revenue-heading { font-size: 1.5rem; letter-spacing: 1px; }
  .revenue-card { padding: 28px 24px; }
  .sector-row { padding: 24px 20px; }
  .sectors-heading { font-size: 1.8rem; }
  .daas-heading { font-size: 1.8rem; }
  .daas-card { padding: 28px 24px; }
  .daas-tagline { font-size: 0.95rem; }
  .ip-heading { font-size: 1.8rem; }
  .ip-row { padding-bottom: 30px; margin-bottom: 30px; }
  .ip-diagrams { grid-template-columns: 1fr; }
  .reg-heading { font-size: 1.8rem; }
  .reg-row { grid-template-columns: 1fr; gap: 0; text-align: left; }
  .reg-header-row { display: none; }
  .reg-cell { padding: 8px 20px; }
  .reg-col-country { padding-top: 16px; }
  .reg-col-body { text-align: left; font-size: 0.85rem; color: #718096; }
  .reg-col-status { text-align: left; padding-bottom: 16px; }
  .reg-granted-group { margin: 8px 0; }
  .pf-title { font-size: 1.8rem; }
  .pf-layout { gap: 30px; }
  .pf-images img { min-height: 280px; }
  .pf-item p { font-size: 0.95rem; }
  .elt-heading { font-size: 1.6rem; }
  .elt-member { flex-direction: column; align-items: center; text-align: center; gap: 20px; padding: 28px 0; }
  .elt-photo { width: 100px; height: 100px; }
  .elt-name-row { justify-content: center; flex-direction: column; align-items: center; gap: 4px; }
  .elt-divider { display: none; }
  .elt-bio li { text-align: left; font-size: 0.88rem; }
  .elt-heading-sub { margin-top: 40px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { padding: 22px 20px; }
}

@media (max-width:600px) {
  .v2-header .container { flex-wrap: wrap; gap: 8px; justify-content: center; flex-direction: column; margin-top: 20px; }
  .hero-title { font-size: 1.5rem; }
  .v2-header .paid-label { position: absolute; top: -40px; }
  .hero-content{margin-top: 50px;}
  .fin-grid{padding:0}
  .award-box h2{ font-size: 1.3rem;}
  .exec-order-intro h2{ font-size: 1.1rem;}
  .v2-highlight-box, .defense-stat, .market-cta{padding: 20px;}
  .defense-content > div > p{margin-bottom: 0px;}
  .market-cta h3{ font-size: 1.3rem;}
}

@media (max-width: 480px) {
  .v2-header .container { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .hero-title { font-size: 1.5rem; }
}
