/* ===== LAKECITY SURGICAL — Global Stylesheet ===== */

/* === CSS Custom Properties === */
:root {
  --brand-red: #E6202A;
  --brand-red-hover: #C71522;
  --brand-red-dark: #B91C1C;
  --deep-navy: #0F172A;
  --charcoal: #1E293B;
  --cool-gray: #E5E7EB;
  --ice-white: #F8FAFC;
  --pure-white: #FFFFFF;
  --steel-blue: #3B82F6;
  --steel-blue-hover: #2563EB;
  --emerald-green: #10B981;
  --emerald-green-hover: #059669;
  --text-primary: var(--charcoal);
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --border-light: var(--cool-gray);
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --max-width: 1280px;
  --header-height: 72px;
  --header-height-mobile: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--pure-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Skip Link === */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--brand-red);
  color: var(--pure-white);
  padding: var(--space-3) var(--space-6);
  z-index: 10000;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  text-decoration: none;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--deep-navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-6);
}

h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.lead-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.small-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

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

img, svg {
  display: block;
  max-width: 100%;
}

/* === Container === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* === Eyebrow === */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: var(--space-4);
}

/* === Section Padding === */
.section {
  padding: var(--space-24) 0;
}

.section-sm {
  padding: var(--space-16) 0;
}

.section-lg {
  padding: var(--space-32) 0;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--brand-red);
  color: var(--pure-white);
  border-color: var(--brand-red);
}

.btn-primary:hover {
  background-color: var(--brand-red-hover);
  border-color: var(--brand-red-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--deep-navy);
  color: var(--pure-white);
  border-color: var(--deep-navy);
}

.btn-secondary:hover {
  background-color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--pure-white);
  border-color: var(--pure-white);
}

.btn-outline:hover {
  background-color: var(--pure-white);
  color: var(--deep-navy);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

/* === Badge === */
.badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-red {
  background-color: var(--brand-red);
  color: var(--pure-white);
}

.badge-navy {
  background-color: var(--deep-navy);
  color: var(--pure-white);
}

/* === Promise Badge === */
.promise-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-4) var(--space-8);
  border: 2px solid var(--brand-red);
  border-radius: 100px;
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--deep-navy);
  background: var(--pure-white);
  margin: var(--space-8) 0;
}

/* === Cards === */
.card {
  background: var(--pure-white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-navy {
  background: var(--deep-navy);
  color: var(--pure-white);
}

/* === Stat Card === */
.stat-card {
  background: var(--ice-white);
  border-left: 4px solid var(--brand-red);
  border-radius: 0 12px 12px 0;
  padding: var(--space-6) var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--deep-navy);
  line-height: 1.1;
  margin-bottom: var(--space-1);
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* === Testimonial Card === */
.testimonial-card {
  background: var(--pure-white);
  border-left: 4px solid var(--brand-red);
  border-radius: 0 12px 12px 0;
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 700;
  color: var(--deep-navy);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* === Contact Info Card === */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--ice-white);
  border-radius: 12px;
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 28px;
  height: 28px;
  color: var(--brand-red);
  flex-shrink: 0;
}

/* === Grid Helpers === */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

/* === Form Inputs === */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--charcoal);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--pure-white);
  border: 1px solid var(--cool-gray);
  border-radius: 8px;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(230, 32, 42, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--brand-red);
}

.error-message {
  font-size: 0.8125rem;
  color: var(--brand-red);
  margin-top: var(--space-1);
  display: none;
}

