/* ============================================
   CYBER-CHIC EDITORIAL STYLE
   Personal Brand Photography Sets
   ============================================ */

:root {
  /* Base Colors - Studio Grey, Flash White, Electric Cyan */
  --color-studio-grey: #181818;
  --color-flash-white: #FFFFFF;
  --color-electric-cyan: #00F3FF;
  --color-dark-grey: #2a2a2a;
  --color-light-grey: #3a3a3a;
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #CCCCCC;
  --color-text-muted: #999999;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Space Grotesk', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-cyan: 0 0 20px rgba(0, 243, 255, 0.3);
  
  /* Glassmorphism */
  --glass-bg: rgba(24, 24, 24, 0.8);
  --glass-border: rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

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

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

/* Scanline Texture Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 243, 255, 0.02) 2px,
    rgba(0, 243, 255, 0.02) 4px
  );
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

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

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

a {
  color: var(--color-electric-cyan);
  text-decoration: none;
  transition: all var(--transition-base);
}

a:hover {
  color: var(--color-flash-white);
  text-shadow: 0 0 10px var(--color-electric-cyan);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: relative;
  padding: var(--space-lg) var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.brand-text {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-flash-white);
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  gap: 15px;
  list-style: none;
  align-items: center;
}

.main-navigation a {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-sm) var(--space-md);
  position: relative;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-electric-cyan);
  transition: width var(--transition-base);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
  width: 80%;
}

/* Burger Menu Button - Always in Header */
.burger-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--glass-border);
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  color: var(--color-flash-white);
  font-size: 1.5rem;
  transition: all var(--transition-base);
  order: 999;
  margin-left: auto;
  z-index: 10001;
  position: relative;
}

.burger-toggle:hover {
  border-color: var(--color-electric-cyan);
  box-shadow: var(--shadow-cyan);
}

.burger-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-flash-white);
  margin: 4px 0;
  transition: all var(--transition-base);
}

.burger-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-toggle.active span:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Menu - Separate from Header */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--color-dark-grey);
  border-left: 1px solid var(--glass-border);
  padding: var(--space-xl) var(--space-lg);
  z-index: 10000;
  transition: right var(--transition-base);
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav-list a {
  display: block;
  padding: var(--space-md);
  border-bottom: 1px solid var(--glass-border);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.mobile-nav-list a:hover {
  color: var(--color-electric-cyan);
  padding-left: var(--space-lg);
}

/* ============================================
   HERO BANNERS (Full-Width)
   ============================================ */

.hero-banner {
  width: 100vw;
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.hero-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.hero-banner-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(24, 24, 24, 0.7) 0%,
    rgba(24, 24, 24, 0.5) 50%,
    rgba(24, 24, 24, 0.8) 100%
  );
  z-index: 1;
}

.hero-banner-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(24, 24, 24, 0.8) 0%,
    rgba(24, 24, 24, 0.6) 50%,
    rgba(24, 24, 24, 0.9) 100%
  );
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: var(--space-lg);
  text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

/* Viewfinder Frames */
.viewfinder-frame {
  position: absolute;
  border: 2px solid var(--color-electric-cyan);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 10;
}

.viewfinder-frame.active {
  opacity: 0.6;
}

.viewfinder-frame::before,
.viewfinder-frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-electric-cyan);
}

.viewfinder-frame::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.viewfinder-frame::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
  position: relative;
  z-index: 1;
}

.content-section {
  padding: var(--space-xxl) var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xxl);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-electric-cyan);
  box-shadow: var(--shadow-cyan);
}

/* Grid Layouts */
.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--space-md);
}

.grid-item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.grid-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-electric-cyan);
  box-shadow: var(--shadow-cyan);
}

.grid-item-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  transition: transform var(--transition-base);
}

.grid-item:hover .grid-item-image {
  transform: scale(1.05);
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  border: 2px solid var(--color-electric-cyan);
  color: var(--color-electric-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-electric-cyan);
  transition: left var(--transition-base);
  z-index: -1;
}

.btn:hover {
  color: var(--color-studio-grey);
  box-shadow: var(--shadow-cyan);
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: var(--color-electric-cyan);
  color: var(--color-studio-grey);
}

.btn-primary::before {
  background: var(--color-flash-white);
}

.btn-primary:hover {
  color: var(--color-studio-grey);
}

/* ============================================
   FORMS
   ============================================ */

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
}

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

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background: var(--color-dark-grey);
  border: 1px solid var(--glass-border);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-electric-cyan);
  box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.checkbox-input {
  margin-top: 4px;
  accent-color: var(--color-electric-cyan);
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-dark-grey);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-xl) var(--space-md);
  margin-top: var(--space-xxl);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  list-style: none;
}

