/* RMR Engineering Design System */

/* CSS Variables */
:root {
  /* Colors */
  --dark-charcoal: #1a1a1a;
  --darker-charcoal: #0f0f0f;
  --lighter-charcoal: #2a2a2a;
  --vivid-violet: #3b82f6;
  --violet: #3b82f6;
  --teal: #14b8a6;
  --soft-white: #f8fafc;
  --muted-gray: #6b7280;
  --whisper-gray: #9ca3af;
  
  /* Typography */
  --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  /* Layout */
  --container-max: 1200px;
  --section-padding: var(--space-xl) 0;
}

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

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--soft-white);
  background-color: var(--dark-charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--soft-white);
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: 1.8rem !important;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
  color: var(--vivid-violet);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
  color: var(--soft-white);
}

p.muted {
  color: var(--muted-gray);
}

p.whisper {
  color: var(--whisper-gray);
  font-size: 0.9rem;
}

/* Links */
a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #0d9488;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--teal);
  color: var(--dark-charcoal);
}

.btn-primary:hover {
  background-color: #0d9488;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--soft-white);
  border: 1px solid var(--teal);
}

.btn-outline:hover {
  background-color: var(--teal) !important;
  color: white !important;
}

.btn-secondary {
  background-color: transparent;
  color: var(--teal);
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.btn-secondary:hover {
  background-color: rgba(20, 184, 166, 0.1);
}

/* Layout */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--section-padding);
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Header */
.header {
  background-color: var(--darker-charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  padding: 0 0.5rem !important;
  max-width: 100% !important;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

.logo {
  display: flex;
  align-items: center;
  margin-left: 0.2rem !important;
}

.logo-img {
  height: 65px;
  width: auto;
  max-width: 325px;
  transition: height 0.3s ease;
}

.nav {
  display: flex;
  gap: var(--space-lg);
}

.nav a {
  color: var(--soft-white);
  font-weight: 500;
  transition: color 0.2s ease;
  text-align: center;
}

.nav a:hover {
  color: var(--teal);
}

/* Enhanced Control Room Design System */

/* Animated background pattern */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(107, 70, 193, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Enhanced grid overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

/* Enhanced typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--soft-white);
  position: relative;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}

h2 {
  font-size: 1.8rem !important;
  margin-bottom: var(--space-md);
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

/* Enhanced sections with depth */
.section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  animation: scanline 8s linear infinite;
}

@keyframes scanline {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Enhanced cards with hover effects */
.card {
  background: linear-gradient(135deg, var(--lighter-charcoal) 0%, rgba(42, 42, 42, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.1);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.5), transparent);
  animation: card-glow 3s ease-in-out infinite alternate;
}

@keyframes card-glow {
  0% { opacity: 0.3; }
  100% { opacity: 0.8; }
}

.card-left-accent {
  border-left: 3px solid var(--teal);
  position: relative;
}

.card-left-accent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--teal), transparent);
  opacity: 0.5;
}

/* Enhanced content sections */
.content-section {
  margin-bottom: var(--space-2xl);
  position: relative;
}

.content-grid {
  display: grid;
  gap: var(--space-lg);
  position: relative;
}

/* Enhanced bullet points */
.bullet-list {
  list-style: none;
  padding: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: var(--space-sm);
  transition: all 0.2s ease;
}

.bullet-list li:hover {
  transform: translateX(5px);
  color: var(--teal);
}

.bullet-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background-color: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
  animation: pulse 2s infinite;
}

/* Enhanced buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), #0d9488);
  color: var(--dark-charcoal);
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--soft-white);
  border: 1px solid var(--teal);
  position: relative;
}

.btn-outline:hover {
  background-color: var(--teal) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--teal);
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.btn-secondary:hover {
  background-color: rgba(20, 184, 166, 0.1);
  border-color: var(--teal);
  transform: translateY(-1px);
}

/* Enhanced hero section */
.hero {
  padding: calc(var(--space-2xl) * 0.56) 0;
  text-align: center;
  position: relative;
}

