/* ===== FORCEBEYOND — Silver / Navy / White ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #132040;
  --navy-light: #1b2d52;
  --silver: #b8c4d0;
  --silver-light: #d6dfe8;
  --silver-pale: #eef2f6;
  --white: #ffffff;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-bright: #60a5fa;
  --text-dark: #0f172a;
  --text-mid: #475569;
  --text-light: #94a3b8;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(10,22,40,0.06);
  --shadow-md: 0 4px 16px rgba(10,22,40,0.08);
  --shadow-lg: 0 12px 40px rgba(10,22,40,0.12);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--silver-pale); }
.section-title { font-family: var(--font-display); font-size: 2.25rem; font-weight: 400; color: var(--navy); text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--text-mid); font-size: 1.1rem; margin-bottom: 48px; max-width: 680px; margin-left: auto; margin-right: auto; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--silver-light);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { flex-shrink: 0; }
.logo-text { font-size: 1.25rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.logo-accent { color: var(--accent); }
.main-nav ul { display: flex; list-style: none; gap: 4px; }
.main-nav a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; color: var(--text-mid); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; border-radius: 6px;
  transition: var(--transition);
}
.main-nav a:hover { color: var(--navy); background: var(--silver-pale); }
.main-nav a svg { opacity: 0.5; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--silver-light);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 260px; padding: 8px; z-index: 100;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 10px 14px; color: var(--text-mid);
  text-decoration: none; font-size: 0.88rem; border-radius: 6px;
  transition: var(--transition);
}
.dropdown a:hover { background: var(--silver-pale); color: var(--navy); }

.header-cta { white-space: nowrap; }

/* Mobile */
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  position: absolute; left: 9px; transition: var(--transition);
}
.mobile-toggle span:nth-child(1) { top: 12px; }
.mobile-toggle span:nth-child(2) { top: 19px; }
.mobile-toggle span:nth-child(3) { top: 26px; }

@media (max-width: 1024px) {
  .main-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--white); padding: 24px; overflow-y: auto; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: 14px; font-size: 1rem; }
  .dropdown { position: static; box-shadow: none; border: none; padding-left: 16px; display: block; }
  .mobile-toggle { display: block; }
  .header-cta { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 24px; border-radius: var(--radius); font-weight: 600;
  font-size: 0.9rem; text-decoration: none; border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(59,130,246,0.3); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-mid); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative; padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  color: var(--white); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(59,130,246,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(96,165,250,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-bright); margin-bottom: 20px;
  padding: 6px 14px; background: rgba(59,130,246,0.15);
  border-radius: 100px;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 400; line-height: 1.15; margin-bottom: 24px;
  max-width: 720px;
}
.hero-highlight { color: var(--accent-bright); }
.hero-desc { font-size: 1.1rem; color: var(--silver-light); max-width: 600px; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.82rem; color: var(--silver); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

@media (max-width: 768px) {
  .hero { padding: 60px 0 48px; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--navy); color: var(--silver); padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-inner { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 500; white-space: nowrap; }
.trust-item svg { opacity: 0.7; flex-shrink: 0; }
@media (max-width: 768px) {
  .trust-inner { gap: 16px 24px; justify-content: center; }
  .trust-item { font-size: 0.75rem; }
}

/* ===== SERVICE CARDS / GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.service-card {
  display: block; padding: 32px; background: var(--white);
  border: 1px solid var(--silver-light); border-radius: var(--radius-lg);
  text-decoration: none; color: var(--text-dark);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  opacity: 0; transition: var(--transition);
}
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card:hover::before { opacity: 1; }
.service-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; color: var(--navy); }
.service-card p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.6; }
.card-arrow {
  display: inline-block; margin-top: 16px; color: var(--accent);
  font-size: 1.25rem; transition: var(--transition);
}
.service-card:hover .card-arrow { transform: translateX(4px); }
.industry-card {
  padding: 28px; background: var(--white); border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg); transition: var(--transition);
}
.industry-card:hover { border-color: var(--silver); box-shadow: var(--shadow-sm); }
.industry-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; color: var(--navy); }
.industry-card p { color: var(--text-mid); font-size: 0.88rem; }

/* ===== HUB CARDS ===== */
.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.hub-card {
  display: block; padding: 32px; background: var(--white);
  border: 1px solid var(--silver-light); border-radius: var(--radius-lg);
  text-decoration: none; color: var(--text-dark); position: relative;
  transition: var(--transition); overflow: hidden;
}
.hub-card-featured {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white); border-color: transparent;
}
.hub-card-featured p { color: var(--silver-light); }
.hub-card-featured h3 { color: var(--white); }
.hub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hub-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.hub-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; }
.hub-card-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-bright); margin-bottom: 12px;
}
.hub-card-arrow {
  display: inline-block; margin-top: 16px; color: var(--accent-bright);
  font-size: 1.25rem; transition: var(--transition);
}
.hub-card:hover .hub-card-arrow { transform: translateX(4px); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 64px 0 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400; max-width: 800px;
}
.hero-subtitle { color: var(--silver-light); font-size: 1.1rem; margin-top: 12px; max-width: 640px; }
.hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.hub-hero .hub-label { margin-bottom: 12px; }
.hub-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-bright); padding: 4px 12px;
  background: rgba(59,130,246,0.15); border-radius: 100px;
  margin-bottom: 8px;
}
.breadcrumb-link {
  display: inline-block; color: var(--accent-bright); text-decoration: none;
  font-size: 0.85rem; margin-bottom: 16px;
  transition: var(--transition);
}
.breadcrumb-link:hover { color: var(--white); }

