/*
Theme Name: 6030 Technologies
Theme URI: https://6030technologies.com
Author: 6030 Technologies
Description: Official theme for 6030 Technologies — Cybersecurity & Secure Development
Version: 2.0.0
License: Proprietary
Tags: cybersecurity, dark, professional
*/

/* ═══════════════════════════════════════════════════════
   6030 Technologies — Shared Styles
   ═══════════════════════════════════════════════════════ */

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --accent: #00e5a0;
  --accent-dim: #00b87d;
  --accent-glow: rgba(0, 229, 160, 0.15);
  --accent-glow-strong: rgba(0, 229, 160, 0.3);
  --text-primary: #f0f0f5;
  --text-secondary: #8e8e9f;
  --text-muted: #5a5a6e;
  --border: #222233;
  --border-light: #2a2a3d;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Grain ─────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ─── Utility ───────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; }

/* ─── Nav ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
nav .container { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.35rem;
  color: var(--text-primary);
  text-decoration: none; letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links li { position: relative; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.25s; position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--accent); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { display: none; }
.nav-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 5px; }
.nav-dropdown-toggle svg { width: 12px; height: 12px; transition: transform 0.3s; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: -12px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 0; min-width: 190px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.25s; z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.88rem;
  color: var(--text-secondary); transition: all 0.2s;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { color: var(--accent); background: var(--accent-glow); }

/* ─── Buttons ───────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 28px; background: var(--accent);
  color: var(--bg-primary); font-family: var(--font-display);
  font-weight: 700; font-size: 0.88rem; border: none;
  border-radius: 6px; cursor: pointer; text-decoration: none;
  transition: all 0.3s; letter-spacing: 0.2px;
}
.btn-primary:hover {
  background: #00ffb3;
  box-shadow: 0 0 30px var(--accent-glow-strong);
  transform: translateY(-1px);
  color: var(--bg-primary);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 28px; background: transparent;
  color: var(--text-primary); font-family: var(--font-display);
  font-weight: 600; font-size: 0.88rem;
  border: 1.5px solid var(--border-light); border-radius: 6px;
  cursor: pointer; text-decoration: none; transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--accent); color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }

/* Nav CTA button */
.nav-links a.btn-primary {
  color: var(--bg-primary) !important;
  background: var(--accent) !important;
  font-weight: 700 !important;
}
.nav-links a.btn-primary::after { display: none !important; }
.nav-links a.btn-primary:hover {
  color: var(--bg-primary) !important;
  background: #00ffb3 !important;
  box-shadow: 0 0 30px rgba(0, 229, 160, 0.3);
}

/* ─── Mobile Nav ────────────────────────────────────── */
.mobile-toggle {
  display: none; background: none; border: none;
  color: var(--text-primary); cursor: pointer; padding: 8px;
}

/* ─── Page Hero ─────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800; line-height: 1.18;
  letter-spacing: -1px; max-width: 720px; margin-bottom: 20px;
}
.page-hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #00c3ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: 1.1rem; color: var(--text-secondary);
  max-width: 580px; line-height: 1.75;
}

/* ─── Sections ──────────────────────────────────────── */
section { padding: 100px 0; }

.section-label {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--accent); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.5px;
  line-height: 1.25; margin-bottom: 20px;
}
.section-desc {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 640px; line-height: 1.7; margin-bottom: 56px;
}
.alt-bg {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ─── Services Grid ─────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px; background: var(--border);
  border-radius: 14px; overflow: hidden;
}
.service-card {
  background: var(--bg-secondary);
  padding: 44px 36px;
  transition: all 0.4s; position: relative; cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), #00c3ff);
  transition: width 0.5s;
}
.service-card:hover { background: var(--bg-card-hover); }
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; background: var(--accent-glow);
  border: 1px solid rgba(0, 229, 160, 0.15); color: var(--accent);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 14px; letter-spacing: -0.3px;
}
.service-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

/* ─── Key Services List ─────────────────────────────── */
.key-services {
  margin-top: 18px; padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.key-services li {
  color: var(--text-muted); font-size: 0.85rem;
  display: flex; align-items: center; gap: 10px;
}
.key-services li::before {
  content: ''; width: 5px; height: 5px;
  background: var(--accent); border-radius: 50%; flex-shrink: 0;
}

/* ─── Stats ─────────────────────────────────────────── */
.stats-bar { padding: 0 0 80px; }
.stats-bar .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--border);
  border-radius: 14px; overflow: hidden;
}
.stat-item {
  background: var(--bg-secondary);
  padding: 36px 32px; text-align: center;
  transition: background 0.3s;
}
.stat-item:hover { background: var(--bg-card); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 800;
  color: var(--accent); letter-spacing: -0.3px; margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }

/* ─── FAQ ───────────────────────────────────────────── */
.faq-list {
  max-width: 780px; display: flex; flex-direction: column;
  gap: 2px; background: var(--border);
  border-radius: 14px; overflow: hidden;
}
.faq-item { background: var(--bg-secondary); }
.faq-question {
  width: 100%; background: none; border: none;
  color: var(--text-primary); font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600;
  padding: 26px 32px; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.3s;
}
.faq-question:hover { background: var(--bg-card); }
.faq-question svg { flex-shrink: 0; transition: transform 0.3s; color: var(--accent); }
.faq-item.active .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 32px 26px; color: var(--text-secondary);
  font-size: 0.92rem; line-height: 1.75;
}
.faq-answer-inner a { color: var(--accent); }

/* ─── CTA Box ───────────────────────────────────────── */
.cta-section { padding: 100px 0; }
.cta-box {
  position: relative; padding: 80px 64px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.cta-box::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cta-box::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  letter-spacing: -0.5px; line-height: 1.25; margin-bottom: 14px;
}
.cta-content p { color: var(--text-secondary); font-size: 1.05rem; max-width: 500px; line-height: 1.7; }
.cta-actions {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 12px; flex-shrink: 0;
}

/* ─── Footer ────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 64px 0 40px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-brand .logo { display: inline-block; margin-bottom: 18px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-secondary); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }
.footer-contact { display: flex; gap: 28px; }
.footer-contact a { color: var(--text-muted); text-decoration: none; font-size: 0.82rem; transition: color 0.25s; }
.footer-contact a:hover { color: var(--accent); }

/* ─── Content Blocks ────────────────────────────────── */
.content-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 60px 0; border-bottom: 1px solid var(--border);
}
.content-block:last-child { border-bottom: none; }
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800;
  letter-spacing: -0.5px; line-height: 1.25; margin-bottom: 18px;
}
.content-block p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; }
.content-visual {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 16px; height: 320px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

/* ─── Blog Cards ────────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: all 0.4s; cursor: pointer; text-decoration: none;
  color: var(--text-primary);
}
.blog-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.blog-card-img {
  height: 200px; background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.blog-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 60%);
  z-index: 1;
}
.blog-card-body { padding: 28px; }
.blog-card-meta {
  font-size: 0.78rem; color: var(--text-muted);
  margin-bottom: 12px; display: flex; gap: 12px;
}
.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  line-height: 1.35; margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.blog-card-body p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.65; }
.blog-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-size: 0.85rem; font-weight: 600;
  margin-top: 16px; text-decoration: none; transition: gap 0.3s;
}
.blog-card:hover .blog-card-link { gap: 10px; }

/* ─── Check list ────────────────────────────────────── */
.check-list {
  list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 36px;
}
.check-list li {
  display: flex; gap: 14px; align-items: flex-start;
  color: var(--text-secondary); font-size: 0.95rem; line-height: 1.65;
}
.check-list li .check-icon { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

/* ─── Contact Form ──────────────────────────────────── */
.contact-form {
  max-width: 600px;
  display: flex; flex-direction: column; gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 18px;
  color: var(--text-primary); font-family: var(--font-body);
  font-size: 0.92rem; transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group select option { background: var(--bg-card); }

/* ─── Training Cards ────────────────────────────────── */
.training-card {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 14px; padding: 40px;
  transition: all 0.4s; position: relative;
}
.training-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), #00c3ff);
  transition: width 0.5s; border-radius: 14px 14px 0 0;
}
.training-card:hover { border-color: var(--border-light); }
.training-card:hover::before { width: 100%; }
.training-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 14px; letter-spacing: -0.3px;
}
.training-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.training-tag {
  display: inline-block; padding: 5px 14px;
  background: var(--accent-glow); border: 1px solid rgba(0,229,160,0.15);
  border-radius: 100px; font-size: 0.75rem; font-weight: 600;
  color: var(--accent); margin-right: 8px; margin-bottom: 8px;
}
.training-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px;
}

/* ─── Scroll Reveal ─────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Article styles ────────────────────────────────── */
.article-header {
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--border);
}
.article-content { max-width: 780px; padding: 60px 0; }
.article-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.88rem;
  text-decoration: none; margin-bottom: 28px;
  transition: color 0.25s;
}
.article-back:hover { color: var(--accent); }
.article-tag {
  display: inline-block; padding: 5px 14px;
  background: var(--accent-glow); border: 1px solid rgba(0,229,160,0.15);
  border-radius: 100px; font-size: 0.75rem; font-weight: 600;
  color: var(--accent); margin-right: 8px; margin-bottom: 8px;
}
.article-meta {
  display: flex; gap: 20px; color: var(--text-muted);
  font-size: 0.85rem; align-items: center; margin-top: 16px;
}
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-content h2 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  margin: 40px 0 16px; letter-spacing: -0.3px;
}
.article-content h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  margin: 28px 0 12px; color: var(--text-primary);
}
.article-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 18px; font-size: 0.97rem; }
.article-content ul, .article-content ol {
  color: var(--text-secondary); font-size: 0.97rem; line-height: 1.8;
  margin: 16px 0 24px 24px;
}
.article-content li { margin-bottom: 10px; }
.article-content strong { color: var(--text-primary); font-weight: 600; }
.article-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px; margin: 28px 0;
  background: var(--bg-secondary); border-radius: 0 8px 8px 0;
}
.article-content blockquote p { color: var(--text-secondary); font-style: italic; margin: 0; }