.hero-control-room {
  position: relative;
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 1rem;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--darker-charcoal) 0%, rgba(42, 42, 42, 0.9) 100%);
  backdrop-filter: blur(20px);
  box-shadow: 
    0 0 50px rgba(20, 184, 166, 0.1),
    inset 0 0 30px rgba(20, 184, 166, 0.05);
  overflow: hidden;
}

.hero-control-room::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(20, 184, 166, 0.1), transparent, rgba(107, 70, 193, 0.1), transparent);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.control-indicator {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 12px;
  height: 12px;
  background-color: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.8);
  animation: pulse 2s infinite;
  z-index: 10;
}

/* Enhanced section headers */
.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-header > div:first-child {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-header::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

.status-indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.status-indicator::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  animation: ping 2s infinite;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.status-warning {
  background-color: #3b82f6;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.status-active {
  background-color: var(--teal);
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.5);
}

.status-success {
  background-color: #3b82f6;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.status-info {
  background-color: var(--vivid-violet);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.status-primary {
  background-color: #3b82f6;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

/* Enhanced forms */
.form-group {
  margin-bottom: var(--space-md);
  position: relative;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--soft-white);
  position: relative;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  background: rgba(42, 42, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: var(--soft-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.2);
  background: rgba(42, 42, 42, 0.95);
}

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

/* Enhanced snapshot design */
.snapshot-card {
  background: linear-gradient(135deg, var(--lighter-charcoal) 0%, rgba(42, 42, 42, 0.9) 100%);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.snapshot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.snapshot-header h3 {
  color: var(--soft-white);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.snapshot-icon {
  opacity: 0.8;
}

.snapshot-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.snapshot-content {
  padding: var(--space-lg);
}

.main-description {
  color: var(--teal);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.process-steps-simple {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(20, 184, 166, 0.05);
  border-radius: 0.5rem;
  border-left: 3px solid var(--teal);
}

.step-number {
  width: 2rem;
  height: 2rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-item p {
  color: var(--soft-white);
  font-size: 1rem;
  margin: 0;
  line-height: 1.4;
}

.snapshot-clarity {
  display: flex !important;
  flex-direction: column !important;
  gap: var(--space-md) !important;
  margin-top: var(--space-lg);
}

.clarity-item {
  display: flex !important;
  align-items: center !important;
  gap: var(--space-sm) !important;
  width: 100% !important;
  min-height: 50px !important;
  justify-content: flex-start !important;
}

.clarity-icon {
  font-size: 1.2rem !important;
  flex-shrink: 0 !important;
  width: 30px !important;
  height: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.clarity-item p {
  color: var(--soft-white) !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  font-weight: 500 !important;
  flex: 1 !important;
}

.snapshot-cta {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Split Screen Snapshot Design - Override Everything */
.snapshot-split {
  display: flex !important;
  flex-direction: row !important;
  gap: 2rem !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  align-items: stretch !important;
  min-height: 600px !important;
}

.snapshot-visual {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  width: 50% !important;
  background: transparent !important;
  border: none !important;
  height: auto !important;
  padding: 1rem !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 1 !important;
  justify-content: space-between !important;
}

.abstract-svg-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  width: 100% !important;
  height: 100% !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0 !important;
}

.abstract-design {
  width: 100% !important;
  height: 160px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 15px rgba(20, 184, 166, 0.1));
  flex: 1 !important;
  max-height: 160px !important;
}

.design-1 {
  animation-delay: 4s;
}

.design-2 {
  animation-delay: 2s;
}

.design-3 {
  animation-delay: 0s;
}

.snapshot-content-right {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  width: 50% !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 2 !important;
}

.abstract-design svg {
  width: 100% !important;
  height: 180px !important;
  display: block !important;
}

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

.snapshot-content-right {
  display: flex;
  align-items: center;
}

/* Responsive for split screen */
@media (max-width: 968px) {
  .snapshot-split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    min-height: auto;
  }
  
  .snapshot-visual {
    order: 2;
  }
  
  .snapshot-content-right {
    order: 1;
  }
}

@media (max-width: 768px) {
  .snapshot-header {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
  
  .snapshot-clarity {
    grid-template-columns: 1fr;
  }
  
  .clarity-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }
}

/* RMR Performance Analysis Split Screen Design */
.analysis-card {
  background: linear-gradient(135deg, var(--lighter-charcoal) 0%, rgba(42, 42, 42, 0.9) 100%);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 1rem;
  padding: var(--space-lg);
  width: 100%;
}

.analysis-card h3 {
  color: var(--soft-white);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.analysis-card p {
  color: var(--soft-white);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.analysis-abstract {
  width: 100%;
  max-width: 350px;
  height: auto;
  animation: analysis-float 8s ease-in-out infinite;
}

.analysis-abstract svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(20, 184, 166, 0.3));
}

@keyframes analysis-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(2deg); }
  50% { transform: translateY(-20px) rotate(0deg); }
  75% { transform: translateY(-10px) rotate(-2deg); }
}

/* CTA Card Styling */
.cta-card {
  background: linear-gradient(135deg, var(--lighter-charcoal) 0%, rgba(42, 42, 42, 0.9) 100%);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 1rem;
  padding: var(--space-xl);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--vivid-violet) 100%);
}

.cta-content {
  margin-bottom: var(--space-lg);
}

.cta-main {
  color: var(--soft-white);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.cta-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.cta-whisper {
  color: var(--teal);
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
}

.cta-action {
  margin-top: var(--space-lg);
}

.cta-action .btn-large {
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.cta-action .btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

/* Delight Section Styling */
.delight-card {
  background: linear-gradient(135deg, var(--lighter-charcoal) 0%, rgba(42, 42, 42, 0.9) 100%);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 1rem;
  padding: var(--space-lg);
  width: 100%;
}

.delight-card h3 {
  color: var(--soft-white);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.delight-card > p {
  color: var(--soft-white);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.delight-features {
  margin-bottom: var(--space-lg);
}

.delight-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.feature-text {
  flex: 1;
}

.feature-text strong {
  color: var(--teal);
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: var(--space-xs);
}

.feature-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.delight-motto {
  color: var(--teal);
  font-size: 1rem;
  font-style: italic;
  margin: 0;
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(20, 184, 166, 0.2);
}

.delight-abstract {
  width: 100%;
  max-width: 350px;
  height: auto;
  animation: delight-float 10s ease-in-out infinite;
}

.delight-abstract svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(20, 184, 166, 0.4));
}

@keyframes delight-float {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
  25% { transform: translateY(-15px) rotate(3deg) scale(1.02); }
  50% { transform: translateY(-25px) rotate(0deg) scale(1.03); }
  75% { transform: translateY(-15px) rotate(-3deg) scale(1.02); }
}

/* Responsive for delight design */
@media (max-width: 968px) {
  .delight-split {
    flex-direction: column !important;
    gap: var(--space-lg) !important;
    min-height: auto !important;
  }
  
  .delight-content-left {
    order: 1 !important;
  }
  
  .delight-visual-right {
    order: 2 !important;
  }
  
  .delight-feature {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
  
  .feature-icon {
    align-self: center;
  }
}
@media (max-width: 768px) {
  .cta-card {
    padding: var(--space-lg);
    margin: 0 1rem;
  }
  
  .cta-main {
    font-size: 1.1rem;
  }
  
  .cta-action .btn-large {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
  }
}
@media (max-width: 968px) {
  .analysis-split {
    flex-direction: column !important;
    gap: var(--space-lg) !important;
    min-height: auto !important;
  }
  
  .analysis-content-left {
    order: 1 !important;
  }
  
  .analysis-visual-right {
    order: 2 !important;
  }
}
.footer {
  background: linear-gradient(135deg, var(--darker-charcoal) 0%, rgba(15, 15, 15, 0.9) 100%);
  border-top: 1px solid rgba(20, 184, 166, 0.2);
  padding: var(--space-lg) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  animation: footer-glow 3s ease-in-out infinite alternate;
}

/* Split Screen Layout */
.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  min-height: 500px;
}

.split-content {
  display: flex;
  flex-direction: column;
}

.split-image {
  position: relative;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
}

.image-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--darker-charcoal) 0%, rgba(42, 42, 42, 0.9) 100%);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.diagnostic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
}

