/* ==========================================================================
   TruTecME Spadile-Inspired Enterprise Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Color Tokens - Spadile Red & Clean White Canvas */
  --bg-dark: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.95);

  --accent-red: #D90A2C;
  --accent-red-header: #D72E2C;
  --accent-red-hover: #B80824;
  --accent-red-light: #FFF1F2;
  --accent-red-border: #FECDD3;

  --accent-blue: #0284C7;
  --accent-gold: #FFCC00;

  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;

  --border-subtle: #E2E8F0;
  --border-highlight: #FCA5A5;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.1);

  /* Typography */
  --font-heading: 'DM Sans', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --tr-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr-fast);
}

button {
  font-family: var(--font-heading);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* Container & Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-spacing {
  padding: 6rem 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: var(--accent-red-light);
  border: 1px solid var(--accent-red-border);
  color: var(--accent-red);
  font-family: var(--font-mono);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 720px;
  margin-bottom: 3rem;
}

/* Clean Card Panel Design */
.glass-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: border-color var(--tr-fast), transform var(--tr-fast), box-shadow var(--tr-fast);
}

.glass-panel:hover {
  border-color: var(--border-highlight);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Spadile Crimson Red Header & Navigation */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: var(--accent-red-header);
  box-shadow: 0 4px 20px rgba(215, 46, 44, 0.25);
  transition: background var(--tr-smooth), padding var(--tr-smooth);
}

.site-header.scrolled {
  background: #C82321;
  padding: 0.8rem 0;
  box-shadow: 0 6px 24px rgba(200, 35, 33, 0.35);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}

.brand-badge {
  width: 38px;
  height: 38px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.brand-text span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--accent-gold);
  transition: width var(--tr-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  background: var(--accent-red);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(217, 10, 44, 0.3);
  transition: transform var(--tr-fast), background var(--tr-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-red-hover);
  box-shadow: 0 6px 20px rgba(217, 10, 44, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: background var(--tr-fast), border-color var(--tr-fast);
}

.btn-secondary:hover {
  background: var(--accent-red-light);
  border-color: var(--border-highlight);
  color: var(--accent-red);
}

/* Header button override for nav */
.site-header .btn-primary {
  background: #FFFFFF;
  color: var(--accent-red);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.site-header .btn-primary:hover {
  background: #FFF1F2;
  color: var(--accent-red-hover);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: #FFFFFF;
}

/* Hero Section Split Layout */
.hero-section {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom, #FFF1F2 0%, #F8FAFC 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  background: var(--accent-red-light);
  border: 1px solid var(--accent-red-border);
  color: var(--accent-red);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-red);
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid #FFFFFF;
  box-shadow: var(--shadow-lg);
}

.hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform var(--tr-smooth);
}

.hero-image-frame:hover .hero-img {
  transform: scale(1.04);
}

/* Stats Counter Strip */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  padding: 2rem;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--accent-red);
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--accent-red);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.stat-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Service Switcher Matrix */
.services-switcher-wrapper {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .services-switcher-wrapper {
    grid-template-columns: 1fr;
  }
}

.service-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-nav-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: all var(--tr-fast);
}

.service-tab-thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.service-nav-btn:hover {
  border-color: var(--border-highlight);
  color: var(--accent-red);
}

.service-nav-btn.active {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(217, 10, 44, 0.3);
}

.service-nav-btn.active .service-nav-badge {
  color: var(--accent-gold);
}

.service-nav-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-red);
  display: block;
}

.service-nav-title {
  font-weight: 700;
  font-size: 1rem;
}

.service-content-card {
  padding: 0;
}

.card-image-banner-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.card-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #FFFFFF, transparent 70%);
}

.banner-badge-overlay {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--accent-red);
  color: var(--accent-red);
  font-family: var(--font-mono);
  font-size: 0.825rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.service-main-title {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.service-subtitle-text {
  font-size: 1.15rem;
  color: var(--accent-red);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-desc-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.highlight-box {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
}

.highlight-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 0.4rem;
}

.highlight-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.subservices-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.75rem;
}

.subservices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.subservice-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
}

.subservice-name {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.subservice-desc {
  font-size: 0.925rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bullet-item::before {
  content: '✓';
  color: var(--accent-red);
  font-weight: 800;
}

/* FAQ Accordion */
.faq-section-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-dark);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Industry Verticals Section */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.vertical-card {
  padding: 0;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
}

.vertical-img-header {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.vertical-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-smooth);
}

.vertical-card:hover .vertical-img {
  transform: scale(1.08);
}

.vertical-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
}

.vertical-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  border: 1px solid var(--accent-red);
  color: var(--accent-red);
  font-weight: 700;
}

.vertical-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.vertical-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.compliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.compliance-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  background: var(--accent-red-light);
  border: 1px solid var(--accent-red-border);
  color: var(--accent-red);
  font-weight: 600;
}

/* Vertical Inspection Modal */
.vertical-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .vertical-modal-content {
    grid-template-columns: 1fr;
  }
}

.challenge-box, .solution-box {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.challenge-box {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
}

.solution-box {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
}

.box-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.challenge-box .box-label { color: #DC2626; }
.solution-box .box-label { color: #059669; }

/* Case Studies Grid */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.case-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: #FFFFFF;
}

.case-img-header {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-smooth);
}

.case-card:hover .case-img {
  transform: scale(1.08);
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
}

.case-tag-overlay {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--accent-red-border);
  color: var(--accent-red);
  font-weight: 700;
}

.case-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.case-summary {
  color: var(--text-secondary);
  font-size: 0.925rem;
  margin-bottom: 1.25rem;
}

.case-metric-pill {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--accent-red-light);
  border: 1px solid var(--accent-red-border);
  color: var(--accent-red);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stack-pill {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

/* Whitepapers Section */
.whitepapers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.wp-card {
  padding: 0;
  cursor: pointer;
  background: #FFFFFF;
}

.wp-img-header {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.wp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-smooth);
}

.wp-card:hover .wp-img {
  transform: scale(1.08);
}

.wp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
}

.wp-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--accent-red);
  color: var(--accent-red);
  font-weight: 700;
}

.wp-category {
  color: var(--accent-red);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.wp-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.wp-author {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* Modal Window Base Design */
dialog.custom-modal {
  margin: auto;
  padding: 0;
  border: none;
  background: transparent;
  max-width: 800px;
  width: 90%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

dialog.custom-modal::backdrop {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
}

.modal-inner {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--text-primary);
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--tr-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--accent-red-light);
  color: var(--accent-red);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  padding: 2.25rem 1.75rem;
  text-align: center;
  background: #FFFFFF;
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--accent-red);
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 4px 16px rgba(217, 10, 44, 0.3);
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--accent-red);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-credentials {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  background: var(--bg-dark);
  display: inline-block;
}

/* Partner Logo Bar */
.partners-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 3rem;
  opacity: 0.7;
}

.partner-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-secondary);
  letter-spacing: -0.02em;
}

/* Contact & SLA Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

.contact-info-panel {
  padding: 3rem;
  background: #FFFFFF;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-red-light);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-title {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.info-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-form-panel {
  padding: 3rem;
  background: #FFFFFF;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--tr-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-red);
  background: #FFFFFF;
  outline: none;
  box-shadow: 0 0 0 3px rgba(217, 10, 44, 0.15);
}

/* Footer - Spadile Dark Footer */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem 0;
  background: #1E293B;
  color: #F8FAFC;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand-desc {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 360px;
}

.footer-col-title {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: #F8FAFC;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #94A3B8;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #FCA5A5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  color: #64748B;
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Animations */
@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-section {
    padding-top: 7rem;
  }
}
