/* Digital Brutalism Lite - Volmado Corporate Volunteering Consultancy */

:root {
  /* Color Palette - Raw but refined */
  --concrete-gray: #E8E8E8;
  --off-white: #F5F5F0;
  --muted-yellow: #E8D67A;
  --deep-charcoal: #2A2A2A;
  --medium-gray: #6B6B6B;
  --border-gray: #CCCCCC;
  --accent-teal: #3A9B9B;
  --soft-black: #1A1A1A;
  --highlight-cream: #FFF9E6;
  
  /* Typography Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  --text-xl: clamp(1.375rem, 1.25rem + 0.625vw, 1.875rem);
  --text-2xl: clamp(1.875rem, 1.625rem + 1.25vw, 2.75rem);
  --text-3xl: clamp(2.5rem, 2rem + 2.5vw, 4.25rem);
  
  /* Spacing Scale */
  --space-xs: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
  --space-sm: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  --space-md: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
  --space-lg: clamp(2.5rem, 2rem + 2.5vw, 4.5rem);
  --space-xl: clamp(4rem, 3rem + 5vw, 8rem);
  
  /* Shadows - Layered system */
  --shadow-subtle: 
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-moderate: 
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 4px 8px rgba(0, 0, 0, 0.06),
    0 8px 16px rgba(0, 0, 0, 0.06);
  --shadow-pronounced: 
    0 4px 8px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.08),
    0 16px 32px rgba(0, 0, 0, 0.08);
  
  /* Border Radius Scale */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  
  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-base: 250ms ease-out;
  --transition-slow: 400ms ease-out;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--deep-charcoal);
  background: var(--off-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--soft-black);
}

h1 {
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-2xl);
  font-weight: 600;
}

h3 {
  font-size: var(--text-xl);
  font-weight: 600;
}

h4 {
  font-size: var(--text-lg);
  font-weight: 500;
}

p {
  margin-bottom: var(--space-sm);
  color: var(--medium-gray);
}

strong {
  font-weight: 600;
  color: var(--deep-charcoal);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--off-white);
  border-bottom: 2px solid var(--border-gray);
  padding: var(--space-sm) 0;
  transition: all var(--transition-base);
}

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

.site-logo {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--soft-black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
}

.site-logo:hover {
  color: var(--accent-teal);
  transform: translateY(-1px);
}

.site-logo svg {
  width: 32px;
  height: 32px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--deep-charcoal);
  padding: 0.5rem 0;
  position: relative;
  letter-spacing: 0.02em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-teal);
  transition: width var(--transition-base);
}

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

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

.cta-button {
  background: var(--accent-teal);
  color: var(--off-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-sm);
  border: 2px solid var(--accent-teal);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-subtle);
}

.cta-button:hover {
  background: transparent;
  color: var(--accent-teal);
  box-shadow: var(--shadow-moderate);
  transform: translateY(-2px);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: var(--text-sm);
  font-weight: 600;
}

.lang-btn {
  color: var(--medium-gray);
  padding: 0.25rem 0.5rem;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  color: var(--accent-teal);
}

.lang-btn.active {
  color: var(--soft-black);
  background: var(--muted-yellow);
  border-radius: var(--radius-sm);
}

.lang-divider {
  color: var(--border-gray);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--deep-charcoal);
  padding: 0.5rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.mobile-menu-toggle:hover {
  background: var(--deep-charcoal);
  color: var(--off-white);
}

.mobile-menu-toggle i {
  font-size: 1.25rem;
}

/* Hero Section */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--concrete-gray) 0%, var(--off-white) 100%);
  border-bottom: 3px solid var(--border-gray);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, var(--border-gray) 1px, transparent 1px),
    linear-gradient(0deg, var(--border-gray) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
}

.hero-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--medium-gray);
  margin-bottom: var(--space-lg);
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.step-item {
  background: var(--off-white);
  border: 2px solid var(--border-gray);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
}

.step-item::before {
  content: attr(data-step);
  position: absolute;
  top: -12px;
  left: var(--space-sm);
  background: var(--muted-yellow);
  padding: 0.25rem 0.75rem;
  font-family: 'Courier New', monospace;
  font-size: var(--text-xs);
  font-weight: 700;
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-sm);
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-moderate);
  border-color: var(--accent-teal);
}

.step-icon {
  font-size: 2rem;
  color: var(--accent-teal);
  margin-bottom: var(--space-sm);
}

.step-label {
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--deep-charcoal);
}

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

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-header {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

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

.section-description {
  font-size: var(--text-lg);
  color: var(--medium-gray);
}

/* Brutalist Grid Sections */
.grid-section {
  background: var(--concrete-gray);
  border-top: 3px solid var(--border-gray);
  border-bottom: 3px solid var(--border-gray);
}

.brutalist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: var(--border-gray);
}

.grid-cell {
  background: var(--off-white);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.grid-cell:hover {
  background: var(--highlight-cream);
  transform: scale(1.02);
  z-index: 10;
}

.grid-cell-icon {
  font-size: 2.5rem;
  color: var(--accent-teal);
  margin-bottom: var(--space-md);
}

.grid-cell-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.grid-cell-description {
  color: var(--medium-gray);
}

/* Horizontal Scroll Section */
.horizontal-scroll-section {
  padding: var(--space-xl) 0;
  background: var(--deep-charcoal);
  color: var(--off-white);
  overflow: hidden;
}

.horizontal-scroll-section .section-title {
  color: var(--off-white);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-teal) var(--soft-black);
  padding: var(--space-md) 0;
}

.scroll-container::-webkit-scrollbar {
  height: 8px;
}

.scroll-container::-webkit-scrollbar-track {
  background: var(--soft-black);
}

.scroll-container::-webkit-scrollbar-thumb {
  background: var(--accent-teal);
  border-radius: var(--radius-sm);
}

.scroll-wrapper {
  display: flex;
  gap: var(--space-md);
  padding: 0 var(--space-md);
  min-width: min-content;
}

.scroll-card {
  flex: 0 0 350px;
  background: var(--soft-black);
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.scroll-card:hover {
  border-color: var(--accent-teal);
  transform: translateY(-8px);
  box-shadow: var(--shadow-pronounced);
}

.scroll-card-icon {
  font-size: 2.5rem;
  color: var(--muted-yellow);
  margin-bottom: var(--space-md);
}

.scroll-card-title {
  color: var(--off-white);
  margin-bottom: var(--space-sm);
}

.scroll-card-text {
  color: var(--concrete-gray);
  font-size: var(--text-sm);
}

/* Image Sections */
.image-text-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-xl) 0;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--border-gray);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-moderate);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.text-content {
  padding: var(--space-md);
}

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

.text-content ul {
  list-style: none;
  padding: 0;
}

.text-content li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: var(--space-sm);
  color: var(--medium-gray);
}

.text-content li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-weight: 700;
}

/* Feature Cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.feature-card {
  background: var(--off-white);
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
}

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

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

.feature-card:hover::after {
  height: 100%;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-teal);
  margin-bottom: var(--space-md);
}

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

.feature-description {
  color: var(--medium-gray);
  font-size: var(--text-sm);
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--accent-teal) 0%, #2d7a7a 100%);
  color: var(--off-white);
  padding: var(--space-lg) 0;
  border-top: 3px solid var(--deep-charcoal);
  border-bottom: 3px solid var(--deep-charcoal);
}

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-md);
}

.newsletter-title {
  color: var(--off-white);
  margin-bottom: var(--space-sm);
}

.newsletter-description {
  color: var(--concrete-gray);
  margin-bottom: var(--space-md);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--off-white);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  background: var(--off-white);
  color: var(--deep-charcoal);
  transition: all var(--transition-base);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--muted-yellow);
  box-shadow: 0 0 0 3px rgba(232, 214, 122, 0.2);
}

.newsletter-submit {
  padding: 0.875rem 1.5rem;
  background: var(--muted-yellow);
  color: var(--deep-charcoal);
  border: 2px solid var(--muted-yellow);
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: transparent;
  color: var(--muted-yellow);
  border-color: var(--muted-yellow);
  transform: translateY(-2px);
}

/* Floating Sidebar CTA */
.floating-cta {
  position: fixed;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: var(--accent-teal);
  color: var(--off-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 2px solid var(--deep-charcoal);
  box-shadow: var(--shadow-pronounced);
  max-width: 200px;
  transition: all var(--transition-base);
  animation: floatIn 0.6s ease-out 1s backwards;
}

.floating-cta:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.15),
    0 16px 32px rgba(0, 0, 0, 0.15);
}

.floating-cta-title {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--off-white);
}

.floating-cta-text {
  font-size: var(--text-xs);
  margin-bottom: var(--space-sm);
  color: var(--concrete-gray);
}

.floating-cta-button {
  display: block;
  width: 100%;
  padding: 0.5rem;
  background: var(--muted-yellow);
  color: var(--deep-charcoal);
  text-align: center;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-xs);
  border: 2px solid var(--muted-yellow);
  transition: all var(--transition-base);
}