.form-input.error ~ .error-message,
.form-select.error ~ .error-message,
.form-textarea.error ~ .error-message {
  display: block;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* === Success Message === */
.success-message {
  display: none;
  align-items: center;
  gap: var(--space-3);
  background: var(--emerald-green);
  color: var(--pure-white);
  padding: var(--space-6);
  border-radius: 12px;
  font-weight: 500;
  margin-top: var(--space-6);
}

.success-message.visible {
  display: flex;
}

/* === Header / Navigation === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--deep-navy);
  white-space: nowrap;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav-link {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--charcoal);
  text-decoration: none;
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  transition: width var(--transition-base);
  transform-origin: left;
}

.nav-link:hover {
  color: var(--brand-red);
}

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

.nav-link.active {
  color: var(--brand-red);
}

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

.nav-link.active::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-red);
}

.nav-cta {
  margin-left: var(--space-4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-navy);
  border-radius: 2px;
  transition: all var(--transition-base);
  position: absolute;
}

.hamburger-line:nth-child(1) {
  transform: translateY(-6px);
}

.hamburger-line:nth-child(2) {
  transform: translateY(0);
}

.hamburger-line:nth-child(3) {
  transform: translateY(6px);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--deep-navy);
  z-index: 1050;
  transition: right var(--transition-slow);
  padding: calc(var(--header-height-mobile) + var(--space-8)) var(--space-8) var(--space-8);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer .nav-link {
  color: var(--pure-white);
  font-size: 1.125rem;
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.mobile-drawer .nav-link.active {
  color: var(--brand-red);
}

.mobile-drawer .nav-link.active::before {
  display: none;
}

.mobile-drawer .nav-cta {
  margin-left: 0;
  margin-top: var(--space-6);
  width: 100%;
}

.mobile-drawer .btn {
  width: 100%;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.drawer-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

/* === Hero === */
.page-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ice-white);
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
}

.page-hero-compact {
  min-height: 50vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  background: var(--ice-white);
  position: relative;
  overflow: hidden;
}

.page-hero-navy {
  background: var(--deep-navy);
  min-height: 45vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero-navy h1 {
  color: var(--pure-white);
}

.page-hero-navy .lead-text {
  color: rgba(255, 255, 255, 0.8);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero Background Pattern */
.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-pattern::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(0,0,0,0.03) 40px, rgba(0,0,0,0.03) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0,0,0,0.03) 40px, rgba(0,0,0,0.03) 41px);
}

.hero-pattern-navy::before {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 100%;
  height: 400px;
}

.hero-visual-composition {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(230, 32, 42, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(15, 23, 42, 0.04) 0%, transparent 60%);
  border-radius: 16px;
}

/* Floating Stat Cards */
.floating-card {
  position: absolute;
  background: var(--pure-white);
  border-radius: 12px;
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
  min-width: 140px;
}

.floating-card-1 {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 15%;
  left: 5%;
  animation-delay: 1s;
}

.floating-card-3 {
  top: 40%;
  right: -5%;
  animation-delay: 2s;
}

.floating-card .stat-number {
  font-size: 1.75rem;
}

.floating-card .stat-label {
  font-size: 0.75rem;
}

/* === Hero Image === */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-muted);
  font-size: 0.75rem;
  animation: pulse 2s ease-in-out infinite;
  cursor: pointer;
}

.scroll-chevron {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(4px); }
}

/* === Trust Bar === */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--cool-gray);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--steel-blue);
  flex-shrink: 0;
}

/* === Stats Row === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.stats-row-navy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  text-align: center;
}

.stats-row-navy .stat-number {
  color: var(--pure-white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.stats-row-navy .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

/* === Feature Card === */
.feature-card {
  background: var(--pure-white);
  border-radius: 12px;
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--brand-red);
  transition: width var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
  width: 100%;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-5);
  color: var(--steel-blue);
}

.feature-icon.emerald {
  color: var(--emerald-green);
}

.feature-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--deep-navy);
  margin-bottom: var(--space-3);
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === Industry Card === */
.industry-card {
  background: var(--ice-white);
  border: 1px solid var(--cool-gray);
  border-radius: 12px;
  padding: var(--space-8);
  transition: all var(--transition-base);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-red);
}

.industry-card-navy {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: var(--space-8);
  transition: all var(--transition-base);
  color: var(--pure-white);
}

.industry-card-navy:hover {
  transform: translateY(-4px);
  border-color: var(--brand-red);
}

.industry-card-navy .feature-title {
  color: var(--pure-white);
}

.industry-card-navy .feature-desc {
  color: rgba(255, 255, 255, 0.7);
}

