:root {
  /* Primary colors - Triadic color scheme */
  --primary-1: #2e56ff; /* Electric blue */
  --primary-2: #ff2e80; /* Vibrant pink */
  --primary-3: #56ff2e; /* Neon green */
  
  /* Darker versions for hover states */
  --primary-1-dark: #1a42e0;
  --primary-2-dark: #e01a6c;
  --primary-3-dark: #42e01a;
  
  /* Lighter versions for backgrounds and accents */
  --primary-1-light: #e4e9ff;
  --primary-2-light: #ffe4ed;
  --primary-3-light: #e9ffe4;
  
  /* Neutral colors */
  --neutral-100: #ffffff;
  --neutral-200: #f7f9fc;
  --neutral-300: #edf1f7;
  --neutral-400: #c5cee0;
  --neutral-500: #8f9bb3;
  --neutral-600: #6e7891;
  --neutral-700: #4c5367;
  --neutral-800: #2e3447;
  --neutral-900: #1a1f2e;
  
  /* Gradient backgrounds */
  --gradient-primary: linear-gradient(135deg, var(--primary-1), var(--primary-2));
  --gradient-secondary: linear-gradient(135deg, var(--primary-2), var(--primary-3));
  --gradient-tertiary: linear-gradient(135deg, var(--primary-3), var(--primary-1));
  
  /* Overlay gradients for images */
  --overlay-dark: linear-gradient(to bottom, rgba(26, 31, 46, 0.7), rgba(26, 31, 46, 0.4));
  --overlay-light: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(26, 31, 46, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 31, 46, 0.08);
  --shadow-lg: 0 12px 32px rgba(26, 31, 46, 0.1);
  --shadow-focus: 0 0 0 3px rgba(46, 86, 255, 0.4);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(26, 31, 46, 0.1);
  
  /* Spacing */
  --space-xxs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Rubik', sans-serif;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--neutral-700);
  background-color: var(--neutral-200);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--neutral-900);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

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

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

a:hover {
  color: var(--primary-1-dark);
}

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

ul, ol {
  list-style: none;
}

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

/* Section styles */
.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: var(--space-sm) auto 0;
  border-radius: var(--radius-full);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: -1rem auto var(--space-xl);
  color: var(--neutral-600);
  font-size: 1.1rem;
}

/* Buttons */
.btn, button, input[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  border: none;
  outline: none;
}

.btn:focus, button:focus, input[type='submit']:focus {
  box-shadow: var(--shadow-focus);
}

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

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-1);
  color: var(--primary-1);
}

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

.full-width {
  width: 100%;
}

/* Cards */
.card {
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.card-content {
  padding: var(--space-md);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: background-color var(--transition-normal);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--neutral-900);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.logo a:hover {
  color: var(--primary-1);
}

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

.main-nav a {
  color: var(--neutral-700);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-1);
  transition: width var(--transition-normal);
}

.main-nav a:hover {
  color: var(--primary-1);
}

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

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 2px;
  background-color: var(--neutral-800);
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: var(--space-xl) 0;
  background-image: var(--overlay-dark);
}

.hero-text {
  max-width: 650px;
  margin-right: auto;
}

.hero-text h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s ease-out;
}

.hero-text p {
  color: white;
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  animation: fadeInUp 1s ease-out 0.4s;
  animation-fill-mode: both;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

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

/* Features Section */
.features-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background-color: var(--neutral-100);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
}

/* Process Section */
.process-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-200);
  overflow: hidden;
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./image/process-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.process-timeline {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: var(--space-xl);
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-right: var(--space-md);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-1-light);
  border-radius: var(--radius-full);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: var(--neutral-900);
  margin-bottom: var(--space-sm);
}

.step-image {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.process-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: var(--space-xxl);
  gap: var(--space-lg);
}

.stat-widget {
  text-align: center;
  flex: 1;
  min-width: 200px;
  padding: var(--space-md);
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--neutral-600);
}

/* Case Studies Section */
.case-studies-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.case-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
  width: 100%;
}

.case-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-1);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--neutral-600);
}

/* Resources Section */
.resources-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-200);
}

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

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.resource-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.resource-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
}

.resource-link {
  margin-top: auto;
  padding-top: var(--space-md);
  font-weight: 500;
  color: var(--primary-1);
  transition: color var(--transition-fast);
  position: relative;
}

.resource-link::after {
  content: '→';
  margin-left: 5px;
  transition: transform var(--transition-fast);
}

.resource-link:hover {
  color: var(--primary-1-dark);
}

.resource-link:hover::after {
  transform: translateX(5px);
}

/* Insights Section */
.insights-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
}

.insights-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.carousel-slide {
  min-width: 100%;
  padding: var(--space-xs);
}

.insight-card {
  display: flex;
  flex-direction: column;
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
}

.insight-card .card-image {
  height: 250px;
}

.insight-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-top: var(--space-md);
  width: 100%;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-lg);
  gap: var(--space-lg);
}

.control-prev, .control-next {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--neutral-700);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.control-prev:hover, .control-next:hover {
  color: var(--primary-1);
}

.carousel-indicators {
  display: flex;
  gap: var(--space-xs);
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: var(--neutral-400);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.carousel-indicator.active {
  background-color: var(--primary-1);
}

/* Blog Section */
.blog-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-200);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.blog-date {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-bottom: var(--space-xs);
  display: block;
  width: 100%;
  text-align: center;
}

.blog-link {
  margin-top: auto;
  padding-top: var(--space-md);
  font-weight: 500;
  color: var(--primary-1);
  transition: color var(--transition-fast);
  position: relative;
}

.blog-link::after {
  content: '→';
  margin-left: 5px;
  transition: transform var(--transition-fast);
}

.blog-link:hover {
  color: var(--primary-1-dark);
}

.blog-link:hover::after {
  transform: translateX(5px);
}

/* Projects Section */
.projects-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.filter-btn {
  padding: 0.5rem 1rem;
  background-color: var(--neutral-300);
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-1);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-top: var(--space-md);
  width: 100%;
}

/* Contact Section */
.contact-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-200);
  position: relative;
}

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

.contact-info {
  padding: var(--space-lg);
}

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

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.contact-icon {
  width: 40px;
  height: 40px;
  margin-right: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
}

.contact-text h4 {
  margin-bottom: var(--space-xxs);
  font-size: 1rem;
}

.contact-form-container {
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form-container h3 {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

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

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

.form-group label {
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--neutral-400);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-1);
  box-shadow: var(--shadow-focus);
  outline: none;
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 0.875rem;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--neutral-300);
  border-radius: var(--radius-sm);
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--neutral-400);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-1);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Footer */
.site-footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo h2 {
  color: white;
  margin-bottom: var(--space-sm);
}

.footer-logo p {
  color: var(--neutral-400);
}

.footer-column h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-column a {
  color: var(--neutral-400);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: white;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.social-links a {
  color: var(--neutral-400);
  transition: color var(--transition-fast);
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-md);
  background-color: var(--neutral-700);
}

.social-links a:hover {
  color: white;
  background-color: var(--primary-1);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--neutral-700);
  color: var(--neutral-500);
  font-size: 0.875rem;
}

/* Special Pages */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--space-xl);
}

.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: var(--space-xxl);
}

.privacy-page .container, .terms-page .container {
  max-width: 800px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive styles */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
  
  .hero-text {
    max-width: 550px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
  
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--neutral-100);
    box-shadow: var(--shadow-md);
    padding: var(--space-md);
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: var(--space-sm);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
}