.floating-cta-button:hover {
  background: transparent;
  color: var(--muted-yellow);
}

/* Contact Form */
.contact-section {
  padding: var(--space-xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.contact-form {
  background: var(--concrete-gray);
  border: 3px solid var(--border-gray);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--deep-charcoal);
  font-size: var(--text-sm);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-family: inherit;
  background: var(--off-white);
  color: var(--deep-charcoal);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(58, 155, 155, 0.1);
}

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

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

.form-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 0.25rem;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: var(--text-sm);
  color: var(--medium-gray);
  flex: 1;
}

.form-checkbox-label a {
  color: var(--accent-teal);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent-teal);
  color: var(--off-white);
  border: 2px solid var(--accent-teal);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-subtle);
}

.form-submit:hover:not(:disabled) {
  background: transparent;
  color: var(--accent-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-moderate);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--off-white);
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-info-item:hover {
  border-color: var(--accent-teal);
  transform: translateX(4px);
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--accent-teal);
  flex-shrink: 0;
}

.contact-info-content h4 {
  margin-bottom: var(--space-xs);
  font-size: var(--text-base);
}

.contact-info-content p {
  color: var(--medium-gray);
  font-size: var(--text-sm);
  margin: 0;
}

.map-container {
  margin-top: var(--space-md);
  border: 3px solid var(--border-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--soft-black) 100%);
  color: var(--concrete-gray);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 3px solid var(--accent-teal);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-column h4 {
  color: var(--off-white);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.footer-column p {
  color: var(--concrete-gray);
  font-size: var(--text-sm);
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--concrete-gray);
  font-size: var(--text-sm);
  transition: all var(--transition-base);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--muted-yellow);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-md) 0;
  border-top: 1px solid var(--medium-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  color: var(--medium-gray);
  font-size: var(--text-xs);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--medium-gray);
  font-size: var(--text-xs);
  transition: color var(--transition-base);
}

.footer-legal a:hover {
  color: var(--muted-yellow);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--soft-black);
  color: var(--off-white);
  padding: var(--space-md);
  border-top: 3px solid var(--accent-teal);
  z-index: 9999;
  box-shadow: var(--shadow-pronounced);
  animation: slideUp 0.4s ease-out;
}

.cookie-consent.hidden {
  display: none;
}

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

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  color: var(--concrete-gray);
  font-size: var(--text-sm);
  margin: 0;
}

.cookie-text a {
  color: var(--muted-yellow);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--accent-teal);
  color: var(--off-white);
  border-color: var(--accent-teal);
}

.cookie-btn-accept:hover {
  background: transparent;
  color: var(--accent-teal);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--concrete-gray);
  border-color: var(--medium-gray);
}

.cookie-btn-reject:hover {
  background: var(--medium-gray);
  color: var(--off-white);
}

.cookie-btn-customize {
  background: transparent;
  color: var(--muted-yellow);
  border-color: var(--muted-yellow);
}

.cookie-btn-customize:hover {
  background: var(--muted-yellow);
  color: var(--deep-charcoal);
}

/* Thank You Page */
.thanks-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--accent-teal);
  margin-bottom: var(--space-md);
  animation: scaleIn 0.6s ease-out;
}

.thanks-content h1 {
  margin-bottom: var(--space-md);
}

.thanks-content p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-lg);
}

.button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent-teal);
  color: var(--off-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: 2px solid var(--accent-teal);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-subtle);
}

.button:hover {
  background: transparent;
  color: var(--accent-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-moderate);
}

/* Legal Pages */
.legal-section {
  padding: var(--space-xl) 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--off-white);
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

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

.legal-content .last-updated {
  color: var(--medium-gray);
  font-size: var(--text-sm);
  font-style: italic;
  margin-bottom: var(--space-lg);
  display: block;
}

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

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

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

.legal-content li {
  margin-bottom: var(--space-xs);
  color: var(--medium-gray);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--off-white);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-xl) var(--space-md);
    box-shadow: var(--shadow-pronounced);
    transition: right var(--transition-slow);
    z-index: 9998;
    border-left: 3px solid var(--border-gray);
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: var(--space-sm);
  }
  
  .nav-links a {
    width: 100%;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-gray);
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .floating-cta {
    display: none;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-steps {
    grid-template-columns: 1fr;
  }
  
  .scroll-card {
    flex: 0 0 280px;
  }
  
  .brutalist-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .floating-cta,
  .newsletter-section,
  .cookie-consent,
  .mobile-menu-toggle {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* Intl Tel Input Width Fix */
.iti {
  width: 100%;
}

#phone {
  width: 100%;
}