.industry-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-5);
  color: var(--steel-blue);
}

.industry-icon.red {
  color: var(--brand-red);
}

.industry-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--steel-blue);
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: var(--space-4);
  transition: color var(--transition-fast);
}

.industry-link:hover {
  color: var(--steel-blue-hover);
  text-decoration: underline;
}

/* === Product Card === */
.product-card {
  background: var(--pure-white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.product-card-body {
  padding: var(--space-6);
}

.product-card-icon {
  width: 36px;
  height: 36px;
  color: var(--brand-red);
  margin-bottom: var(--space-3);
  display: block;
}

.product-card-visual {
  height: 160px;
  border-radius: 12px 12px 0 0;
  position: relative;
  overflow: hidden;
}

.product-card-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card .badge {
  margin-bottom: var(--space-3);
}

.product-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--deep-navy);
  margin-bottom: var(--space-2);
}

.product-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--steel-blue);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.product-link:hover {
  color: var(--steel-blue-hover);
  text-decoration: underline;
}

.product-cta-link {
  color: var(--steel-blue);
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  transition: color var(--transition-fast);
}

.product-cta-link:hover {
  color: var(--steel-blue-hover);
  text-decoration: underline;
}

/* === Blog Card === */
.blog-card {
  background: var(--pure-white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.blog-card-image {
  height: 200px;
  border-radius: 12px 12px 0 0;
  position: relative;
  overflow: hidden;
}

.blog-card-body {
  padding: var(--space-6);
}

.blog-card .badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
}

.blog-read-time {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: 0.75rem;
  color: var(--pure-white);
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.blog-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--deep-navy);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.blog-date {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--space-3);
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--steel-blue);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.blog-link:hover {
  color: var(--steel-blue-hover);
  text-decoration: underline;
}

/* === Tab System === */
.tabs {
  margin-bottom: var(--space-10);
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  border-bottom: 1px solid var(--cool-gray);
  padding-bottom: var(--space-2);
}

.tab-btn {
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--charcoal);
  background: var(--ice-white);
  border: 1px solid var(--cool-gray);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.tab-btn:hover {
  background: var(--cool-gray);
}

.tab-btn.active {
  background: var(--deep-navy);
  color: var(--pure-white);
  border-color: var(--deep-navy);
}

.tab-content {
  display: none;
  animation: fadeIn var(--transition-base) ease-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--deep-navy) 0%, #1a2744 100%);
  text-align: center;
}

.cta-banner h2 {
  color: var(--pure-white);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* === Mission/Vision Card === */
.mission-card {
  background: var(--pure-white);
  border-radius: 12px;
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--brand-red);
}

.vision-card {
  background: var(--pure-white);
  border-radius: 12px;
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--steel-blue);
}

.mission-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-5);
}

.mission-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--deep-navy);
  margin-bottom: var(--space-4);
}

/* === Value Card === */
.value-card {
  background: var(--ice-white);
  border-radius: 12px;
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-align: center;
}

.value-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.value-card .feature-icon {
  margin: 0 auto var(--space-5);
}

/* === About Visual === */
.about-visual {
  position: relative;
  width: 100%;
  height: 400px;
  background:
    linear-gradient(135deg, rgba(230, 32, 42, 0.05) 0%, transparent 50%),
    linear-gradient(225deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  border-radius: 16px;
  overflow: hidden;
}

.about-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === Map Visual === */
.map-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 300px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 50% 50%, rgba(230, 32, 42, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.05) 0%, transparent 50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin {
  width: 48px;
  height: 48px;
  color: var(--brand-red);
}

.map-ring {
  position: absolute;
  border: 2px solid rgba(230, 32, 42, 0.2);
  border-radius: 50%;
  animation: mapPing 2s ease-in-out infinite;
}

.map-ring:nth-child(1) {
  width: 100px;
  height: 100px;
}

.map-ring:nth-child(2) {
  width: 160px;
  height: 160px;
  animation-delay: 0.5s;
}

.map-ring:nth-child(3) {
  width: 220px;
  height: 220px;
  animation-delay: 1s;
}

@keyframes mapPing {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* === Newsletter === */
.newsletter-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.newsletter-form .form-input {
  flex: 1;
}

/* === Footer === */
.site-footer {
  background: var(--deep-navy);
  color: var(--pure-white);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

.footer-brand .logo-img {
  height: 36px;
}

.footer-brand .logo-text {
  color: var(--pure-white);
  font-size: 0.9375rem;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  margin: var(--space-4) 0 var(--space-2);
  font-weight: 600;
}

.footer-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--pure-white);
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--pure-white);
  text-decoration: underline;
  text-decoration-color: var(--brand-red);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  color: var(--steel-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-blue);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--brand-red);
  color: var(--pure-white);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* === Animations (Scroll) === */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.animate-fade.visible {
  opacity: 1;
}

.animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-children > .animate,
.stagger-children > * > .animate {
  transition-delay: calc(var(--stagger-index, 0) * 100ms);
}

/* === Page Load Animations === */
.page-fade-in {
  animation: pageFadeIn 0.6s ease-out;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .animate {
    opacity: 1 !important;
    transform: none !important;
  }

  .animate-fade,
  .animate-scale {
    opacity: 1 !important;
    transform: none !important;
  }

  .floating-card {
    animation: none !important;
  }

  .scroll-indicator {
    animation: none !important;
  }

  .hero-visual-composition {
    display: none;
  }
}

/* === Tab content note === */
.tab-note {
  text-align: center;
  margin-top: var(--space-10);
  padding: var(--space-6);
  background: var(--ice-white);
  border-radius: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tab-note a {
  color: var(--steel-blue);
  font-weight: 500;
  text-decoration: underline;
}

/* === Breadcrumb === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--brand-red);
}

.breadcrumb .current {
  color: var(--text-primary);
  font-weight: 500;
}

.breadcrumb-sep {
  color: var(--text-muted);
}

/* === Print Styles === */
@media print {
  .site-header,
  .site-footer,
  .scroll-indicator,
  .cta-banner,
  .hamburger,
  .mobile-drawer,
  .drawer-backdrop,
  .btn,
  .newsletter-form {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }

  .page-hero,
  .page-hero-compact,
  .page-hero-navy {
    min-height: auto;
    padding: 20px 0;
    background: none !important;
  }

  .card,
  .stat-card,
  .testimonial-card,
  .feature-card,
  .industry-card,
  .product-card,
  .blog-card,
  .value-card {
    box-shadow: none !important;
    border: 1px solid #ddd;
    break-inside: avoid;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  h1, h2, h3, h4 {
    page-break-after: avoid;
  }

  .hero-pattern,
  .hero-pattern-navy {
    display: none;
  }
}

/* === Responsive: Tablet (768px+) === */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-row-navy {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .newsletter-form {
    flex-direction: row;
  }
}

/* === Responsive: Desktop (1024px+) === */
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-two-col {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: var(--space-12);
    align-items: center;
  }

  .about-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
  }

  .contact-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
  }
}

/* === Responsive: Large Desktop (1280px+) === */
@media (min-width: 1280px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === Responsive: Mobile (< 768px) === */
@media (max-width: 767px) {
  :root {
    --header-height: 64px;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: var(--space-16) 0;
  }

  .section-lg {
    padding: var(--space-20) 0;
  }

  .hero-two-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
  }

  .hero-two-col > *:first-child {
    order: 1;
  }

  .hero-two-col > *:last-child {
    order: 2;
  }

  .hero-visual {
    height: 280px;
  }

  .tab-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-4);
  }

  .tab-btn {
    font-size: 0.8125rem;
    padding: 8px 16px;
    white-space: nowrap;
  }

  .stats-row {
    gap: var(--space-4);
  }

  .stats-row-navy {
    gap: var(--space-4);
  }

  .about-two-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
  }

  .contact-two-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .page-hero-compact {
    min-height: 40vh;
  }

  .page-hero-navy {
    min-height: 40vh;
  }
}