/* ===== CONTENT LAYOUT ===== */
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
@media (max-width: 1024px) { .content-grid { grid-template-columns: 1fr; } }
.content-main {}
.content-block { margin-bottom: 48px; }
.content-block h2 {
  font-family: var(--font-display); font-size: 1.65rem;
  color: var(--navy); margin-bottom: 16px; font-weight: 400;
}
.content-block p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.content-block p:last-child { margin-bottom: 0; }

/* Article (AI/resource pages) */
.article-content h2 {
  font-family: var(--font-display); font-size: 1.65rem;
  color: var(--navy); margin: 40px 0 16px; font-weight: 400;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { font-size: 1.15rem; font-weight: 600; color: var(--navy); margin: 28px 0 12px; }
.article-content p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.article-content a { color: var(--accent); text-decoration: underline; }
.article-content strong { color: var(--text-dark); }

/* Hub body */
.hub-intro { max-width: 800px; margin: 0 auto 32px; }
.hub-intro .lead { font-size: 1.15rem; color: var(--text-mid); line-height: 1.8; }
.hub-body { max-width: 800px; margin: 0 auto 48px; }
.hub-body p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.hub-body h3 { font-size: 1.2rem; font-weight: 600; color: var(--navy); margin: 32px 0 12px; }

/* ===== SPECS TABLE ===== */
.specs-table { overflow-x: auto; margin: 16px 0; }
.specs-table table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.specs-table th {
  background: var(--navy); color: var(--white);
  padding: 12px 16px; text-align: left; font-weight: 600;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.specs-table td { padding: 12px 16px; border-bottom: 1px solid var(--silver-light); color: var(--text-mid); }
.specs-table tr:hover td { background: var(--silver-pale); }
.specs-table td:first-child { font-weight: 600; color: var(--navy); white-space: nowrap; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--silver-light); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; padding: 16px 20px; background: var(--white);
  border: none; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; text-align: left;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--navy); transition: var(--transition);
}
.faq-q:hover { background: var(--silver-pale); }
.faq-q svg { flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 16px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; }

/* ===== SIDEBAR ===== */
.content-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  padding: 28px; background: var(--silver-pale);
  border-radius: var(--radius-lg); border: 1px solid var(--silver-light);
}
.sidebar-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.sidebar-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
.sidebar-card p:last-child { margin-bottom: 0; }
.sidebar-phone { font-size: 0.85rem; color: var(--text-mid); margin-top: 12px; text-align: center; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.check-list li {
  position: relative; padding-left: 24px; font-size: 0.88rem; color: var(--text-mid);
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.related-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.related-links a {
  display: block; padding: 8px 0; color: var(--accent); text-decoration: none;
  font-size: 0.88rem; border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}
.related-links a:hover { color: var(--accent-hover); padding-left: 4px; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white); text-align: center;
}
.cta-inner h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin-bottom: 12px; }
.cta-inner p { color: var(--silver-light); font-size: 1.05rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== INDUSTRIES CLOUD ===== */
.industries-cloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.industry-tag {
  padding: 10px 24px; background: var(--silver-pale); border: 1px solid var(--silver-light);
  border-radius: 100px; font-size: 0.9rem; font-weight: 500; color: var(--navy);
  transition: var(--transition);
}
.industry-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ===== ABOUT ===== */
.about-preview { max-width: 800px; }
.about-text h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--navy); margin-bottom: 16px; }
.about-text p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.about-content h2 { font-family: var(--font-display); font-size: 1.65rem; color: var(--navy); margin: 40px 0 16px; font-weight: 400; }
.about-content h2:first-child { margin-top: 0; }
.about-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-top: 48px; }
.stat-card {
  text-align: center; padding: 32px 20px; background: var(--silver-pale);
  border-radius: var(--radius-lg); border: 1px solid var(--silver-light);
}
.stat-card .stat-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--navy); display: block; }
.stat-card .stat-label { font-size: 0.82rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; display: block; }

/* ===== CONTACT FORM ===== */
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 1.65rem; color: var(--navy); margin-bottom: 8px; font-weight: 400; }
.form-placeholder { margin-top: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--silver-light);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.92rem;
  color: var(--text-dark); background: var(--white);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy); color: var(--silver); padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-text { color: var(--white); }
.footer-desc { font-size: 0.85rem; line-height: 1.7; color: var(--text-light); margin-bottom: 16px; }
.footer-contact { font-size: 0.85rem; color: var(--silver); line-height: 1.6; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-light); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-badges { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.badge {
  display: inline-block; padding: 4px 12px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px; font-size: 0.72rem; font-weight: 600;
  color: var(--silver); text-transform: uppercase; letter-spacing: 0.05em;
}
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-light); }
.footer-locations { font-size: 0.78rem; color: var(--text-light); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.7s ease-out; }
.service-card, .hub-card, .industry-card { animation: fadeUp 0.5s ease-out backwards; }
.service-card:nth-child(1), .hub-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2), .hub-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3), .hub-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }
