:root {
  --color-primary: #0A2540;
  --color-secondary: #1E5A8E;
  --color-accent: #FF6B35;
  --color-bg: #FAFBFC;
  --color-surface: #FFFFFF;
  --color-text: #1A2B3D;
  --color-text-light: #5A6C7D;
  --color-border: #E1E8ED;
  --color-dot: rgba(10, 37, 64, 0.08);
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-2xl: 8rem;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06), 0 1px 3px rgba(10, 37, 64, 0.04);
  --shadow-md: 0 4px 16px rgba(10, 37, 64, 0.08), 0 2px 6px rgba(10, 37, 64, 0.06);
  --shadow-lg: 0 12px 32px rgba(10, 37, 64, 0.12), 0 4px 12px rgba(10, 37, 64, 0.08);
  --shadow-hover: 0 20px 48px rgba(10, 37, 64, 0.16), 0 8px 20px rgba(10, 37, 64, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  background-image: radial-gradient(circle, var(--color-dot) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bitter', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

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

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.01em;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  margin-bottom: 1.25rem;
  max-width: 70ch;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-narrow {
  max-width: 960px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

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

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--spacing-md);
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-family: 'Bitter', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 2rem;
  padding-left: 2rem;
  border-left: 1px solid var(--color-border);
}

.lang-btn {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--color-accent);
  background: rgba(255, 107, 53, 0.08);
}

.lang-btn.active {
  color: var(--color-surface);
  background: var(--color-accent);
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
}

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

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

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(80px + var(--spacing-xl)) var(--spacing-md) var(--spacing-xl);
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.02) 0%, rgba(30, 90, 142, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  z-index: 2;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 .typed-text {
  color: var(--color-accent);
  display: inline-block;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-cards {
  position: relative;
  height: 600px;
}

.hero-card {
  position: absolute;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.hero-card:nth-child(1) {
  top: 0;
  left: 0;
  width: 320px;
  z-index: 3;
  transform: rotate(-2deg);
}

.hero-card:nth-child(2) {
  top: 140px;
  right: 0;
  width: 340px;
  z-index: 2;
  transform: rotate(3deg);
}

.hero-card:nth-child(3) {
  bottom: 0;
  left: 60px;
  width: 300px;
  z-index: 1;
  transform: rotate(-1deg);
}

.hero-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FF8C5A 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.hero-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.hero-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: #E55A2B;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-surface);
}

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

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

section {
  padding: var(--spacing-2xl) var(--spacing-md);
  position: relative;
}

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

.section-question {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-bg-white {
  background: var(--color-surface);
  background-image: radial-gradient(circle, var(--color-dot) 1px, transparent 1px);
  background-size: 24px 24px;
}

.section-bg-alt {
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.02) 0%, rgba(30, 90, 142, 0.02) 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.process-number {
  position: absolute;
  top: -20px;
  left: 2.5rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FF8C5A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  font-family: 'Bitter', serif;
  box-shadow: var(--shadow-md);
}

.process-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

.wave-divider {
  width: 100%;
  height: 80px;
  background: var(--color-surface);
  position: relative;
  margin: 0;
  padding: 0;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  border: 1px solid var(--color-border);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 90, 0.1) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-surface);
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
  border-radius: var(--radius-lg);
  margin: var(--spacing-xl) var(--spacing-md);
  box-shadow: var(--shadow-lg);
}

.cta-section h2 {
  color: var(--color-surface);
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin: 0 auto 2.5rem;
  max-width: 700px;
  opacity: 0.95;
}

.image-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.image-text-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-text-content h2 {
  margin-bottom: 1.5rem;
}

.image-text-content p {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.image-text-content ul {
  list-style: none;
  margin: 2rem 0;
}

.image-text-content li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
}

.image-text-content li:last-child {
  border-bottom: none;
}

.image-text-content li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 1.125rem;
}

.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-info {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-surface);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-info h2 {
  color: var(--color-surface);
  margin-bottom: 1.5rem;
}

.contact-info p {
  opacity: 0.95;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-top: 0.25rem;
}

.contact-item-content h4 {
  color: var(--color-surface);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-item-content p,
.contact-item-content a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}

.contact-item-content a:hover {
  color: var(--color-accent);
}

.contact-form-wrapper {
  background: var(--color-surface);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--color-surface);
  color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 400;
  margin-bottom: 0;
}

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

.map-container {
  margin-top: var(--spacing-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
  margin-top: var(--spacing-2xl);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
  color: var(--color-surface);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-section p {
  opacity: 0.9;
  line-height: 1.7;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  display: inline-block;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.8;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--color-accent);
  color: var(--color-surface);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #E55A2B;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  box-shadow: 0 -4px 24px rgba(10, 37, 64, 0.15);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: var(--color-accent);
  color: var(--color-surface);
}

.cookie-btn-accept:hover {
  background: #E55A2B;
  transform: translateY(-2px);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.cookie-btn-decline:hover {
  border-color: var(--color-text);
  background: rgba(10, 37, 64, 0.05);
}

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

.cookie-btn-customize:hover {
  background: var(--color-secondary);
  color: var(--color-surface);
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: calc(80px + var(--spacing-xl)) var(--spacing-md) var(--spacing-xl);
}

.legal-page h1 {
  margin-bottom: 1rem;
}

.legal-page .last-updated {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.legal-page h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-page ul, .legal-page ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.legal-page li {
  margin-bottom: 0.75rem;
  color: var(--color-text-light);
}

.legal-page strong {
  color: var(--color-text);
  font-weight: 600;
}

.thanks-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(80px + var(--spacing-xl)) var(--spacing-md) var(--spacing-xl);
}

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

.thanks-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FF8C5A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: white;
  box-shadow: var(--shadow-lg);
}

.thanks-content h1 {
  margin-bottom: 1.5rem;
}

.thanks-content p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin: 0 auto 2.5rem;
}

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .hero-cards {
    height: 500px;
    margin-top: 2rem;
  }
  
  .hero-card {
    width: 280px !important;
  }
  
  .hero-card:nth-child(1) {
    top: 0;
    left: 0;
  }
  
  .hero-card:nth-child(2) {
    top: 120px;
    right: 0;
  }
  
  .hero-card:nth-child(3) {
    bottom: 0;
    left: 20px;
  }
  
  .image-text-section {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .contact-section {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  section {
    padding: var(--spacing-xl) var(--spacing-md);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: calc(80px + var(--spacing-lg)) var(--spacing-sm) var(--spacing-lg);
  }
  
  .hero-cards {
    display: none;
  }
  
  section {
    padding: var(--spacing-lg) var(--spacing-sm);
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}