.overlay-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(20, 184, 166, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 184, 166, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: grid-pulse 4s ease-in-out infinite;
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.system-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.system-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.6), transparent);
  border-radius: 1px;
  animation: system-align 4s ease-in-out infinite;
}

.system-line:nth-child(1) {
  top: 25%;
  left: 10%;
  width: 80%;
  animation-delay: 0s;
}

.system-line:nth-child(2) {
  top: 50%;
  left: 15%;
  width: 70%;
  animation-delay: 0.5s;
}

.system-line:nth-child(3) {
  top: 75%;
  left: 5%;
  width: 90%;
  animation-delay: 1s;
}

@keyframes system-align {
  0% { 
    transform: scaleX(0.3); 
    opacity: 0.3;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.6), transparent);
  }
  50% { 
    transform: scaleX(1); 
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.6), transparent);
  }
  100% { 
    transform: scaleX(1); 
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.8), transparent);
  }
}

.data-points {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.data-point {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: data-pulse 2s infinite;
}

.data-point.warning {
  background-color: #3b82f6;
  top: 30%;
  left: 25%;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.data-point.danger {
  background-color: #ef4444;
  top: 60%;
  left: 70%;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
  animation-delay: 0.5s;
}

.data-point.alert {
  background-color: #fbbf24;
  top: 45%;
  left: 45%;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
  animation-delay: 1s;
}

@keyframes data-pulse {
  0%, 100% { 
    transform: scale(1); 
    opacity: 1;
  }
  50% { 
    transform: scale(1.5); 
    opacity: 0.5;
  }
}

/* Red X styling */
.red-x {
  color: #ef4444;
  font-weight: bold;
  margin-right: 0.5rem;
  font-size: 1.1em;
}

/* Subhead styling */
.subhead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

/* Transformation Before/After */
.transformation-content {
  padding: var(--space-md);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
}

.before h4,
.after h4 {
  color: var(--soft-white);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.before p,
.after p {
  color: var(--muted-gray);
  line-height: 1.6;
  margin: 0;
}

.before h4 {
  color: #3b82f6;
}

.after h4 {
  color: var(--teal);
}

.arrow {
  font-size: 2rem;
  color: var(--teal);
  font-weight: bold;
  animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
  0%, 100% { 
    transform: translateX(0); 
    opacity: 0.7;
  }
  50% { 
    transform: translateX(5px); 
    opacity: 1;
  }
}

/* Metric Cards */
.metric-card {
  background: linear-gradient(135deg, var(--lighter-charcoal) 0%, rgba(42, 42, 42, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-align: center;
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.15);
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  animation: card-glow 3s ease-in-out infinite alternate;
}

.metric-icon {
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
}

.metric-card h4 {
  color: var(--soft-white);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.metric-card p {
  color: var(--muted-gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Team Split Section */
.team-photo-section {
  text-align: center;
  padding: var(--space-md);
}

.team-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.operators-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

/* Responsive for team split section */
@media (max-width: 768px) {
  .content-grid.grid-2 {
    grid-template-columns: 1fr;
  }
  
  .team-photo-section {
    order: 2;
  }
  
  .team-content {
    order: 1;
    text-align: center;
  }
  
  .operators-text {
    font-size: 1.25rem;
  }
}

/* About Us Page Styles */

/* Hero Split Layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  min-height: 70vh;
}

.hero-left {
  text-align: left;
}

.hero-right {
  text-align: center;
}

.hero-subhead {
  font-size: 1.25rem;
  color: var(--soft-white);
  margin: var(--space-lg) 0;
  line-height: 1.6;
}

.hero-whisper {
  color: var(--muted-gray);
  font-style: italic;
  margin-top: var(--space-lg);
}

.team-hero-image {
  max-width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 0.75rem;
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section-whisper {
  color: var(--muted-gray);
  font-style: italic;
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.3rem; /* Mini headline size */
  font-weight: 700;
}

.section-title {
  color: var(--violet);
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-alt {
  background: rgba(42, 42, 42, 0.3);
  border-top: 1px solid rgba(20, 184, 166, 0.1);
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

/* Story Content */
.story-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.story-content p {
  color: var(--soft-white);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

/* Point of View */
.point-of-view-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.point-of-view-content p {
  color: var(--soft-white);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

/* Bios Grid */
.bios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.bio-column {
  padding: var(--space-lg);
}

.bio-name {
  color: var(--violet);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.bio-content p {
  color: var(--soft-white);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* What We Bring Together */
.section-alt .bring-together-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}

.section-alt .bring-together-content p {
  color: var(--soft-white);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.section-alt .bring-together-list {
  padding: 0;
  margin: var(--space-lg) 0;
  text-align: center;
  list-style-position: inside;
  width: 100%;
}

.section-alt .bring-together-list li {
  color: var(--teal);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  text-align: center;
  list-style-type: disc;
  list-style-position: inside;
  display: block;
  width: 100%;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-block {
  padding: var(--space-lg);
  border-left: 3px solid var(--teal);
  background: rgba(42, 42, 42, 0.3);
}

.testimonial-text {
  color: var(--soft-white);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Closing Line */
.closing-line {
  text-align: center;
  padding: var(--space-xl) 0;
}

.closing-line p {
  color: var(--violet);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section {
    padding: var(--space-lg) 0;
  }
  
  .hero-split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }
  
  .hero-left {
    text-align: center;
  }
  
  .hero-right {
    order: -1;
  }
  
  .team-hero-image {
    height: 300px;
  }
  
  .bios-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .bio-name {
    font-size: 1.25rem;
  }
  
  .closing-line p {
    font-size: 1.25rem;
  }
}

/* Card-Free Layouts for Supplementary Pages */

/* Process Page */
.process-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.process-step {
  padding: var(--space-lg);
  border-left: 3px solid var(--teal);
  background: rgba(42, 42, 42, 0.2);
  border-radius: 0.5rem;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.step-header .step-number {
  margin: 0;
  color: #1a1a1a !important;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.step-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.step-title h4 {
  margin: 0;
  color: #3b82f6 !important;
  font-size: 1.3rem;
  font-weight: 600;
}

.process-step h5 {
  color: var(--teal);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  white-space: nowrap;
}

.process-step h4 {
  color: var(--teal);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.step-header h4 {
  color: var(--teal);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  margin-left: var(--space-xs);
}

.process-step p {
  color: var(--soft-white);
  line-height: 1.6;
  margin: var(--space-sm) 0 0 0;
}

/* Analysis Page */
.analysis-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg);
  border-left: 3px solid var(--teal);
  background: rgba(42, 42, 42, 0.2);
  border-radius: 0.5rem;
}

/* Snapshot Page */
.snapshot-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg);
  border-left: 3px solid var(--teal);
  background: rgba(42, 42, 42, 0.2);
  border-radius: 0.5rem;
}

/* Responsive for card-free layouts */
@media (max-width: 768px) {
  .process-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .process-step,
  .analysis-content,
  .snapshot-content {
    padding: var(--space-md);
  }
}

/* Team Bios Content */
.team-bios-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}

.team-bios-content p {
  color: var(--soft-white);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.team-bios-content p:first-child {
  font-size: 1.3rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.team-bios-content p:last-child {
  color: var(--teal);
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: var(--space-xl);
}

/* Team Photo */
.team-photo {
  text-align: center;
  margin-top: var(--space-xl);
}

.team-image {
  max-width: 400px;
  width: 100%;
  height: 300px;
  border-radius: 0.75rem;
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  object-position: center;
  object-fit: cover;
}

.team-image:hover {
  transform: scale(1.02);
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.2);
}

.photo-caption {
  margin-top: var(--space-sm);
  color: var(--muted-gray);
  font-style: italic;
  font-size: 0.9rem;
}

.image-caption {
  margin-top: var(--space-sm);
  color: var(--whisper-gray);
  font-size: 0.9rem;
  text-align: center;
  font-style: italic;
  line-height: 1.4;
}

.hero-right .image-caption {
  margin-top: var(--space-sm);
  color: var(--whisper-gray);
  font-size: 0.9rem;
  text-align: center;
  font-style: italic;
  line-height: 1.4;
}

/* Step headers */
.step-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.step-header h3 {
  margin: 0;
  color: #3b82f6;
}

@keyframes footer-glow {
  0% { opacity: 0.3; }
  100% { opacity: 0.8; }
}

/* Hero Section */
.hero {
  padding: calc(var(--space-2xl) * 0.56) 0;
  text-align: center;
}

.hero h1 {
  margin-bottom: var(--space-sm);
}

#about h1 {
  font-size: 1.4rem !important;
}

.about-headline {
  font-size: 1.4rem !important;
}

section#about .hero-left h1.about-headline {
  font-size: 1.4rem !important;
}

.hero .category {
  font-size: 1.5rem !important;
  color: var(--teal);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.hero .definition {
  font-size: 1.125rem;
  color: var(--soft-white);
  margin-bottom: var(--space-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero .future-state {
  font-size: 1.25rem;
  color: var(--vivid-violet);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

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

/* Content Sections */
.content-section {
  margin-bottom: var(--space-2xl);
}

.content-section h2 {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.content-section h3 {
  margin-bottom: var(--space-md);
}

.content-grid {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.card {
  background-color: var(--lighter-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: var(--space-lg);
}

.card-left-accent {
  border-left: 3px solid var(--teal);
}

/* Lists */
.bullet-list {
  list-style: none;
  padding: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.bullet-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--teal);
  border-radius: 50%;
}

/* Forms */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--soft-white);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--lighter-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  color: var(--soft-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--teal);
}

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

/* Conclusory lines - 20% larger */
.mt-lg {
  font-size: 1.2rem !important; /* 20% larger for conclusory lines */
  font-weight: 600 !important;
}

.mt-md {
  font-size: 1.2rem !important; /* 20% larger for conclusory lines */
  font-weight: 600 !important;
}

.text-center.mt-lg {
  font-size: 1.2rem !important; /* 20% larger for conclusory lines */
  font-weight: 600 !important;
}
.footer {
  background-color: var(--darker-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer p {
  color: var(--whisper-gray);
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .split-screen {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    min-height: auto;
  }
  
  .split-image {
    height: 300px;
    order: -1;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .nav {
    display: none;
  }
  
  .header-content {
    justify-content: center;
    text-align: center;
  }
  
  .logo-img {
    height: 48.75px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .logo-img {
    height: 40.625px;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
}

/* Gracious Closing Section */
.closing-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-message h2 {
  color: var(--soft-white);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.closing-main {
  color: var(--soft-white);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.closing-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.closing-cta {
  margin-bottom: var(--space-xl);
}

.closing-invitation {
  color: var(--teal);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: var(--space-lg);
}

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

.closing-buttons .btn {
  min-width: 200px;
}

.closing-quote {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 1rem;
  padding: var(--space-lg);
  position: relative;
  margin-top: var(--space-xl);
}

.closing-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: var(--space-lg);
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.3;
}

.closing-quote blockquote {
  margin: 0;
  padding: 0;
}

.closing-quote p {
  color: var(--soft-white);
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.closing-quote cite {
  color: var(--teal);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
}

/* Responsive for closing section */
@media (max-width: 768px) {
  .closing-message h2 {
    font-size: 1.5rem;
  }
  
  .closing-main {
    font-size: 1.1rem;
  }
  
  .closing-sub {
    font-size: 1rem;
  }
  
  .closing-invitation {
    font-size: 1.1rem;
  }
  
  .closing-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .closing-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .closing-quote {
    padding: var(--space-md);
  }
  
  .closing-quote::before {
    font-size: 3rem;
    top: -15px;
  }
}

/* Force about section headline to be smaller */
#about .hero-left h1.about-headline {
  font-size: 1.4rem !important;
  color: var(--vivid-violet) !important;
}

/* Force all section headlines to be smaller */
section h2 {
  font-size: 1.92rem !important;
}

.content-section h2 {
  font-size: 1.92rem !important;
}