.footer-nav a {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav a:hover {
  color: var(--color-electric-cyan);
}

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

/* ============================================
   PRODUCTS PAGE
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xxl);
}

.product-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-electric-cyan);
  box-shadow: var(--shadow-cyan);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

.product-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-flash-white);
}

.product-description {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-electric-cyan);
  font-family: var(--font-secondary);
}

/* ============================================
   GOOGLE MAPS
   ============================================ */

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-top: var(--space-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(50%) contrast(1.1);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

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

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

.hidden {
  display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (min-width: 1024px) {
  .burger-toggle {
    display: none !important;
  }
  
  .main-navigation {
    display: flex;
  }
  
  .mobile-nav-overlay {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .main-navigation {
    display: none;
  }
  
  .burger-toggle {
    display: block;
  }
  
  .hero-banner {
    min-height: 60vh;
  }
  
  .content-section {
    padding: var(--space-xl) var(--space-md);
  }
  
  .grid-layout {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .header-container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .hero-content {
    padding: var(--space-lg);
  }
  
  .form-container {
    padding: var(--space-lg);
  }
  
  .footer-nav {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .site-header {
    padding: var(--space-md) var(--space-sm);
  }
  
  .content-section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .hero-banner {
    min-height: 50vh;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }
  
  .brand-text {
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
}

/* ============================================
   PRIVACY POPUP
   ============================================ */

.privacy-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  max-width: 500px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  z-index: 10000;
  box-shadow: var(--shadow-lg);
  display: none;
}

.privacy-popup.active {
  display: block;
}

.privacy-popup-content {
  margin-bottom: var(--space-md);
}

.privacy-popup-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.privacy-popup-actions .btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

/* ============================================
   PAGE SPECIFIC STYLES
   ============================================ */

.page-hero {
  width: 100vw;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-bottom: var(--space-xxl);
}

.page-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(24, 24, 24, 0.6) 0%,
    rgba(24, 24, 24, 0.4) 50%,
    rgba(24, 24, 24, 0.7) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
}

/* 404 Page */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xxl);
}

.error-code {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--color-electric-cyan);
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-shadow: var(--shadow-cyan);
}

.error-message {
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: var(--space-xl);
}

/* Thank You Page */
.thank-you-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--color-electric-cyan);
  margin-bottom: var(--space-lg);
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.legal-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-electric-cyan);
}

.legal-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
  margin-left: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.legal-content li {
  margin-bottom: var(--space-sm);
}

.date {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: var(--space-lg);
}

/* ============================================
   UTILITY CLASSES (Replace Inline Styles)
   ============================================ */

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.contact-info-card h3 {
  color: var(--color-flash-white);
  margin-bottom: var(--space-md);
}

.contact-info-card h3 i {
  color: var(--color-electric-cyan);
  margin-right: var(--space-sm);
}

.contact-info-text {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.contact-info-link {
  color: var(--color-electric-cyan);
}

.section-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-intro p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}

.color-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.color-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

.color-swatch-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.color-card h3 {
  color: var(--color-electric-cyan);
  margin-bottom: var(--space-md);
}

.color-card p {
  color: var(--color-text-secondary);
}

.info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.info-card h3 {
  color: var(--color-electric-cyan);
  margin-bottom: var(--space-md);
}

.info-card p {
  color: var(--color-text-secondary);
}

.product-btn {
  margin-top: var(--space-md);
  display: block;
  text-align: center;
  width: 100%;
}

.centered-section {
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
}

.centered-text {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  color: var(--color-text-secondary);
  font-size: 1.1rem;
}

.error-text {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

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

.thank-you-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--color-electric-cyan);
}

.thank-you-text {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-subtext {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.thank-you-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.footer-contact {
  font-size: 0.75rem;
  margin-top: var(--space-sm);
  color: var(--color-text-muted);
}

.footer-contact a {
  color: var(--color-text-muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.process-step {
  text-align: center;
}

.process-number {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  border: 2px solid var(--color-electric-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-electric-cyan);
}

.process-step h3 {
  margin-bottom: var(--space-md);
}

.process-step p {
  color: var(--color-text-secondary);
}

.grading-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.grading-image-wrapper {
  position: relative;
  margin-bottom: var(--space-lg);
}

.grading-preview-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

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

.grading-label {
  display: block;
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.grading-slider {
  width: 100%;
  height: 6px;
  background: var(--color-dark-grey);
  border-radius: 3px;
  outline: none;
}

.grading-labels {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.two-column-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: var(--space-xl);
}

.two-column-layout img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: var(--space-md);
}

.section-heading-cyan {
  margin-bottom: var(--space-lg);
  color: var(--color-electric-cyan);
}

.process-container {
  max-width: 1000px;
  margin: 0 auto;
}

.icon-cyan {
  color: var(--color-electric-cyan);
  margin-right: var(--space-sm);
}

.text-spacing {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .contact-grid,
  .two-column-layout {
    grid-template-columns: 1fr;
  }
}