/* ─── Contact page ──────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-info-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
}
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-glow); border: 1px solid rgba(0,229,160,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.contact-info-item h4 {
  font-family: var(--font-display); font-size: 0.85rem;
  font-weight: 700; margin-bottom: 4px; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 1px;
}
.contact-info-item a, .contact-info-item p {
  color: var(--text-primary); font-size: 0.95rem;
  text-decoration: none; transition: color 0.25s;
}
.contact-info-item a:hover { color: var(--accent); }
.download-box {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px;
  border-top: 2px solid var(--accent);
}
.download-box h4 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  margin-bottom: 10px;
}
.download-box p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }

/* ─── About page ─────────────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
  border-radius: 14px; overflow: hidden;
}
.value-card {
  background: var(--bg-secondary); padding: 44px 36px;
  transition: background 0.4s;
}
.value-card:hover { background: var(--bg-card-hover); }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 12px; color: var(--accent);
}
.value-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }
.timeline {
  position: relative; padding-left: 40px; max-width: 700px;
}
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 48px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -36px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg-primary);
  box-shadow: 0 0 12px var(--accent-glow);
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;
}
.timeline-item .timeline-date {
  font-size: 0.8rem; color: var(--accent); font-weight: 600;
  margin-bottom: 10px; letter-spacing: 1px; text-transform: uppercase;
}
.timeline-item p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

/* ─── Services page ─────────────────────────────────── */
.service-detail {
  padding: 72px 0; border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail h2 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800;
  letter-spacing: -0.5px; line-height: 1.25; margin-bottom: 18px;
}
.service-detail p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; }
.service-sidebar {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 14px; padding: 36px;
}
.service-sidebar h4 {
  font-family: var(--font-display); font-size: 0.85rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent); margin-bottom: 20px;
}
.service-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--accent-glow); border: 1px solid rgba(0,229,160,0.15);
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.4rem; color: var(--accent); margin-bottom: 24px;
}

/* ─── Certifications page ───────────────────────────── */
.cert-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px; background: var(--border); border-radius: 14px; overflow: hidden;
}
.cert-card {
  background: var(--bg-secondary); padding: 40px 32px;
  transition: background 0.3s;
}
.cert-card:hover { background: var(--bg-card-hover); }
.cert-badge {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--accent-glow); border: 1px solid rgba(0,229,160,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 20px;
}
.cert-card h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 10px;
}
.cert-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.65; }
.cert-process {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.cert-step {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 24px;
}
.cert-step-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--accent); margin-bottom: 12px;
}
.cert-step h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  margin-bottom: 8px;
}
.cert-step p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.65; }

/* ─── Homepage Hero ─────────────────────────────────── */
.hero {
  padding: 180px 0 120px;
  position: relative; overflow: hidden;
}
.hero-img {
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  object-fit: cover; opacity: 0.12;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 80%);
  pointer-events: none;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none; animation: pulseGlow 6s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 80, 200, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; background: var(--accent-glow);
  border: 1px solid rgba(0, 229, 160, 0.25);
  border-radius: 100px; font-size: 0.82rem; font-weight: 500;
  color: var(--accent); margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out both;
}
.hero-badge .dot {
  width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 800; line-height: 1.18; letter-spacing: -1px;
  max-width: 820px; margin-bottom: 28px;
  animation: fadeInUp 0.8s 0.15s ease-out both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #00c3ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem; color: var(--text-secondary);
  max-width: 560px; line-height: 1.75; margin-bottom: 44px;
  animation: fadeInUp 0.8s 0.3s ease-out both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.45s ease-out both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Why section on homepage */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.shield-graphic {
  position: relative; display: flex; align-items: center;
  justify-content: center; height: 420px;
}
.glow-ring {
  width: 320px; height: 320px; border-radius: 50%;
  border: 1.5px solid var(--border-light);
  position: absolute; animation: rotateRing 30s linear infinite;
}
.glow-ring:nth-child(2) {
  width: 240px; height: 240px;
  border-color: rgba(0, 229, 160, 0.12);
  animation-direction: reverse; animation-duration: 20s;
}
.glow-ring:nth-child(3) {
  width: 160px; height: 160px;
  border-color: rgba(0, 229, 160, 0.2);
}
@keyframes rotateRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .content-block { grid-template-columns: 1fr; gap: 40px; }
  .content-block.reverse { direction: ltr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .shield-graphic { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-grid.reverse { direction: ltr; }
  .cert-process { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.show {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-card); border-bottom: 1px solid var(--border);
    padding: 20px 24px; gap: 16px;
  }
  .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; background: transparent; border: none;
    padding: 0 0 0 16px; min-width: auto;
  }
  .mobile-toggle { display: block; }
  .page-hero { padding: 130px 0 60px; }
  .hero { padding: 140px 0 80px; }
  .hero-actions { flex-direction: column; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; padding: 48px 32px; text-align: center; }
  .cta-content p { max-width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cert-process { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .training-grid { grid-template-columns: 1fr; }
  .footer-contact { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .stats-bar .container { grid-template-columns: 1fr; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
